/*
Theme Name: African Black Soap Wholesale
Theme URI: https://africanblacksoapwholesale.com
Author: Antigravity (on behalf of User)
Description: Custom B2B theme for African Black Soap Wholesale
Version: 2.0
License: GNU General Public License v2 or later
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --primary-color: #8B4513;
    --primary-dark: #6f370f;
    --secondary-color: #DAA520;
    --secondary-dark: #c6951d;
    --tertiary-color: #006400;
    --background-light: #FFF8E1;
    --background-alt: #f9f9f9;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ============================================
   BASE STYLES
   ============================================ */
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.site-header {
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 8px 0;
    font-size: 0.85em;
    color: #fff;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-info i {
    color: var(--secondary-color);
}

.utility-nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.utility-nav a {
    color: #fff;
    font-size: 0.9em;
}

.utility-nav a:hover {
    color: var(--secondary-color);
}

.language-selector select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
}

/* Main Header */
.main-header {
    padding: 15px 0;
    background: #fff;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.site-branding {
    flex-shrink: 0;
}

.site-title {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.2;
}

.site-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.site-description {
    margin: 4px 0 0;
    font-size: 0.8em;
    color: var(--text-muted);
}

/* Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-toggle {
    display: none;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
}

.main-navigation ul,
.main-navigation .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 25px;
    justify-content: center;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    display: block;
    padding: 8px 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
    width: 100%;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.header-actions .btn {
    padding: 10px 18px;
    font-size: 0.85em;
}

.account-link,
.login-link {
    padding: 8px 12px;
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ============================================
   SECTION STYLES (COMMON)
   ============================================ */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #fff;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.85), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Trust Indicators */
.trust-indicators {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-indicators .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.indicator {
    text-align: center;
}

.indicator .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

.indicator .label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ============================================
   BUSINESS SEGMENTS SECTION
   ============================================ */
.business-segments {
    background: #fff;
}

.segment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.segment-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--background-light);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.segment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.segment-icon {
    margin-bottom: 20px;
}

.segment-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.segment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.segment-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   KEY BENEFITS SECTION
   ============================================ */
.key-benefits {
    background: var(--background-alt);
    padding: 60px 0;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    text-align: center;
    max-width: 180px;
}

.benefit-icon {
    margin-bottom: 12px;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.benefit-item h4 {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-dark);
}

/* ============================================
   PRODUCT SHOWCASE SECTION
   ============================================ */
.product-showcase {
    background: #fff;
}

.product-categories {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.product-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--background-light);
    border-radius: 16px;
    overflow: hidden;
}

.product-category:nth-child(even) {
    direction: rtl;
}

.product-category:nth-child(even)>* {
    direction: ltr;
}

.product-image {
    height: 100%;
    min-height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    padding: 40px;
}

.category-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.category-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.product-specs li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tertiary-color);
    font-weight: bold;
}

/* Featured Products Grid */
.featured-products {
    margin-top: 60px;
    text-align: center;
}

.featured-products h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.view-all-cta {
    margin-top: 40px;
}

/* ============================================
   MANUFACTURING PROCESS SECTION
   ============================================ */
.manufacturing-process {
    background: var(--background-alt);
}

.process-timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.step-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1;
}

.step-content h3 {
    margin: 0 0 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.step-description {
    color: var(--text-muted);
    margin: 0;
}

.step-image img {
    margin-top: 15px;
    border-radius: 8px;
}

/* Process Video */
.process-video {
    margin-top: 50px;
    text-align: center;
}

.video-caption h3 {
    margin-bottom: 10px;
}

.video-caption p {
    color: var(--text-muted);
}

/* Quality Control */
.quality-control {
    margin-top: 50px;
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.quality-control h3 {
    margin-bottom: 10px;
}

.quality-control>p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.quality-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quality-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--background-light);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-dark);
}

.quality-badges .badge i {
    color: var(--secondary-color);
}

.learn-more-cta {
    margin-top: 40px;
    text-align: center;
}

/* ============================================
   WHOLESALE PROGRAM SECTION
   ============================================ */
