/* ============================================
   Bilhandler Shop - Modern 2026 Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Reset for shop elements - isolate from theme */
.bshop-header,
.bshop-hero,
.bshop-features,
.bshop-pricing,
.bshop-demo,
.bshop-faq,
.bshop-footer {
    all: unset;
    display: block;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.bshop-header *,
.bshop-hero *,
.bshop-features *,
.bshop-pricing *,
.bshop-demo *,
.bshop-faq *,
.bshop-footer * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
    font-family: 'Montserrat', sans-serif;
}

/* Override Elementor defaults */
.elementor-widget-container .bshop-hero,
.elementor-widget-container .bshop-features,
.elementor-widget-container .bshop-pricing,
.elementor-widget-container .bshop-demo,
.elementor-widget-container .bshop-faq,
.entry-content .bshop-hero,
.entry-content .bshop-features,
.entry-content .bshop-pricing,
.entry-content .bshop-demo,
.entry-content .bshop-faq {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
}

:root {
    --bshop-primary: #9c7250;
    --bshop-primary-dark: #03331e;
    --bshop-primary-light: #c9a882;
    --bshop-accent-green: #03331e;
    --bshop-gray-50: #f8fafc;
    --bshop-gray-100: #f1f5f9;
    --bshop-gray-200: #e2e8f0;
    --bshop-gray-300: #cbd5e1;
    --bshop-gray-400: #94a3b8;
    --bshop-gray-500: #64748b;
    --bshop-gray-600: #475569;
    --bshop-gray-700: #334155;
    --bshop-gray-800: #1e293b;
    --bshop-gray-900: #0f172a;
    --bshop-white: #ffffff;
    --bshop-radius: 12px;
    --bshop-radius-lg: 20px;
    --bshop-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --bshop-shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --bshop-gradient: linear-gradient(135deg, #9c7250 0%, #03331e 100%);
    --bshop-gradient-light: linear-gradient(135deg, #f5f0eb 0%, #e8f0eb 100%);
}

/* ============================================
   GLOBAL MOBILE FIX - Prevent horizontal scroll
   ============================================ */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
    }

    * {
        max-width: 100vw;
    }
}

/* ============================================
   Container
   ============================================ */
.bshop-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ============================================
   Typography
   ============================================ */
.bshop-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--bshop-gray-900);
    text-align: center;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.bshop-section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--bshop-gray-500);
    text-align: center;
    margin: 0 0 40px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ============================================
   Buttons
   ============================================ */
.bshop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--bshop-radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.bshop-btn-primary {
    background: var(--bshop-gradient);
    color: var(--bshop-white);
    box-shadow: 0 4px 12px rgba(156, 114, 80, 0.25);
}

.bshop-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 114, 80, 0.35);
    color: var(--bshop-white);
}

.bshop-btn-secondary {
    background: var(--bshop-white);
    color: var(--bshop-gray-700);
    border: 2px solid var(--bshop-gray-200);
}

.bshop-btn-secondary:hover {
    border-color: var(--bshop-primary);
    color: var(--bshop-primary);
}

.bshop-btn-block {
    width: 100%;
}

/* ============================================
   Hero Section
   ============================================ */
.bshop-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 60px 60px 60px;
    max-width: calc(100% - 20px);
    margin: 0 auto;
    background: var(--bshop-gradient-light);
    border-radius: 0 0 40px 40px;
}

.bshop-hero-content {
    padding: 20px 0;
}

.bshop-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--bshop-gray-900);
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.bshop-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.bshop-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bshop-hero-media {
    display: flex;
    justify-content: center;
}

.bshop-mockup-browser {
    background: var(--bshop-white);
    border-radius: var(--bshop-radius-lg);
    box-shadow: var(--bshop-shadow-lg);
    overflow: hidden;
    max-width: 450px;
    width: 100%;
}

.bshop-mockup-dots {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: var(--bshop-gray-100);
}

.bshop-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.bshop-mockup-dots span:first-child { background: #ff5f56; }
.bshop-mockup-dots span:nth-child(2) { background: #ffbd2e; }
.bshop-mockup-dots span:nth-child(3) { background: #27ca40; }

.bshop-mockup-content {
    height: 280px;
    background: linear-gradient(135deg, var(--bshop-gray-100), var(--bshop-gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bshop-gray-400);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.bshop-mockup-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Features Section
   ============================================ */
.bshop-features {
    padding: 60px 20px;
    background: var(--bshop-white);
}

.bshop-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.bshop-feature-card {
    background: var(--bshop-white);
    padding: 24px;
    border-radius: var(--bshop-radius);
    border: 1px solid var(--bshop-gray-200);
    transition: all 0.2s ease;
}

.bshop-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bshop-shadow-lg);
    border-color: var(--bshop-primary-light);
}

.bshop-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bshop-gradient-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.bshop-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--bshop-primary);
}

.bshop-feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--bshop-gray-900);
    margin: 0 0 8px 0;
}

