/* ==========================================
   Shipping Information Page Styles
   ========================================== */

/* Page Container */
.shipping-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 0;
}

/* Hero Section */
.shipping-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.shipping-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
    z-index: 1;
    pointer-events: none;
}

.shipping-hero-content {
    position: relative;
    z-index: 2;
}

.shipping-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.shipping-icon i {
    font-size: 2rem;
    color: white;
}

.shipping-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.shipping-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.shipping-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

/* Content Section */
.shipping-content {
    max-width: 1200px;
    margin: 4rem auto 0 auto;
    padding: 0 1rem;
}

.shipping-section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
}

/* Shipping Methods */
.shipping-methods {
    margin-bottom: 3rem;
}

.shipping-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Mobile Swipe for Shipping Methods */
@media (max-width: 768px) {
    .shipping-methods {
        position: relative;
    }
    
    .shipping-methods::after {
        content: 'Swipe to see more →';
        position: absolute;
        bottom: -0.5rem;
        right: 1rem;
        font-size: 0.8rem;
        color: #64748b;
        font-style: italic;
        opacity: 0.8;
    }
    
    .shipping-methods-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding: 0 1rem 1.5rem 1rem;
        margin: 0 -1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .shipping-methods-grid::-webkit-scrollbar {
        display: none;
    }
    
    .shipping-method-card {
        flex: 0 0 300px;
        scroll-snap-align: start;
        min-height: auto;
    }
    
    .shipping-method-card:first-child {
        margin-left: 0;
    }
    
    .shipping-method-card:last-child {
        margin-right: 0;
    }
}

/* Shipping Method Card */
.shipping-method-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.shipping-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.01) 0%, rgba(139, 92, 246, 0.01) 100%);
    z-index: 1;
    pointer-events: none;
}

.shipping-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.shipping-method-card > * {
    position: relative;
    z-index: 2;
}

.shipping-method-card.featured {
    border: 2px solid #3b82f6;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.method-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.method-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shipping-method-card:hover .method-icon::before {
    opacity: 1;
}

.shipping-method-card:hover .method-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.method-icon i {
    font-size: 1.75rem;
    color: white;
    z-index: 1;
    position: relative;
}

.method-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.shipping-method-card:hover .method-title {
    color: #3b82f6;
}

.method-description {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.shipping-method-card:hover .method-description {
    color: #475569;
}

.method-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #475569;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    color: #1e293b;
    padding-left: 0.5rem;
    background: rgba(59, 130, 246, 0.02);
}

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    color: #059669;
    transform: scale(1.1);
}

.feature-item span {
    font-weight: 500;
    transition: font-weight 0.3s ease;
}

.feature-item:hover span {
    font-weight: 600;
}

.shipping-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.2s ease;
}

.shipping-features li:last-child {
    border-bottom: none;
}

.shipping-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.shipping-features li:hover {
    padding-left: 2.5rem;
    color: #1e293b;
}

.shipping-price {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    margin-top: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.shipping-price .price-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.shipping-price .price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

/* Shipping Timeline */
.shipping-timeline-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.3);
    backdrop-filter: blur(10px);
}

.shipping-timeline-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shipping-timeline-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    position: relative;
}

.shipping-timeline-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.shipping-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.shipping-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    width: calc(50% - 2rem);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    z-index: 2;
}

.timeline-icon i {
    font-size: 1.2rem;
    color: white;
}

.timeline-step {
    font-size: 0.9rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Tracking Section */
.shipping-tracking-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.3);
    backdrop-filter: blur(10px);
}

.tracking-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tracking-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    position: relative;
}

.tracking-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.tracking-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tracking-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(226, 232, 240, 0.5);
    border-radius: 16px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tracking-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.tracking-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tracking-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* FAQ Section */
.shipping-faq-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.3);
    backdrop-filter: blur(10px);
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    position: relative;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-question i {
    color: #3b82f6;
}

.faq-answer {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Shipping Pricing */
.shipping-pricing {
    margin-bottom: 3rem;
}

.pricing-table-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.3);
    backdrop-filter: blur(10px);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.pricing-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: #e2e8f0;
}

