/* Shipping Information - VIP Premium Styles */


/* Hero Section */
.shipping-hero {
     text-align: center;
    padding: 60px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background: #fafafa;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    height: 280px;
}



@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}



.shipping-title {
    font-size: 48px;
    font-weight: 600;
    color: #4A3426;
    letter-spacing: -0.5px;
    z-index: 2;
    margin: 0 !important;
    font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.shipping-subtitle {
     font-size: 18px;
    font-weight: 300;
    color: #4B5563;
    position: relative;
    z-index: 2;
    margin: 0 !important;
font-family: -apple-system, BlinkMacSystemFont, 
             "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #b87939 0%, #d4955f 100%);
    border-radius: 3px;
}
.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 16px;
}
/* Shipping Methods */
.shipping-methods {
    display: grid;
     grid-template-columns: repeat(2, 2fr);
    gap: 35px;
    margin-bottom: 60px;
}

.method-card {
    background: #fff;
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.method-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #b87939, #d4955f);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.method-card:hover::before {
    opacity: 1;
}

.method-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(184, 121, 57, 0.15);
}

.method-card.featured {
    background: linear-gradient(135deg, #fff9f3 0%, #fff 100%);
    border: 2px solid #b87939;
}

.method-card.featured::before {
    opacity: 0;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.method-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d1 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(184, 121, 57, 0.1);
}

.method-card:hover .method-icon {
    background: linear-gradient(135deg, #b87939 0%, #d4955f 100%);
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(184, 121, 57, 0.25);
}

.method-icon svg {
    width: 40px;
    height: 40px;
    color: #b87939;
    transition: color 0.4s ease;
}

.method-card:hover .method-icon svg {
    color: #fff;
}

.method-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.method-time {
    font-size: 14px;
    color: #b87939;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-price {
    font-size: 42px;
    font-weight: 800;
    color: #b87939;
    margin-bottom: 18px;
    line-height: 1;
}

.method-price.free {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.method-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* Delivery Process */
.delivery-process {
    margin-bottom: 60px;
    position: relative;
}

.process-steps {
    display: grid;
        grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #b87939 0%, #d4955f 100%);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: #fff;
    border: 3px solid #b87939;
    color: #b87939;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(184, 121, 57, 0.2);
    transition: all 0.4s ease;
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #fff9f3 100%);
}

.process-step:hover .step-number {
    background: linear-gradient(135deg, #b87939 0%, #d4955f 100%);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(184, 121, 57, 0.35);
}

.process-step h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.process-step p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Coverage Section */
.coverage-section {
    margin-bottom: 60px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 35px;
}

.coverage-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 35px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.coverage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b87939 0%, #d4955f 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.coverage-card:hover::before {
    transform: scaleX(1);
}

.coverage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(184, 121, 57, 0.12);
}

.coverage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(184, 121, 57, 0.1);
}

.coverage-card:hover .coverage-icon {
    background: linear-gradient(135deg, #b87939 0%, #d4955f 100%);
    transform: rotate(10deg) scale(1.05);
}

.coverage-icon svg {
    width: 36px;
    height: 36px;
    color: #b87939;
    transition: color 0.4s ease;
}

.coverage-card:hover .coverage-icon svg {
    color: #fff;
}

.coverage-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.coverage-card p {
    font-size: 15px;
    color: #666;
    margin: 0 0 20px;
    line-height: 1.7;
}

.delivery-time {
    display: inline-block;
    padding: 8px 22px;
    background: linear-gradient(135deg, #b87939 0%, #d4955f 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(184, 121, 57, 0.25);
}

/* Contact CTA */
.shipping-cta {
    background: #4A3426;
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.shipping-cta h3 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    position: relative;
    z-index: 2;
}

.shipping-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 30px;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    padding: 14px 36px;
    background: #FFFFFF1A;
    color: #fff !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    color: black !important;
    background: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
   .delivery-process, .coverage-section {
       margin-bottom: 50px;
   }
     .content-container {
        padding: 40px 12px;
    }
    .shipping-hero {
        padding: 40px 12px;
        height: 250px;
    }
    
    .shipping-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .shipping-methods,
    .coverage-grid {
        gap: 24px;
        margin-bottom: 50px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .method-card,
    .coverage-card {
        padding: 35px 28px;
    }
    
    .shipping-cta {
        padding: 45px 28px;
    }
    
    .shipping-cta h3 {
        font-size: 26px;
    }
}



@media (max-width: 478px) { 
    
    .shipping-methods, .coverage-grid {
        
                gap: 6px;
    }
    
    .method-card, .coverage-card {
        padding: 18px 12px;
    }
    .featured-badge {
    padding: 6px 10px;
    font-size: 9px;
        top: 10px;
    right: 5px;
    }
    .method-icon, .coverage-icon {
        width: 50px;
        height: 50px;
        margin : 0 auto 14px;
    }
    
    .method-icon svg, .coverage-icon svg {
        width: 25px;
    height: 25px;
    }
    
    .method-card h3, .coverage-card h3 {
        font-size: 17px;
        white-space: nowrap;
    }
    
    .method-time {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .method-price {
        font-size: 28px;
                margin-bottom: 12px;

    }
    
    .method-card p, .coverage-card p {
        font-size: 13px;
    }
    
   .process-steps {
       gap: 20px;
       
   }
   
   .step-number {
           width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    font-size: 22px;
   }
   .process-step h3 {
       font-size: 17px;
   }
   .process-step p {
       font-size: 12px;
   }
   
   
   
    }