.bshop-feature-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--bshop-gray-500);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   Pricing Section
   ============================================ */
.bshop-pricing {
    padding: 60px 20px;
    background: var(--bshop-white);
}

.bshop-pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.bshop-pricing-card {
    background: var(--bshop-white);
    border-radius: var(--bshop-radius-lg);
    padding: 32px;
    border: 2px solid var(--bshop-gray-200);
    position: relative;
}

.bshop-pricing-featured {
    border-color: var(--bshop-primary);
}

.bshop-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bshop-gradient);
    color: var(--bshop-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.bshop-pricing-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--bshop-gray-900);
    margin: 0 0 16px 0;
    text-align: center;
}

.bshop-pricing-price {
    text-align: center;
    margin-bottom: 24px;
}

.bshop-price-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--bshop-gray-900);
    line-height: 1;
}

.bshop-price-currency {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--bshop-gray-600);
}

.bshop-price-period {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--bshop-gray-400);
    display: block;
    margin-top: 4px;
}

.bshop-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.bshop-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--bshop-gray-100);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--bshop-gray-700);
}

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

.bshop-pricing-features svg {
    width: 18px;
    height: 18px;
    color: var(--bshop-accent-green);
    flex-shrink: 0;
}

/* Addon Card */
.bshop-pricing-addon h3 {
    text-align: left;
    margin-bottom: 20px;
}

.bshop-addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--bshop-gray-100);
}

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

.bshop-addon-info strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--bshop-gray-900);
    margin-bottom: 2px;
}

.bshop-addon-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--bshop-gray-500);
    margin: 0;
}

.bshop-addon-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--bshop-primary);
    white-space: nowrap;
}

/* Trust Badges */
.bshop-trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.bshop-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--bshop-gray-500);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
}

.bshop-trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--bshop-gray-400);
}

/* ============================================
   Demo Section
   ============================================ */
.bshop-demo {
    padding: 60px 20px;
    background: var(--bshop-white);
}

.bshop-demo-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.bshop-demo-browser {
    background: var(--bshop-white);
    border-radius: var(--bshop-radius-lg);
    overflow: hidden;
    box-shadow: var(--bshop-shadow-lg);
    border: 1px solid var(--bshop-gray-200);
}

.bshop-demo-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--bshop-gray-100);
}

.bshop-demo-dots {
    display: flex;
    gap: 6px;
}

.bshop-demo-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.bshop-demo-dots span:first-child { background: #ff5f56; }
.bshop-demo-dots span:nth-child(2) { background: #ffbd2e; }
.bshop-demo-dots span:nth-child(3) { background: #27ca40; }

.bshop-demo-url {
    flex: 1;
    background: var(--bshop-white);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--bshop-gray-500);
    border: 1px solid var(--bshop-gray-200);
}

.bshop-demo-external {
    color: var(--bshop-gray-500);
    display: flex;
    padding: 6px;
    border-radius: 4px;
    text-decoration: none;
}

.bshop-demo-external:hover {
    background: var(--bshop-gray-200);
    color: var(--bshop-primary);
}

.bshop-demo-external svg {
    width: 16px;
    height: 16px;
}

.bshop-demo-iframe-container {
    width: 100%;
    overflow: hidden;
    background: var(--bshop-gray-100);
    min-height: 550px;
}

.bshop-demo-iframe {
    width: 100%;
    height: 550px;
    min-height: 550px;
    border: none;
    display: block;
    background: var(--bshop-white);
}

.bshop-demo-mobile-link {
    display: none !important;
    padding: 40px 20px;
    text-align: center;
}

@media (max-width: 600px) {
    .bshop-demo-mobile-link {
        display: block !important;
    }
}

/* ============================================
   FAQ Section
   ============================================ */
.bshop-faq {
    padding: 60px 20px;
    background: var(--bshop-white);
}

.bshop-faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.bshop-faq-item {
    border-bottom: 1px solid var(--bshop-gray-200);
}

.bshop-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--bshop-gray-900);
    cursor: pointer;
    text-align: left;
}

.bshop-faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--bshop-gray-400);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.bshop-faq-item.active .bshop-faq-question svg {
    transform: rotate(180deg);
}

/* Active & Hover FAQ item - brun/grøn theme (IKKE pink) */
.bshop-faq-item.active .bshop-faq-question,
.bshop-faq-question:hover {
    background: var(--bshop-primary) !important;
    color: #ffffff !important;
    padding: 20px !important;
    margin: 0 -20px !important;
    width: calc(100% + 40px) !important;
    border-radius: 8px !important;
}