.pricing-row.highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.pricing-cell {
    padding: 1rem 1.5rem;
    text-align: center;
    background: white;
    font-weight: 500;
}

.pricing-header .pricing-cell {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-cell.amount {
    font-weight: 600;
    color: #1e293b;
}

.pricing-cell.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b82f6;
}

.pricing-cell.price.express {
    color: #8b5cf6;
}

.pricing-cell.price.free {
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pricing-note i {
    color: #3b82f6;
}

/* Packaging Section */
.shipping-packaging {
    margin-bottom: 3rem;
}

.packaging-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.packaging-intro p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.packaging-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.packaging-feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.packaging-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.packaging-feature .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.packaging-feature .feature-icon i {
    font-size: 2rem;
    color: white;
}

.packaging-feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.packaging-feature p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Delivery Information */
.shipping-delivery {
    margin-bottom: 3rem;
}

.delivery-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.delivery-info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.delivery-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.delivery-info-card .info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
}

.delivery-info-card .info-icon i {
    font-size: 1.5rem;
    color: white;
}

.delivery-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.delivery-info-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.delivery-requirements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delivery-requirements li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #64748b;
    font-size: 0.95rem;
}

.delivery-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Returns Section */
.shipping-returns {
    margin-bottom: 3rem;
}

.returns-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.3);
    backdrop-filter: blur(10px);
}

.returns-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.returns-intro p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.returns-policies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.policy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.3s ease;
}

.policy-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.policy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.25);
}

.policy-icon i {
    font-size: 1.2rem;
    color: white;
}

.policy-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.policy-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.shipping-contact {
    margin-bottom: 3rem;
}

.help-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.help-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 0.5rem;
    font-weight: 400;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.card-title-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateX(4px);
}

.contact-method i {
    color: #3b82f6;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.method-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.method-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-value {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 600;
}

.service-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.action-section {
    margin-top: auto;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-align: center;
}

.action-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    text-decoration: none;
    color: white;
}

.action-btn i {
    font-size: 1.1rem;
}

/* Specific card styling */
.customer-service .contact-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.order-tracking .contact-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
}

.faq-section .contact-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .shipping-container {
        padding: 0 0.5rem;
    }
    
    .shipping-hero {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .shipping-hero h1 {
        font-size: 2rem;
    }
    
    .shipping-options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .shipping-option-card {
        padding: 1.5rem;
    }
    
    .shipping-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-icon {
        left: 30px;
        transform: none;
    }
    
    .tracking-form {
        flex-direction: column;
    }
    
    .tracking-input {
        min-width: auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-table-wrapper {
        padding: 1rem;
    }
    
    .pricing-header,
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .pricing-cell {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .packaging-features {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .packaging-feature {
        flex: 0 0 280px;
        padding: 1.5rem;
        scroll-snap-align: start;
    }
    
    .delivery-info-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .delivery-info-card {
        flex: 0 0 280px;
        padding: 1.5rem;
        scroll-snap-align: start;
    }
    
    .returns-policies {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .policy-item {
        flex: 0 0 280px;
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        scroll-snap-align: start;
    }
    
    .help-section-header {
        margin-bottom: 2rem;
    }
    
    .help-subtitle {
        font-size: 1rem;
    }
    
    .contact-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding: 0 1rem 1.5rem 1rem;
        margin: 0 -1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .contact-grid::-webkit-scrollbar {
        display: none;
    }
    
    .contact-card {
        flex: 0 0 320px;
        padding: 1.5rem;
        scroll-snap-align: start;
        min-height: auto;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .contact-method {
        padding: 0.5rem;
    }
    
    .method-info {
        gap: 0.125rem;
    }
    
    .method-label {
        font-size: 0.75rem;
    }
    
    .method-value {
        font-size: 0.9rem;
    }
    
    .action-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .shipping-hero {
        padding: 1.5rem 1rem;
    }
    
    .shipping-hero h1 {
        font-size: 1.8rem;
    }
    
    .shipping-option-card {
        padding: 1.2rem;
    }
    
    .shipping-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .shipping-timeline-section,
    .shipping-tracking-section,
    .shipping-faq-section {
        padding: 1.5rem 1rem;
    }
}