/* ============================================
   DELIVERY PAGE STYLES
   ============================================ */

.delivery-page-wrapper {
    background: #F5F5F5;
    padding: 40px 0 60px;
    min-height: 60vh;
}

.delivery-page-wrapper .container_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.delivery-page-wrapper .maxwidth-theme {
    max-width: 100%;
    padding: 0;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Page Header */
.delivery-header {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.delivery-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    color: #231F20;
    margin: 0 0 16px 0;
}

.delivery-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #666666;
    margin: 0;
}

/* Delivery Section */
.delivery-section {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #231F20;
    margin: 0 0 32px 0;
}

/* Delivery Methods Grid */
.delivery-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 0;
}

.delivery-method-card {
    background: #F8F8F8;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.delivery-method-card:hover {
    border-color: #EE2722;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(238, 39, 34, 0.15);
    transform: translateY(-4px);
}

.method-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EE2722;
    border-radius: 50%;
    color: #FFFFFF;
}

.method-icon svg {
    width: 32px;
    height: 32px;
}

.method-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #231F20;
    margin: 0 0 12px 0;
}

.method-description {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #666666;
    margin: 0 0 20px 0;
}

.method-price {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: #EE2722;
}

/* Delivery Terms */
.delivery-terms {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.term-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: #F8F8F8;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.term-item:hover {
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.term-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EE2722;
    color: #FFFFFF;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.term-content {
    flex: 1;
}

.term-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: #231F20;
    margin: 0 0 8px 0;
}

.term-description {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #666666;
    margin: 0;
}

/* Contact Information */
.delivery-section .contact-info {
    text-align: center;
}

.delivery-section .contact-text {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #666666;
    margin: 0 0 24px 0;
}

.delivery-section .contact-methods {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.delivery-section .contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #EE2722;
    color: #FFFFFF;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(238, 39, 34, 0.2);
}

.delivery-section .contact-link:hover {
    background: #D01E1A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(238, 39, 34, 0.3);
    text-decoration: none;
    color: #FFFFFF;
}

.delivery-section .contact-link svg {
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .delivery-page-wrapper {
        padding: 20px 0 40px;
    }
    
    .delivery-page-wrapper .container_inner {
        padding: 0 16px;
    }
    
    .delivery-header {
        padding: 32px 24px;
        margin-bottom: 24px;
        border-radius: 10px;
    }
    
    .delivery-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .delivery-subtitle {
        font-size: 16px;
    }
    
    .delivery-section {
        padding: 24px 20px;
        margin-bottom: 24px;
        border-radius: 10px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .delivery-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .delivery-method-card {
        padding: 28px 20px;
    }
    
    .method-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .method-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .method-title {
        font-size: 18px;
    }
    
    .method-description {
        font-size: 14px;
    }
    
    .method-price {
        font-size: 16px;
    }
    
    .delivery-terms {
        gap: 20px;
    }
    
    .term-item {
        padding: 20px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .term-icon {
        margin: 0 auto;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 16px;
    }
    
    .contact-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .delivery-page-wrapper {
        padding: 16px 0 32px;
    }
    
    .delivery-page-wrapper .container_inner {
        padding: 0 12px;
    }
    
    .delivery-header {
        padding: 24px 20px;
        margin-bottom: 20px;
    }
    
    .delivery-title {
        font-size: 24px;
    }
    
    .delivery-subtitle {
        font-size: 15px;
    }
    
    .delivery-section {
        padding: 20px 16px;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .delivery-method-card {
        padding: 24px 16px;
    }
    
    .method-icon {
        width: 48px;
        height: 48px;
    }
    
    .method-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .method-title {
        font-size: 16px;
    }
    
    .method-description {
        font-size: 13px;
    }
    
    .term-item {
        padding: 16px;
    }
    
    .term-title {
        font-size: 16px;
    }
    
    .term-description {
        font-size: 14px;
    }
    
    .contact-text {
        font-size: 14px;
    }
    
    .contact-link {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* ============================================
   FORCE REMOVE WHITE BACKGROUND - maxwidth-theme
   ============================================ */

/* Remove white background from maxwidth-theme with maximum specificity */
#delivery-maxwidth-theme,
.maxwidth-theme#delivery-maxwidth-theme,
div.maxwidth-theme#delivery-maxwidth-theme,
body .wrapper1 .wraps.hover_shine .wrapper_inner .container_inner .maxwidth-theme#delivery-maxwidth-theme,
body .wrapper1 .wraps .wrapper_inner .container_inner .maxwidth-theme#delivery-maxwidth-theme,
body .wrapper1 .wraps .wrapper_inner .middle .container_inner .maxwidth-theme#delivery-maxwidth-theme,
body .wrapper1 .wraps .wrapper_inner .container_inner .delivery-page-wrapper .maxwidth-theme#delivery-maxwidth-theme,
body .wrapper1 .wraps .wrapper_inner .delivery-page-wrapper .container_inner .maxwidth-theme#delivery-maxwidth-theme,
body .wrapper1 .wraps .delivery-page-wrapper .container_inner .maxwidth-theme#delivery-maxwidth-theme,
body .wrapper1 .delivery-page-wrapper .container_inner .maxwidth-theme#delivery-maxwidth-theme,
body .delivery-page-wrapper .container_inner .maxwidth-theme#delivery-maxwidth-theme,
.delivery-page-wrapper .container_inner .maxwidth-theme#delivery-maxwidth-theme,
.delivery-page-wrapper .maxwidth-theme#delivery-maxwidth-theme,
body .wrapper1 .wraps .wrapper_inner .container_inner .maxwidth-theme.delivery-page-wrapper,
body .wrapper1 .wraps .wrapper_inner .container_inner .delivery-page-wrapper .maxwidth-theme,
body .delivery-page-wrapper .container_inner .maxwidth-theme,
.delivery-page-wrapper .container_inner .maxwidth-theme,
.delivery-page-wrapper .maxwidth-theme {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