.bshop-faq-item.active .bshop-faq-question {
    border-radius: 8px 8px 0 0 !important;
}

.bshop-faq-item.active .bshop-faq-question svg,
.bshop-faq-question:hover svg {
    color: rgba(255,255,255,0.8) !important;
}

.bshop-faq-answer {
    display: none;
    padding-bottom: 20px;
}

.bshop-faq-item.active .bshop-faq-answer {
    display: block;
}

.bshop-faq-answer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--bshop-gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   WooCommerce Overrides
   ============================================ */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--bshop-gradient) !important;
    color: var(--bshop-white) !important;
    border-radius: var(--bshop-radius) !important;
    padding: 12px 24px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border: none !important;
    transition: all 0.2s ease !important;
}

.woocommerce .button:hover,
.woocommerce button.button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(156, 114, 80, 0.3) !important;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
    .bshop-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
    }

    .bshop-hero-buttons {
        justify-content: center;
    }

    .bshop-hero-title {
        font-size: 32px;
    }

    .bshop-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bshop-pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    .bshop-section-title {
        font-size: 26px;
    }

    .bshop-hero-title {
        font-size: 28px;
    }

    .bshop-features-grid {
        grid-template-columns: 1fr;
    }

    .bshop-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .bshop-demo-iframe-container {
        display: none;
    }

    .bshop-demo-toolbar {
        display: none;
    }

    .bshop-demo-browser {
        box-shadow: none;
        border: none;
        background: transparent;
    }

    .bshop-demo-wrapper {
        max-width: 100%;
    }
}

/* ============================================
   Header
   ============================================ */
.bshop-header {
    background: var(--bshop-white);
    padding: 0;
    border-bottom: 1px solid var(--bshop-gray-200);
    font-family: 'Montserrat', sans-serif;
}

.bshop-header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 80px;
}

.bshop-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 80px;
}

.bshop-header-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.bshop-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--bshop-gray-900);
    letter-spacing: -0.5px;
}

.bshop-logo-img {
    height: 40px;
    width: auto;
}

.bshop-header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Header Icons (Cart & Account) */
.bshop-header-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Desktop: Icons appear after nav */
@media (min-width: 769px) {
    .bshop-header-icons {
        order: 3;
        margin-left: 16px;
    }

    .bshop-header-nav {
        order: 2;
        margin-left: auto;
    }
}

.bshop-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bshop-gray-100);
    color: var(--bshop-gray-700);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.bshop-header-icon:hover {
    background: var(--bshop-primary);
    color: var(--bshop-white);
    transform: translateY(-2px);
}

.bshop-header-icon svg {
    width: 20px;
    height: 20px;
}

.bshop-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--bshop-accent-green);
    color: var(--bshop-white);
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.bshop-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.bshop-nav-item {
    margin: 0;
}

.bshop-nav-link {
    display: block;
    padding: 8px 16px;
    color: var(--bshop-gray-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.bshop-nav-link:hover {
    color: var(--bshop-gray-900);
    background: var(--bshop-gray-100);
}

.bshop-header-cta {
    padding: 10px 20px;
    font-size: 14px;
}

.bshop-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: var(--bshop-accent-green) !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.bshop-mobile-toggle:hover,
.bshop-mobile-toggle:focus,
.bshop-mobile-toggle.active {
    background: var(--bshop-primary) !important;
}

.bshop-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--bshop-white) !important;
    border-radius: 2px;
    transition: all 0.2s ease;
}

/* ============================================
   Mobile Responsive - Complete Overhaul
   ============================================ */