.wholesale-program-preview {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
}

.wholesale-program-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.wholesale-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.wholesale-content>p {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.wholesale-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.wholesale-benefits .benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.wholesale-benefits .benefit-icon {
    margin-bottom: 10px;
}

.wholesale-benefits .benefit-icon i {
    color: var(--secondary-color);
}

.wholesale-benefits h4 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.wholesale-benefits p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
}

.wholesale-cta {
    display: flex;
    gap: 15px;
}

.wholesale-cta .btn-primary {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.wholesale-cta .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

/* Pricing Preview */
.pricing-preview {
    background: #fff;
    color: var(--text-dark);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.pricing-preview h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.pricing-table {
    width: 100%;
}

.pricing-header,
.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 10px;
}

.pricing-header {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-row {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-row:nth-child(even) {
    background: var(--background-light);
}

.pricing-footer {
    padding: 15px;
    text-align: center;
}

.pricing-footer p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   INTERNATIONAL SHIPPING SECTION
   ============================================ */
.international-shipping {
    background: #fff;
}

.shipping-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.shipping-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.shipping-method {
    background: var(--background-light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.shipping-method h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.shipping-method h3 i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.shipping-method ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shipping-method li {
    padding: 5px 0;
    color: var(--text-muted);
}

.shipping-method li strong {
    color: var(--text-dark);
}

.documentation-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.documentation-list li {
    position: relative;
    padding: 10px 0 10px 30px;
    border-bottom: 1px solid var(--border-color);
}

.documentation-list li::before {
    content: '📄';
    position: absolute;
    left: 0;
}

.shipping-cta {
    margin-top: 40px;
    text-align: center;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), #b8860b);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-method {
    text-align: center;
}

.contact-icon {
    margin-bottom: 10px;
}

.contact-icon i {
    font-size: 2rem;
    color: #fff;
}

.contact-method h4 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.contact-method p {
    margin: 0;
}

.contact-method a {
    color: #fff;
    text-decoration: underline;
}

.contact-method a:hover {
    color: var(--primary-color);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content>p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.cta-buttons .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 18px 40px;
    font-size: 1.1rem;
}

.cta-buttons .btn-primary:hover {
    background: #fff;
    color: var(--primary-color);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 70px 0 30px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-widget,
.footer-column {}

.widget-title {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-widget ul,
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget li,
.footer-column li {
    margin-bottom: 10px;
}

.footer-widget a,
.footer-column a {
    color: #aaa;
    transition: var(--transition);
}

.footer-widget a:hover,
.footer-column a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* About page — clean section spacing */
.about-page .about-content section,
.about-page .about-section {
    padding: 0;
    margin-bottom: 40px;
}

.about-page .about-content section:last-child {
    margin-bottom: 0;
}

/* Footer branding subtitle */
.site-branding-footer p {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 8px;
}

.site-info {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .segment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }

    .wholesale-program-preview .container {
        grid-template-columns: 1fr;
    }

    .shipping-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* Header */
    .top-bar {
        display: none !important;
    }

    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .main-header .container {
        flex-wrap: wrap;
    }

    .site-branding {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        flex: 1 1 100%;
        order: 3;
    }

    .main-navigation ul,
    .main-navigation .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--background-light);
        padding: 20px;
        border-radius: 8px;
    }

    .main-navigation.toggled ul,
    .main-navigation.toggled .menu {
        display: flex;
    }

    .main-navigation li {
        text-align: center;
    }

    .header-actions {
        /* Hide large buttons on mobile, just keep login if needed, or hide all actions if buttons are the main issue */
        display: none !important;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .trust-indicators .container {
        flex-direction: column;
        gap: 20px;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .segment-grid {
        grid-template-columns: 1fr;
    }

    .product-category {
        grid-template-columns: 1fr;
    }

    .product-category:nth-child(even) {
        direction: ltr;
    }

    .product-image {
        min-height: 200px;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-timeline::before {
        left: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .wholesale-benefits {
        grid-template-columns: 1fr;
    }

    .wholesale-cta {
        flex-direction: column;
    }

    .pricing-header,
    .pricing-row {
        grid-template-columns: 1fr 1fr;
        font-size: 0.85rem;
    }

    .contact-options {
        flex-direction: column;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 80px 0;
        min-height: auto;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .category-content {
        padding: 25px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* ============================================
   FORM STYLES (for Application pages)
   ============================================ */

/* Page Layout for Application Pages - Using main element class */
.site-main.apply-wholesale-page {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding-bottom: 60px;
}

/* Page Header Styling for Wholesale Application */
.apply-wholesale-page .page-header {
    text-align: center;
    padding: 50px 0 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    margin-bottom: 40px;
}

.apply-wholesale-page .page-header .page-title {
    font-size: 2.5rem;
    margin: 0;
    color: #fff;
}

/* Application Wrapper - Centered Layout */
.wholesale-application-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Introduction Text */
.application-intro {
    margin-bottom: 30px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #fff9e6, #fff5d6);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 8px 8px 0;
}

.application-intro p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Form Container Styling */
.wholesale-application-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

/* Form Group Styling */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.form-group .required {
    color: #dc3545;
    margin-left: 2px;
}

.form-group .optional {
    color: #6c757d;
    font-weight: 400;
    font-size: 0.9em;
}

/* Input Fields */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.1);
}

.form-group input::placeholder {
    color: #adb5bd;
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #6c757d;
}

/* Checkbox Group - FIXED ALIGNMENT */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.checkbox-group label {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    cursor: pointer;
    padding: 12px 16px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 0;
    font-weight: 500;
    transition: all 0.2s ease;
}

.checkbox-group label:hover {
    background: #fff;
    border-color: var(--primary-color);
}

.checkbox-group input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
    accent-color: var(--primary-color);
    cursor: pointer;
}

/* Select Dropdown */
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 10.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

/* Submit Button */
.form-submit {
    margin-top: 35px;
    text-align: center;
}

.form-submit .btn {
    width: 100%;
    max-width: 300px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.form-submit .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

/* Success/Error Messages */
.application-message {
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.application-message h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.application-message p {
    margin: 0;
}

.application-message.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 1px solid #28a745;
    color: #155724;
}

.application-message.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 1px solid #dc3545;
    color: #721c24;
}

/* Sidebar Styling */
.wholesale-sidebar {
    position: relative;
}

.wholesale-sidebar .sidebar-box {
    background: linear-gradient(135deg, #fff9e6, #fffbf0);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e9d8a6;
    position: sticky;
    top: 120px;
}

.sidebar-box h3 {
    color: var(--primary-color);
    margin: 0 0 20px;
    font-size: 1.3rem;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    position: relative;
    padding: 14px 0 14px 35px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 14px;
    width: 24px;
    height: 24px;
    background: var(--tertiary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* ============================================
   RESPONSIVE STYLES FOR APPLICATION FORM
   ============================================ */
@media (max-width: 992px) {
    .wholesale-application-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wholesale-sidebar {
        order: -1;
    }
    
    .wholesale-sidebar .sidebar-box {
        position: static;
    }
}

@media (max-width: 768px) {
    .apply-wholesale-page .page-header {
        padding: 35px 0 25px;
    }
    
    .apply-wholesale-page .page-header .page-title {
        font-size: 1.8rem;
    }
    
    .wholesale-application-form {
        padding: 25px 20px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group select {
        padding: 12px 14px;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    .checkbox-group label {
        padding: 10px 14px;
    }
    
    .application-intro {
        padding: 15px 18px;
    }
    
    .application-intro p {
        font-size: 1rem;
    }
    
    .sidebar-box {
        padding: 20px;
    }
    
    .form-submit .btn {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .wholesale-application-wrapper {
        padding: 0 15px;
    }
    
    .apply-wholesale-page .page-header .page-title {
        font-size: 1.5rem;
    }
    
    .wholesale-application-form {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
}

/* ============================================
   INTERNATIONAL SHIPPING PAGE STYLES
   ============================================ */

/* Hero Section */
.international-shipping-page .shipping-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 60px 0 50px;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.international-shipping-page .hero-title {
    font-size: 2.8rem;
    margin: 0 0 15px;
    color: #fff;
}

.international-shipping-page .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Headings */
.international-shipping-page .section-heading {
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 10px;
}

.international-shipping-page .section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.international-shipping-page .section-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Shipping Methods Section */
.shipping-methods-section {
    padding: 40px 0 60px;
}

.shipping-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.shipping-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shipping-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.shipping-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.shipping-icon i {
    font-size: 2rem;
    color: #fff;
}

.shipping-icon.sea {
    background: linear-gradient(135deg, #1e88e5, #1565c0);
}

.shipping-icon.express {
    background: linear-gradient(135deg, var(--secondary-color), #b8860b);
}

.shipping-card h3 {
    font-size: 1.5rem;
    margin: 0 0 25px;
    color: var(--text-dark);
}

.shipping-details {
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.detail-row .value {
    color: var(--text-dark);
    font-weight: 500;
    text-align: right;
    max-width: 60%;
}

.shipping-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    color: #fff;
}

.shipping-tag.recommended {
    background: var(--primary-color);
}

.shipping-tag.economy {
    background: var(--tertiary-color);
}

.shipping-tag.fastest {
    background: var(--secondary-color);
    color: #000;
}

/* Countries Section */
.countries-section {
    background: var(--background-alt);
    padding: 60px 0;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.region {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.region h4 {
    color: var(--primary-color);
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.region h4 i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.region p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Documentation Section */
.documentation-section {
    padding: 60px 0;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.doc-item:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.doc-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.doc-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* CTA Section */
.shipping-cta {
    background: linear-gradient(135deg, var(--background-light), #fff5e6);
    padding: 60px 40px;
    text-align: center;
    border-radius: 20px;
    margin: 40px 0 60px;
    border: 1px solid #e9d8a6;
}

.shipping-cta h2 {
    font-size: 2rem;
    margin: 0 0 10px;
    color: var(--text-dark);
}

.shipping-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0 0 25px;
}

/* Responsive Styles for International Shipping */
@media (max-width: 992px) {
    .shipping-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .docs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .international-shipping-page .shipping-hero {
        padding: 40px 0 35px;
    }
    
    .international-shipping-page .hero-title {
        font-size: 2rem;
    }
    
    .international-shipping-page .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .international-shipping-page .section-heading {
        font-size: 1.6rem;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
    }
    
    .docs-grid {
        grid-template-columns: 1fr;
    }
    
    .shipping-cta {
        padding: 40px 25px;
        margin: 30px 0 40px;
    }
    
    .shipping-cta h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .international-shipping-page .hero-title {
        font-size: 1.6rem;
    }
    
    .shipping-card {
        padding: 25px 20px;
    }
    
    .shipping-tag {
        position: static;
        display: inline-block;
        transform: none;
        margin-top: 20px;
        border-radius: 20px;
        padding: 6px 16px;
    }
}

/* ============================================
   ENHANCED APPLICATION FORM STYLES
   ============================================ */

/* Page Header with Subtitle */
.apply-wholesale-page .page-header .page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 10px 0 0;
    font-weight: 400;
}

/* Form Sections */
.form-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

/* Form Row (side by side fields) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

/* Textarea */
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: #fafafa;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 100px;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.1);
}

/* Form Note under submit button */
.form-note {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact Box in Sidebar */
.sidebar-box.contact-box {
    margin-top: 25px;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 1px solid #28a745;
}

.sidebar-box.contact-box h3 {
    color: #155724;
    border-bottom-color: #28a745;
}

.sidebar-box.contact-box p {
    color: #155724;
    margin: 0 0 15px;
    font-size: 0.9rem;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

/* Responsive Styles for Enhanced Form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-row .form-group {
        margin-bottom: 25px;
    }
    
    .form-row .form-group:last-child {
        margin-bottom: 0;
    }
    
    .form-section-title {
        font-size: 1.1rem;
    }
}

/* ============================================
   WHOLESALE PROGRAM PAGE STYLES
   ============================================ */

/* Page-specific wrapper when viewing wholesale-program page */
.page-template-default .entry-content,
body.page .entry-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Page Title Styling */
body.page .entry-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    margin: 0 calc(-50vw + 50%);
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 0;
}

body.page .entry-title {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Welcome Section */
body.page .entry-content > h1:first-of-type {
    text-align: center;
    font-size: 2.2rem;
    margin: 50px 0 15px;
    color: var(--primary-color);
}

body.page .entry-content > h1:first-of-type + p {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Statistics Section - The big numbers (18+, 50+, 1000+) */
body.page .entry-content > p:has(strong) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 40px 0 60px;
    text-align: center;
}

/* Style for statistics-like content */
body.page .entry-content strong {
    font-size: 1.05rem;
}

/* Main H2 Section Titles */
body.page .entry-content h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 60px 0 15px;
    position: relative;
    padding-bottom: 20px;
}

body.page .entry-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Subtitle paragraphs after H2 */
body.page .entry-content h2 + p {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* ============================================
   PRICING TIERS - 3 Column Cards
   ============================================ */

/* Target H3s that represent pricing tiers */
body.page .entry-content h3 {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 16px 16px 0 0;
    padding: 25px 25px 15px;
    margin: 30px 0 0;
    font-size: 1.4rem;
    color: var(--primary-color);
    text-align: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

/* "Most Popular" or "Growth" tier highlighted */
body.page .entry-content h3:nth-of-type(3n+2) {
    background: linear-gradient(135deg, var(--secondary-color), #c6951d);
    color: #fff;
    border-color: var(--secondary-color);
    position: relative;
}

body.page .entry-content h3:nth-of-type(3n+2)::before {
    content: '⭐ MOST POPULAR';
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.9;
}

/* H4 for tier price or sub-headers */
body.page .entry-content h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin: 25px 0 15px;
    padding-left: 10px;
    border-left: 3px solid var(--secondary-color);
}

/* Lists (tier benefits) */
body.page .entry-content ul {
    background: #fff;
    border: 2px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 16px 16px;
    padding: 25px 30px 25px 50px;
    margin: 0 0 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    list-style: none;
}

body.page .entry-content ul li {
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

body.page .entry-content ul li:last-child {
    border-bottom: none;
}

body.page .entry-content ul li::before {
    content: '✓';
    position: absolute;
    left: -25px;
    color: var(--tertiary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Links styled as buttons within content */
body.page .entry-content a[href*="application"],
body.page .entry-content a[href*="quote"],
body.page .entry-content a[href*="wholesale"] {
    display: inline-block;
    background: var(--primary-color);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin: 10px 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

body.page .entry-content a[href*="application"]:hover,
body.page .entry-content a[href*="quote"]:hover,
body.page .entry-content a[href*="wholesale"]:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

/* Note paragraphs */
body.page .entry-content p:has(strong:first-child) {
    background: var(--background-light);
    padding: 20px 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    margin: 30px 0;
}

/* ============================================
   PRIVATE LABEL SECTION
   ============================================ */

/* Second major section styling */
body.page .entry-content h2:nth-of-type(n+2) {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

/* Why Choose / Benefits Grid */
body.page .entry-content h3 + ul + h3 + ul + h3 + ul + h3 + ul,
body.page .entry-content h2 + p + h3 {
    background: var(--background-alt);
}

/* ============================================
   WHY PARTNER WITH US SECTION
   ============================================ */

/* Container for benefits section */
body.page .entry-content > h2:last-of-type ~ h3 {
    background: linear-gradient(135deg, var(--background-light), #fff);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
    text-align: center;
}

body.page .entry-content > h2:last-of-type ~ h3::before {
    display: none;
}

/* Paragraphs after H3s in benefits section */
body.page .entry-content h3 + p:not(:has(a)) {
    text-align: center;
    color: var(--text-muted);
    padding: 0 20px 20px;
    margin-top: -15px;
}

/* ============================================
   CTA SECTION STYLING
   ============================================ */

/* Ready to Start / Get Started sections */
body.page .entry-content > p:last-of-type,
body.page .entry-content > h2:last-of-type + p {
    text-align: center;
}

/* Large CTA buttons at the bottom */
body.page .entry-content > p:last-of-type a {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff !important;
    padding: 18px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.25);
}

body.page .entry-content > p:last-of-type a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(139, 69, 19, 0.35);
}

/* Secondary button style */
body.page .entry-content > p:last-of-type a:nth-child(2) {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    box-shadow: none;
}

body.page .entry-content > p:last-of-type a:nth-child(2):hover {
    background: var(--primary-color);
    color: #fff !important;
}

/* ============================================
   SHIPPING CALCULATOR SECTION
   ============================================ */

body.page .entry-content form,
body.page .entry-content .wp-block-group {
    background: var(--background-light);
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
    box-shadow: var(--shadow-sm);
}

/* ============================================
   RESPONSIVE STYLES FOR WHOLESALE PAGE
   ============================================ */

@media (max-width: 992px) {
    body.page .entry-title {
        font-size: 2.2rem;
    }
    
    body.page .entry-content h2 {
        font-size: 1.7rem;
    }
    
    body.page .entry-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    body.page .entry-header {
        padding: 40px 15px;
    }
    
    body.page .entry-title {
        font-size: 1.8rem;
    }
    
    body.page .entry-content > h1:first-of-type {
        font-size: 1.6rem;
        margin-top: 30px;
    }
    
    body.page .entry-content h2 {
        font-size: 1.5rem;
        margin-top: 40px;
    }
    
    body.page .entry-content h3 {
        font-size: 1.15rem;
        padding: 20px 20px 12px;
    }
    
    body.page .entry-content ul {
        padding: 20px 25px 20px 45px;
    }
    
    body.page .entry-content ul li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    body.page .entry-content a[href*="application"],
    body.page .entry-content a[href*="quote"],
    body.page .entry-content a[href*="wholesale"] {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
    
    body.page .entry-content > p:last-of-type a {
        display: block;
        margin: 10px 0;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    body.page .entry-content form,
    body.page .entry-content .wp-block-group {
        padding: 25px 20px;
    }
}

/* ============================================
   EXTRA POLISH
   ============================================ */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Improve readability of em/strong in content */
body.page .entry-content em {
    font-style: italic;
    color: var(--text-muted);
}

body.page .entry-content strong {
    color: var(--text-dark);
}

/* Images within content */
body.page .entry-content img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin: 20px 0;
}

/* Horizontal rules */
body.page .entry-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 50px 0;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   LEAD CAPTURE / QUICK QUOTE FORM
   ============================================ */
.lead-capture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .lead-capture-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

.lead-capture-section input::placeholder,
.lead-capture-section select::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.lead-capture-section select option {
    color: #333;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-toggle:hover {
    background: var(--background-light) !important;
}

/* ============================================
   TESTIMONIALS GRID — MOBILE
   ============================================ */
@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   PRICING CARDS — MOBILE
   ============================================ */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr !important;
    }

    .pricing-card {
        max-width: 420px;
        margin: 0 auto;
    }
}

/* ============================================
   LANDING PAGE OVERRIDES
   ============================================ */
.landing-page .site-header {
    display: none !important;
}

.landing-page .site-footer {
    display: none !important;
}

/* ============================================
   CRO REDESIGN HOMEPAGE STYLES
   ============================================ */
.cro-hero {
    padding: 140px 0 100px;
    color: #fff;
}
.cro-hero::before {
    display: none;
}
.cro-hero .hero-grid {
    position: relative;
    z-index: 2;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-trust-list ul {
        text-align: center !important;
        display: inline-block;
    }
}
.tech-specs i {
    text-align: center;
}
.sample-box-section {
    border-top: 4px solid var(--primary-color);
}
@media (max-width: 768px) {
    .sample-box-content {
        flex-direction: column;
        text-align: center;
    }
}