@media (max-width: 768px) {
    /* Header Container */
    .bshop-header-container {
        position: relative;
        padding: 12px 16px !important;
        min-height: 64px;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
    }

    /* Logo */
    .bshop-header-logo {
        order: 1;
        flex-shrink: 0;
    }

    .bshop-logo-text {
        font-size: 18px !important;
    }

    .bshop-logo-img {
        height: 32px !important;
    }

    /* Icons - Always visible next to hamburger */
    .bshop-header-icons {
        order: 2;
        display: flex !important;
        align-items: center;
        gap: 8px;
        margin-left: auto !important;
    }

    .bshop-header-icon {
        width: 40px !important;
        height: 40px !important;
        border-radius: 10px !important;
    }

    .bshop-header-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    /* Hamburger Menu Toggle */
    .bshop-mobile-toggle {
        display: flex !important;
        order: 3;
        flex-shrink: 0;
    }

    /* Navigation Dropdown */
    .bshop-header-nav {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: var(--bshop-white) !important;
        flex-direction: column !important;
        padding: 16px !important;
        border-top: 1px solid var(--bshop-gray-200) !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
        z-index: 9999 !important;
    }

    .bshop-header-nav.active {
        display: flex !important;
    }

    .bshop-nav-list {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0 !important;
    }

    .bshop-nav-item {
        border-bottom: 1px solid var(--bshop-gray-100);
    }

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

    .bshop-nav-link {
        padding: 14px 16px !important;
        font-size: 15px !important;
        display: block !important;
    }

    .bshop-header-cta {
        width: 100% !important;
        margin-top: 16px !important;
        text-align: center !important;
    }

    /* Hero Section Mobile */
    .bshop-hero {
        padding: 24px 16px 32px 16px !important;
        border-radius: 0 0 24px 24px !important;
    }

    .bshop-hero-title {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }

    .bshop-hero-subtitle {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .bshop-hero-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .bshop-hero-buttons .bshop-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .bshop-mockup-browser {
        max-width: 100% !important;
    }

    .bshop-mockup-content {
        height: 200px !important;
    }

    /* Features Grid Mobile */
    .bshop-features {
        padding: 40px 16px !important;
    }

    .bshop-features-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .bshop-feature-card {
        padding: 20px !important;
    }

    .bshop-feature-icon {
        width: 44px !important;
        height: 44px !important;
    }

    .bshop-feature-card h3 {
        font-size: 15px !important;
    }

    .bshop-feature-card p {
        font-size: 13px !important;
    }

    /* Pricing Mobile */
    .bshop-pricing {
        padding: 40px 16px !important;
    }

    .bshop-pricing-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 100% !important;
    }

    .bshop-pricing-card {
        padding: 24px !important;
    }

    .bshop-price-amount {
        font-size: 36px !important;
    }

    /* Section Titles Mobile */
    .bshop-section-title {
        font-size: 22px !important;
        padding: 0 8px !important;
    }

    .bshop-section-subtitle {
        font-size: 14px !important;
        padding: 0 8px !important;
    }

    /* Products Grid Mobile */
    .bshop-products {
        padding: 40px 16px !important;
    }

    .bshop-products-grid,
    .bshop-products-grid[data-columns="2"],
    .bshop-products-grid[data-columns="3"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 100% !important;
    }

    .bshop-product-card {
        margin: 0 !important;
    }

    .bshop-product-content {
        padding: 20px !important;
    }

    .bshop-product-title {
        font-size: 16px !important;
    }

    .bshop-price-current {
        font-size: 28px !important;
    }

    /* Demo Section Mobile */
    .bshop-demo {
        padding: 40px 16px !important;
    }

    /* FAQ Mobile */
    .bshop-faq {
        padding: 40px 16px !important;
    }

    .bshop-faq-question {
        font-size: 14px !important;
        padding: 16px 0 !important;
    }

    .bshop-faq-item.active .bshop-faq-question,
    .bshop-faq-question:hover {
        padding: 16px !important;
        margin: 0 -16px !important;
        width: calc(100% + 32px) !important;
    }

    .bshop-faq-answer p {
        font-size: 13px !important;
    }

    /* Footer Mobile */
    .bshop-footer-main {
        padding: 40px 0 30px !important;
    }

    .bshop-footer-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 16px !important;
    }

    .bshop-footer-company {
        grid-column: span 1 !important;
    }

    .bshop-footer-brand {
        font-size: 20px !important;
    }

    .bshop-footer-desc {
        font-size: 13px !important;
    }

    .bshop-footer-col h4 {
        font-size: 13px !important;
        margin-bottom: 14px !important;
    }

    .bshop-footer-links a,
    .bshop-footer-contact li {
        font-size: 13px !important;
    }

    .bshop-footer-bottom {
        padding: 20px 0 !important;
    }

    .bshop-footer-bottom .bshop-footer-container {
        flex-direction: column !important;
        gap: 16px !important;
        text-align: center !important;
    }

    .bshop-footer-legal {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 16px !important;
    }

    .bshop-copyright,
    .bshop-footer-legal a {
        font-size: 12px !important;
    }

    /* Trust Badges Mobile */
    .bshop-trust-badges {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .bshop-trust-badge {
        font-size: 12px !important;
    }

    /* Addon Pricing Mobile */
    .bshop-addon-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .bshop-addon-price {
        font-size: 14px !important;
    }

    /* Website Section Mobile */
    .bshop-website-card {
        padding: 24px !important;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .bshop-header-container {
        padding: 10px 12px !important;
    }

    .bshop-logo-text {
        font-size: 16px !important;
    }

    .bshop-header-icons {
        gap: 6px !important;
    }

    .bshop-header-icon {
        width: 36px !important;
        height: 36px !important;
    }

    .bshop-mobile-toggle {
        width: 40px !important;
        height: 40px !important;
    }

    .bshop-hero-title {
        font-size: 22px !important;
    }

    .bshop-section-title {
        font-size: 20px !important;
    }
}

/* ============================================
   Footer
   ============================================ */
.bshop-footer {
    background: var(--bshop-gray-900);
    color: var(--bshop-gray-400);
    font-family: 'Montserrat', sans-serif;
}

.bshop-footer-main {
    padding: 60px 0 40px;
}

.bshop-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.bshop-footer-col h4 {
    color: var(--bshop-white);
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bshop-footer-brand {
    color: var(--bshop-white);
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 16px 0;
}

.bshop-footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.bshop-footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

.bshop-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bshop-footer-links li {
    margin-bottom: 12px;
}

.bshop-footer-links a {
    color: var(--bshop-gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.bshop-footer-links a:hover {
    color: var(--bshop-white);
}

.bshop-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bshop-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.bshop-footer-contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--bshop-primary);
}

.bshop-footer-contact a {
    color: var(--bshop-gray-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

.bshop-footer-contact a:hover {
    color: var(--bshop-white);
}

.bshop-footer-social {
    display: flex;
    gap: 12px;
}

.bshop-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bshop-gray-800);
    border-radius: 10px;
    color: var(--bshop-gray-400);
    transition: all 0.2s ease;
}

.bshop-footer-social a:hover {
    background: var(--bshop-primary);
    color: var(--bshop-white);
}

.bshop-footer-social svg {
    width: 20px;
    height: 20px;
}

.bshop-footer-bottom {
    border-top: 1px solid var(--bshop-gray-800);
    padding: 24px 0;
}

.bshop-footer-bottom .bshop-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bshop-copyright {
    font-size: 13px;
    margin: 0;
}

.bshop-footer-legal {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
}

.bshop-footer-legal a {
    color: var(--bshop-gray-400);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.bshop-footer-legal a:hover {
    color: var(--bshop-white);
}

@media (max-width: 900px) {
    .bshop-footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .bshop-footer-company {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .bshop-footer-container {
        grid-template-columns: 1fr;
    }

    .bshop-footer-company {
        grid-column: span 1;
    }

    .bshop-footer-bottom .bshop-footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .bshop-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   Products (WooCommerce) Widget
   ============================================ */
.bshop-products {
    padding: 60px 20px;
    background: var(--bshop-white);
    font-family: 'Montserrat', sans-serif;
}

.bshop-products * {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.bshop-products-container {
    max-width: 1100px;
    margin: 0 auto;
}

.bshop-products-header {
    text-align: center;
    margin-bottom: 48px;
}

.bshop-products-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--bshop-gray-900);
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.bshop-products-header p {
    font-size: 16px;
    color: var(--bshop-gray-500);
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.bshop-products-grid {
    display: grid;
    gap: 24px;
}

.bshop-products-grid[data-columns="1"] {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}

.bshop-products-grid[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.bshop-products-grid[data-columns="3"] {
    grid-template-columns: repeat(3, 1fr);
}

.bshop-product-card {
    background: var(--bshop-white);
    border-radius: var(--bshop-radius-lg);
    border: 2px solid var(--bshop-gray-200);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.bshop-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bshop-shadow-lg);
}

.bshop-product-card.highlighted {
    border-color: var(--highlight-color, var(--bshop-primary));
    box-shadow: 0 8px 30px rgba(156, 114, 80, 0.15);
}

.bshop-product-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--highlight-color, var(--bshop-primary));
    color: var(--bshop-white);
    padding: 6px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.bshop-product-sale-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #dc2626;
    color: var(--bshop-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.bshop-product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bshop-gray-100);
}

.bshop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bshop-product-card:hover .bshop-product-image img {
    transform: scale(1.05);
}

.bshop-product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bshop-product-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--bshop-gray-900);
    margin: 0 0 12px 0;
    text-align: center;
}

.bshop-product-price {
    text-align: center;
    margin-bottom: 20px;
}

.bshop-price-regular {
    font-size: 16px;
    color: var(--bshop-gray-400);
    text-decoration: line-through;
    margin-right: 8px;
}

.bshop-price-current {
    font-size: 32px;
    font-weight: 800;
    color: var(--bshop-gray-900);
    line-height: 1;
}

.bshop-price-current .woocommerce-Price-amount {
    font-size: inherit;
    font-weight: inherit;
}

.bshop-price-current .woocommerce-Price-currencySymbol {
    font-size: 0.6em;
    vertical-align: top;
}

.bshop-price-current del {
    font-size: 16px;
    color: var(--bshop-gray-400);
    font-weight: 500;
}

.bshop-price-current ins {
    text-decoration: none;
}

.bshop-product-description {
    flex-grow: 1;
    margin-bottom: 20px;
}

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

.bshop-product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--bshop-gray-100);
    font-size: 14px;
    color: var(--bshop-gray-700);
}

.bshop-product-features li:before {
    content: '';
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2303331e' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
}

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

.bshop-product-button {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--button-color, var(--bshop-accent-green));
    color: var(--bshop-white);
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--bshop-radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
}

.bshop-product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 51, 30, 0.3);
    color: var(--bshop-white);
}

.bshop-product-card.highlighted .bshop-product-button {
    background: var(--highlight-color, var(--bshop-primary));
}

.bshop-product-card.highlighted .bshop-product-button:hover {
    box-shadow: 0 6px 20px rgba(156, 114, 80, 0.35);
}

/* Products Responsive */
@media (max-width: 900px) {
    .bshop-products-grid[data-columns="3"] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bshop-products-grid[data-columns="3"],
    .bshop-products-grid[data-columns="2"] {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .bshop-products-header h2 {
        font-size: 26px;
    }

    .bshop-product-content {
        padding: 20px;
    }

    .bshop-price-current {
        font-size: 28px;
    }
}

/* ============================================
   WooCommerce Checkout - Modern Styling
   ============================================ */

/* Checkout Container */
body.woocommerce-checkout,
body.woocommerce-checkout * {
    font-family: 'Montserrat', sans-serif !important;
}

body.woocommerce-checkout .woocommerce,
body.woocommerce-checkout #content .woocommerce,
body.woocommerce-checkout .site-content .woocommerce {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
}

/* Checkout Columns Layout */
body.woocommerce-checkout .col2-set,
body.woocommerce-checkout form.checkout .col2-set {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
    float: none !important;
    width: 100% !important;
}

body.woocommerce-checkout .col2-set .col-1,
body.woocommerce-checkout .col2-set .col-2 {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Form Sections */
body.woocommerce-checkout .col2-set .col-1,
body.woocommerce-checkout .col2-set .col-2,
body.woocommerce-checkout .woocommerce-checkout-review-order {
    background: #ffffff !important;
    padding: 32px !important;
    border-radius: 20px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
}

/* Section Headers */
body.woocommerce-checkout h3,
body.woocommerce-checkout #order_review_heading {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 24px 0 !important;
    padding: 0 0 16px 0 !important;
    border-bottom: 2px solid #f1f5f9 !important;
}

/* Form Fields */
body.woocommerce-checkout .form-row {
    margin-bottom: 16px !important;
    padding: 0 !important;
}

body.woocommerce-checkout .form-row label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    margin-bottom: 6px !important;
    display: block !important;
}

body.woocommerce-checkout .form-row label .required {
    color: #9c7250 !important;
}

body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row textarea,
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="tel"],
body.woocommerce-checkout textarea {
    width: 100% !important;
    padding: 14px 16px !important;
    font-size: 14px !important;
    color: #0f172a !important;
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
    height: auto !important;
    line-height: 1.4 !important;
}

body.woocommerce-checkout .form-row input.input-text:focus,
body.woocommerce-checkout .form-row textarea:focus,
body.woocommerce-checkout .form-row select:focus,
body.woocommerce-checkout input:focus,
body.woocommerce-checkout textarea:focus {
    border-color: #9c7250 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(156, 114, 80, 0.1) !important;
}

/* Select2 Styling */
body.woocommerce-checkout .select2-container .select2-selection--single,
body.woocommerce-checkout .select2-container--default .select2-selection--single {
    height: auto !important;
    padding: 14px 16px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.4 !important;
    padding: 0 !important;
    color: #0f172a !important;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 12px !important;
    top: 0 !important;
}

/* Order Review Section */
body.woocommerce-checkout #order_review,
body.woocommerce-checkout .woocommerce-checkout-review-order-table {
    width: 100% !important;
}

/* Order Review Table */
body.woocommerce-checkout .woocommerce-checkout-review-order {
    background: #ffffff !important;
    padding: 32px !important;
    border-radius: 20px !important;
    border: 1px solid #e2e8f0 !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 24px !important;
    border: none !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    padding: 16px 0 !important;
    font-size: 14px !important;
    border: none !important;
    border-bottom: 1px solid #f1f5f9 !important;
    text-align: left !important;
    background: transparent !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
    font-weight: 600 !important;
    color: #64748b !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    color: #0f172a !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item td {
    padding: 20px 0 !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
    font-weight: 600 !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-quantity {
    color: #64748b !important;
    font-weight: 400;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    border-bottom: none !important;
    padding-top: 24px !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total .woocommerce-Price-amount {
    font-size: 24px !important;
    color: #03331e !important;
}

/* Payment Methods */
body.woocommerce-checkout #payment {
    background: transparent !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

body.woocommerce-checkout #payment ul.payment_methods {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 24px 0 !important;
    border: none !important;
}

body.woocommerce-checkout #payment ul.payment_methods li {
    margin-bottom: 12px !important;
    padding: 0 !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    transition: all 0.2s ease !important;
    list-style: none !important;
}

body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method {
    background: #ffffff !important;
}

body.woocommerce-checkout #payment ul.payment_methods li:hover {
    border-color: #c9a882 !important;
}

body.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
    margin-right: 12px !important;
}

body.woocommerce-checkout #payment ul.payment_methods li label {
    display: flex !important;
    align-items: center !important;
    padding: 16px 20px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin: 0 !important;
}

body.woocommerce-checkout #payment ul.payment_methods li label img {
    max-height: 28px !important;
    margin-left: auto !important;
}

body.woocommerce-checkout #payment div.payment_box {
    background: #f8fafc !important;
    padding: 20px !important;
    margin: 0 !important;
    border-radius: 0 0 10px 10px !important;
    font-size: 13px !important;
    color: #475569 !important;
    line-height: 1.6 !important;
}

body.woocommerce-checkout #payment div.payment_box::before {
    display: none !important;
}

/* Place Order Button */
body.woocommerce-checkout #place_order,
body.woocommerce-checkout button#place_order,
body.woocommerce-checkout input#place_order {
    width: 100% !important;
    padding: 18px 32px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #9c7250 0%, #03331e 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    margin-top: 16px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout button#place_order:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(156, 114, 80, 0.35) !important;
}

/* Privacy Policy */
.woocommerce-checkout .woocommerce-privacy-policy-text {
    font-size: 12px;
    color: var(--bshop-gray-500);
    margin-bottom: 16px;
}

.woocommerce-checkout .woocommerce-privacy-policy-text a {
    color: var(--bshop-primary);
}

/* Terms Checkbox */
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 16px;
}

.woocommerce-checkout .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--bshop-gray-600);
    cursor: pointer;
}

.woocommerce-checkout .woocommerce-form__label-for-checkbox input[type="checkbox"] {
    margin-top: 3px;
}

.woocommerce-checkout .woocommerce-form__label-for-checkbox a {
    color: var(--bshop-primary);
}

/* ============================================
   Checkout Upsells / Cross-sells
   ============================================ */
.bshop-checkout-upsells {
    background: var(--bshop-white);
    padding: 24px;
    border-radius: var(--bshop-radius-lg);
    border: 2px solid var(--bshop-primary-light);
    margin-bottom: 32px;
}

.bshop-checkout-upsells h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--bshop-gray-900);
    margin: 0 0 16px 0;
    padding: 0;
    border: none;
}

.bshop-upsell-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bshop-upsell-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bshop-gray-50);
    border-radius: var(--bshop-radius);
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.bshop-upsell-item:hover {
    border-color: var(--bshop-gray-200);
}

.bshop-upsell-item.in-cart {
    background: rgba(156, 114, 80, 0.08);
    border-color: var(--bshop-primary);
}

.bshop-upsell-item.loading {
    opacity: 0.6;
    pointer-events: none;
}

.bshop-upsell-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--bshop-primary);
}

.bshop-upsell-info {
    flex: 1;
}

.bshop-upsell-info label {
    display: block;
    cursor: pointer;
}

.bshop-upsell-info strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--bshop-gray-900);
    display: block;
    margin-bottom: 4px;
}

.bshop-upsell-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--bshop-gray-500);
    display: block;
}

.bshop-upsell-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--bshop-primary);
    white-space: nowrap;
}

/* Order Bump */
.bshop-order-bump {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(156, 114, 80, 0.1) 0%, rgba(3, 51, 30, 0.05) 100%);
    border: 2px dashed var(--bshop-primary);
    border-radius: var(--bshop-radius);
    margin-bottom: 24px;
    transition: all 0.2s ease;
}

.bshop-order-bump.loading {
    opacity: 0.6;
    pointer-events: none;
}

.bshop-order-bump.added {
    background: rgba(156, 114, 80, 0.15);
    border-style: solid;
}

.bshop-bump-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: var(--bshop-primary);
    margin-top: 2px;
}

.bshop-bump-content {
    flex: 1;
}

.bshop-bump-content label {
    display: block;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--bshop-gray-800);
    line-height: 1.5;
}

.bshop-bump-content label strong {
    color: var(--bshop-accent-green);
    font-weight: 700;
}

.bshop-bump-price {
    font-weight: 700;
    color: var(--bshop-primary);
}

.bshop-bump-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--bshop-gray-500);
    margin: 8px 0 0 0;
}

/* Checkout Responsive */
@media (max-width: 900px) {
    .woocommerce-checkout .col2-set {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .woocommerce-checkout .col2-set .col-1,
    .woocommerce-checkout .col2-set .col-2,
    .woocommerce-checkout-review-order {
        padding: 20px;
    }

    .bshop-upsell-item {
        flex-wrap: wrap;
    }

    .bshop-upsell-price {
        width: 100%;
        text-align: right;
        margin-top: 8px;
    }
}

/* ============================================
   WooCommerce Cart Page
   ============================================ */
.woocommerce-cart .woocommerce {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
}

.woocommerce-cart .shop_table {
    border: none;
    border-radius: var(--bshop-radius-lg);
    overflow: hidden;
    box-shadow: var(--bshop-shadow);
}

.woocommerce-cart .shop_table th,
.woocommerce-cart .shop_table td {
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid var(--bshop-gray-100);
}

.woocommerce-cart .shop_table th {
    background: var(--bshop-gray-50);
    font-weight: 600;
    color: var(--bshop-gray-600);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce-cart .product-name a {
    color: var(--bshop-gray-900);
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-cart .product-name a:hover {
    color: var(--bshop-primary);
}

.woocommerce-cart .cart_totals {
    background: var(--bshop-white);
    padding: 32px;
    border-radius: var(--bshop-radius-lg);
    border: 1px solid var(--bshop-gray-200);
}

.woocommerce-cart .cart_totals h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 24px 0;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    width: 100%;
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    background: var(--bshop-gradient);
    color: var(--bshop-white);
    border: none;
    border-radius: var(--bshop-radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(156, 114, 80, 0.35);
}

/* ============================================
   WooCommerce Thank You Page
   ============================================ */
.woocommerce-order-received .woocommerce {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
}

.woocommerce-order-received .woocommerce-thankyou-order-received {
    background: rgba(3, 51, 30, 0.08);
    padding: 24px;
    border-radius: var(--bshop-radius);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--bshop-accent-green);
    margin-bottom: 32px;
}

.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .woocommerce-customer-details {
    background: var(--bshop-white);
    padding: 32px;
    border-radius: var(--bshop-radius-lg);
    border: 1px solid var(--bshop-gray-200);
    margin-bottom: 24px;
}

.woocommerce-order-received h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

/* ============================================
   Elementor & Theme Mobile Overrides
   IMPORTANT: These override default Elementor/theme styles
   ============================================ */

/* Override Elementor hamburger menu colors */
.elementor-menu-toggle,
.elementor-menu-toggle:hover,
.elementor-menu-toggle:focus,
.elementor-menu-toggle.elementor-active,
[class*="elementor"] .bshop-mobile-toggle,
[class*="elementor"] .bshop-mobile-toggle:hover {
    background: var(--bshop-accent-green) !important;
    border: none !important;
    color: #ffffff !important;
}

/* Override any pink/magenta colors from Elementor */
.elementor-menu-toggle svg,
.elementor-menu-toggle i,
.elementor-menu-toggle__icon {
    color: #ffffff !important;
    fill: #ffffff !important;
}

/* Ensure our header icons are always visible on mobile */
@media (max-width: 768px) {
    .elementor-widget-container .bshop-header-icons,
    .elementor .bshop-header-icons,
    body .bshop-header-icons {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        order: 2 !important;
    }

    /* Hide icons if they somehow ended up in nav */
    .bshop-header-nav .bshop-header-icons {
        display: none !important;
    }

    /* Force hamburger styling */
    body .bshop-mobile-toggle {
        display: flex !important;
        background: var(--bshop-accent-green) !important;
        border-radius: 8px !important;
    }

    body .bshop-mobile-toggle span {
        background: #ffffff !important;
    }

    body .bshop-mobile-toggle:hover,
    body .bshop-mobile-toggle.active {
        background: var(--bshop-primary) !important;
    }
}

/* Full width sections on mobile */
@media (max-width: 768px) {
    .elementor-section,
    .elementor-container,
    .elementor-column-wrap,
    .elementor-widget-wrap {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .elementor-section.elementor-section-boxed > .elementor-container {
        max-width: 100% !important;
    }

    /* Ensure proper padding on our sections */
    .bshop-hero,
    .bshop-features,
    .bshop-pricing,
    .bshop-demo,
    .bshop-faq,
    .bshop-products {
        width: 100% !important;
        max-width: 100% !important;
    }
}
