/* ================================================================
   BENTO GRID UI - LEATHER GHOR MODERN DESIGN SYSTEM
   ================================================================ */

:root {
    --bento-radius: 22px;
    --bento-radius-sm: 14px;
    --bento-bg: #f7f6f3;
    --bento-card-bg: #ffffff;
    --bento-dark: #151311;
    --bento-dark-surface: #1e1b18;
    --bento-gold: #d4a574;
    --bento-gold-light: #f5e8d8;
    --bento-gold-gradient: linear-gradient(135deg, #dfb485 0%, #b88651 100%);
    --bento-dark-gradient: linear-gradient(145deg, #1f1b17 0%, #110f0d 100%);
    --bento-glass-border: rgba(255, 255, 255, 0.08);
    --bento-border-light: rgba(0, 0, 0, 0.06);
    --bento-shadow: 0 10px 30px -10px rgba(28, 20, 14, 0.06), 0 2px 6px -1px rgba(28, 20, 14, 0.03);
    --bento-shadow-hover: 0 22px 45px -12px rgba(28, 20, 14, 0.14), 0 6px 14px -3px rgba(28, 20, 14, 0.07);
    --bento-font-heading: 'Poppins', -apple-system, sans-serif;
}

/* ── Global Bento Section Styling ── */
.bento-section {
    padding: 70px 0;
    background-color: var(--bento-bg);
}

.bento-section-title-wrap {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.bento-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #936538;
    background: #fbf5ee;
    border: 1px solid #ebd8c2;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.bento-section-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #1a1715;
    margin-bottom: 10px;
    line-height: 1.25;
}

.bento-section-desc {
    font-size: 15px;
    color: #6b635b;
    margin: 0;
}

/* ── Bento Base Card ── */
.bento-card {
    background: var(--bento-card-bg);
    border-radius: var(--bento-radius);
    border: 1px solid var(--bento-border-light);
    box-shadow: var(--bento-shadow);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bento-shadow-hover);
    border-color: rgba(212, 165, 116, 0.35);
}

/* ── 1. HERO BENTO ECOSYSTEM ── */
.hero-bento-wrapper {
    padding: 30px 0 50px;
    background: linear-gradient(180deg, #ffffff 0%, var(--bento-bg) 100%);
}

.bento-hero-main {
    background: var(--bento-dark-gradient);
    color: #ffffff;
    border: 1px solid rgba(212, 165, 116, 0.2);
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 42px;
    position: relative;
}

.bento-hero-main::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.25) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.bento-hero-top {
    position: relative;
    z-index: 2;
}

.bento-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.35);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #e2c19c;
    margin-bottom: 18px;
}

.bento-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #28a745;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    animation: bentoPulse 1.8s infinite;
}

@keyframes bentoPulse {
    0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(40, 167, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

.bento-hero-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.8px;
    color: #ffffff;
    margin-bottom: 16px;
}

.bento-hero-title span {
    background: var(--bento-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bento-hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.bento-hero-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.bento-spec-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: #e5e0dc;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bento-spec-chip i {
    color: var(--bento-gold);
}

.bento-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.bento-btn-primary {
    background: var(--bento-gold-gradient);
    color: #171310 !important;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 26px;
    border-radius: 30px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 22px rgba(212, 165, 116, 0.35);
    transition: all 0.3s ease;
}

.bento-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212, 165, 116, 0.45);
    color: #000 !important;
}

.bento-btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 22px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.bento-btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
}

.bento-hero-visual {
    position: absolute;
    right: 30px;
    bottom: 25px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.bento-hero-visual img {
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
    transition: transform 0.6s ease;
}

.bento-hero-main:hover .bento-hero-visual img {
    transform: scale(1.06) rotate(-2deg);
}

.bento-floating-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-top: -15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ── Flash Deal Bento Box ── */
.bento-card-flash {
    background: linear-gradient(135deg, #231b14 0%, #15120f 100%);
    color: #fff;
    padding: 26px;
    border: 1px solid rgba(212, 165, 116, 0.25);
}

.bento-flash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.bento-badge-flash {
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.5px;
}

.bento-timer-boxes {
    display: flex;
    gap: 6px;
}

.bento-timer-unit {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 4px 8px;
    text-align: center;
    min-width: 36px;
}

.bento-timer-num {
    font-weight: 800;
    font-size: 14px;
    line-height: 1.1;
    color: var(--bento-gold);
}

.bento-timer-lbl {
    font-size: 9px;
    color: #aaa;
    text-transform: uppercase;
}

.bento-flash-content {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.bento-flash-thumb {
    width: 86px;
    height: 86px;
    border-radius: 12px;
    object-fit: cover;
    background: #2a231d;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-flash-info h5 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.bento-price-tag {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.bento-curr-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--bento-gold);
}

.bento-old-price {
    font-size: 13px;
    color: #888;
    text-decoration: line-through;
}

/* ── Trust & Artisan Bento Box ── */
.bento-card-artisan {
    background: #ffffff;
    padding: 24px;
}

.bento-artisan-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--bento-gold-light);
    color: #a07038;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.bento-card-artisan h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1715;
    margin-bottom: 6px;
}

.bento-card-artisan p {
    font-size: 13px;
    color: #6c645c;
    margin-bottom: 12px;
    line-height: 1.5;
}

.bento-stat-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0eae4;
}

.bento-stat-num {
    font-size: 20px;
    font-weight: 800;
    color: #2e2620;
}

.bento-stat-text {
    font-size: 11px;
    color: #837970;
    line-height: 1.3;
}

/* ── Delivery & Payment Bento Row ── */
.bento-card-compact {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.bento-compact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.bento-compact-info h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #1a1715;
}

.bento-compact-info p {
    font-size: 12px;
    color: #726b64;
    margin: 0;
}

@media (max-width: 576px) {
    .bento-card-compact {
        padding: 14px 12px;
        gap: 10px;
    }
    .bento-compact-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    .bento-compact-info h5 {
        font-size: 13px;
    }
    .bento-compact-info p {
        font-size: 11px;
    }
}

/* ── 2. BENTO CATEGORY GRID ── */
.bento-cat-card {
    position: relative;
    border-radius: var(--bento-radius);
    overflow: hidden;
    cursor: pointer;
    min-height: 240px;
    border: 1px solid var(--bento-border-light);
    box-shadow: var(--bento-shadow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #ffffff;
    text-decoration: none !important;
}

.bento-cat-card img.bento-cat-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.bento-cat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 13, 10, 0.05) 0%, rgba(16, 13, 10, 0.85) 100%);
    z-index: 2;
    transition: background 0.3s;
}

.bento-cat-content {
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease;
}

.bento-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bento-shadow-hover);
}

.bento-cat-card:hover img.bento-cat-bg {
    transform: scale(1.08);
}

.bento-cat-card:hover .bento-cat-overlay {
    background: linear-gradient(180deg, rgba(16, 13, 10, 0.15) 0%, rgba(16, 13, 10, 0.92) 100%);
}

.bento-cat-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 8px;
    color: #f7eadc;
}

.bento-cat-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.bento-cat-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--bento-gold);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.bento-cat-card:hover .bento-cat-link {
    gap: 8px;
    color: #fff;
}

.bento-cat-tall {
    min-height: 504px;
}

/* ── 3. BENTO PRODUCTS SECTION WITH TABS ── */
.bento-filter-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 35px;
}

.bento-tab-btn {
    background: #ffffff;
    border: 1px solid #e5dfd8;
    color: #4b443e;
    font-weight: 600;
    font-size: 13px;
    padding: 9px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.bento-tab-btn:hover {
    border-color: var(--bento-gold);
    color: #171310;
}

.bento-tab-btn.active {
    background: #171310;
    color: #ffffff;
    border-color: #171310;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* ── Bento Spotlight Product Card ── */
.bento-spotlight-card {
    background: #ffffff;
    border-radius: var(--bento-radius);
    padding: 30px;
    border: 1px solid var(--bento-border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.bento-spotlight-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #171310;
    color: var(--bento-gold);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.bento-spotlight-img-wrap {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0 20px;
}

.bento-spotlight-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.bento-spotlight-card:hover .bento-spotlight-img-wrap img {
    transform: scale(1.06);
}

.bento-spotlight-body h4 {
    font-size: 20px;
    font-weight: 800;
    color: #171310;
    margin-bottom: 6px;
}

.bento-spotlight-body p {
    font-size: 13px;
    color: #726b64;
    margin-bottom: 14px;
    line-height: 1.5;
}

/* ── 4. BENTO VALUE & PROMISE GRID ── */
.bento-promise-card {
    background: #ffffff;
    border-radius: var(--bento-radius);
    padding: 28px 24px;
    border: 1px solid var(--bento-border-light);
    transition: all 0.3s ease;
    height: 100%;
}

.bento-promise-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bento-shadow-hover);
    border-color: rgba(212, 165, 116, 0.4);
}

.bento-promise-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f7ede1 0%, #faefe2 100%);
    color: #a06e37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.15);
}

.bento-promise-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #171310;
    margin-bottom: 6px;
}

.bento-promise-card p {
    font-size: 13px;
    color: #6e6760;
    margin: 0;
    line-height: 1.5;
}

/* ── 5. BENTO REVIEWS & FEEDBACK ── */
.bento-reviews-section {
    background: #151311;
    color: #ffffff;
    padding: 80px 0;
}

.bento-reviews-section .bento-section-title {
    color: #ffffff;
}

.bento-reviews-section .bento-section-desc {
    color: #9f968f;
}

.bento-rating-stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--bento-radius);
    padding: 34px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bento-rating-big {
    font-size: 64px;
    font-weight: 900;
    background: var(--bento-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.bento-rating-stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 12px;
}

.bento-testimonial-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--bento-radius);
    padding: 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.bento-testimonial-box:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 165, 116, 0.3);
    transform: translateY(-4px);
}

.bento-quote-text {
    font-size: 14px;
    line-height: 1.6;
    color: #d1c8c0;
    margin-bottom: 20px;
    font-style: italic;
}

.bento-client-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bento-client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bento-gold);
}

.bento-client-info h6 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.bento-client-info small {
    color: #28a745;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ── 6. BENTO VIP NEWSLETTER ── */
.bento-newsletter-card {
    background: linear-gradient(135deg, #2b2118 0%, #171310 100%);
    border-radius: 28px;
    padding: 48px;
    border: 1px solid rgba(212, 165, 116, 0.25);
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.bento-newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 520px;
    margin-top: 15px;
}

.bento-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 12px 22px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s;
}

.bento-input:focus {
    border-color: var(--bento-gold);
    background: rgba(255, 255, 255, 0.12);
}

/* ── Responsive adjustments ── */
@media (max-width: 991px) {
    .bento-hero-main {
        min-height: auto;
        padding: 30px 24px;
    }
    .bento-hero-title {
        font-size: 28px;
    }
    .bento-hero-visual {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: 220px;
        margin: 20px auto 0;
    }
    .bento-cat-tall {
        min-height: 260px;
    }
    .bento-newsletter-card {
        padding: 32px 20px;
    }
    .bento-newsletter-form {
        flex-direction: column;
    }
}

/* ================================================================
   MARQUEE TOPBAR & UNIFIED SINGLE-LINE NAVBAR
   ================================================================ */

/* ── Topbar Marquee Ticker ── */
.top-bar-marquee {
    background: #151311;
    color: #ffffff;
    height: 38px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
}

.top-bar-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
    will-change: transform;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-items {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
    white-space: nowrap;
}

.marquee-items span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #f1ede8;
    font-weight: 500;
}

.marquee-items span i {
    font-size: 13px;
}

/* ── Unified Navbar (All in One Single Line) ── */
.unified-navbar {
    background: #ffffff !important;
    padding: 10px 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1020 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    border-bottom: 1px solid #eee7df;
    transition: all 0.3s ease;
}

.unified-nav-row {
    gap: 16px;
}

.unified-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.unified-logo img {
    max-height: 64px;
    width: auto;
    object-fit: contain;
    transition: transform 0.25s;
}

.unified-logo:hover img {
    transform: scale(1.03);
}

.unified-toggler {
    background: #fbf7f3;
    border: 1px solid #ebd9c5;
    color: #2c2520;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}

.unified-toggler:hover {
    background: #f3e6d5;
    color: #1a1715;
}

/* Nav links in line */
.unified-nav-links {
    flex-shrink: 0;
}

.unified-nav-links ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.unified-nav-links .nav-link {
    color: #2c2621 !important;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: capitalize !important;
    letter-spacing: normal !important;
    position: relative;
}

.unified-nav-links .nav-link::after {
    display: none !important;
}

.unified-nav-links .nav-link:hover,
.unified-nav-links .nav-item.active .nav-link {
    color: #a5743b !important;
    background: #fcf6ef;
}

.unified-nav-links .nav-sale-link {
    color: #dc3545 !important;
    font-weight: 700;
}

.unified-nav-links .nav-sale-link:hover {
    color: #b02a37 !important;
    background: #fff0f1;
}

.nav-arrow {
    font-size: 10px;
    opacity: 0.6;
    margin-left: 2px;
    transition: transform 0.2s;
}

.unified-nav-links .dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.unified-nav-links .dropdown-menu {
    border-radius: 12px;
    border: 1px solid #ebd9c5;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    padding: 8px;
    margin-top: 8px;
    min-width: 190px;
}

.unified-nav-links .dropdown-item {
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    color: #332d27;
    transition: all 0.15s;
}

.unified-nav-links .dropdown-item:hover {
    background: #fbf5ee;
    color: #a5743b;
    padding-left: 18px;
}

/* Unified Search Bar (in the same row) */
.unified-search-wrap {
    min-width: 180px;
    max-width: 420px;
}

.unified-search-form {
    position: relative;
    width: 100%;
    margin: 0;
}

.unified-search-form input {
    width: 100%;
    background: #f8f6f3;
    border: 1.5px solid #e7ded5;
    border-radius: 30px;
    padding: 9px 40px 9px 36px;
    font-size: 13px;
    color: #2b2520;
    outline: none;
    transition: all 0.25s ease;
}

.unified-search-form input:focus {
    background: #ffffff;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.search-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #9c9187;
    pointer-events: none;
}

.unified-search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: var(--bento-gold);
    color: #ffffff;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.unified-search-form button:hover {
    background: #b58550;
    transform: translateY(-50%) scale(1.08);
}

/* Right Actions (Cart, Hotline) */
.unified-nav-right {
    flex-shrink: 0;
    gap: 12px;
}

.unified-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f6f3;
    border: 1px solid #e7ded5;
    color: #332c25;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.2s;
}

.unified-icon-btn:hover {
    background: #f3e9dc;
    color: #a5743b;
    transform: translateY(-2px);
}

.unified-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fcf9f5;
    border: 1.5px solid #ebd9c5;
    padding: 6px 14px 6px 8px;
    border-radius: 30px;
    text-decoration: none !important;
    color: #2b2520 !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.unified-cart-btn:hover {
    background: #f6ecdf;
    border-color: #d4a574;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(212, 165, 116, 0.25);
}

.cart-icon-box {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #171310;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.cart-icon-box .badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: #dc3545;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 10px;
    padding: 2px 5px;
    min-width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
}

.cart-label {
    font-size: 10px;
    color: #8c8278;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
}

.cart-total-badge {
    font-size: 13px;
    font-weight: 700;
    color: #171310;
    line-height: 1.2;
}

/* Mobile Drawer */
.unified-mobile-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 290px;
    height: 100vh;
    background: #ffffff;
    z-index: 99999;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.18);
    transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.unified-mobile-drawer.active {
    left: 0;
}

.unified-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.unified-drawer-backdrop.active {
    display: block;
    opacity: 1;
}

.unified-drawer-header {
    padding: 18px 20px;
    border-bottom: 1px solid #f0eae4;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.unified-drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
}

.unified-drawer-body {
    padding: 15px 0;
}

.unified-drawer-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.unified-drawer-body .drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: #27221e;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #fbf7f4;
}

.unified-drawer-body .drawer-link:hover {
    background: #fbf5ee;
    color: #a5743b;
}

@media (max-width: 991px) {
    .unified-navbar {
        padding: 8px 0 !important;
    }
    .unified-nav-row {
        gap: 8px;
    }
    .unified-search-wrap {
        max-width: 100%;
        min-width: 0;
        margin: 0 6px !important;
    }
    .unified-search-form input {
        font-size: 12px;
        padding: 7px 32px 7px 30px;
    }
    .search-input-icon {
        left: 10px;
        font-size: 11px;
    }
    .unified-search-form button {
        width: 24px;
        height: 24px;
        font-size: 10px;
        right: 4px;
    }
    .unified-logo img {
        max-height: 48px;
    }
    .unified-theme-toggle-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    .unified-cart-btn {
        padding: 5px 10px 5px 6px;
    }
    .cart-icon-box {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .unified-navbar {
        padding: 6px 0 !important;
    }
    .unified-nav-row {
        gap: 6px;
    }
    .unified-toggler {
        width: 34px;
        height: 34px;
        font-size: 14px;
        margin-right: 4px !important;
    }
    .unified-logo img {
        max-height: 42px;
    }
    .unified-theme-toggle-btn {
        padding: 6px 8px;
    }
    .unified-theme-toggle-btn .theme-toggle-label {
        display: none !important;
    }
    .unified-cart-btn {
        padding: 4px;
        border-radius: 50%;
        background: transparent;
        border: none;
    }
    .unified-cart-btn .cart-text-box {
        display: none !important;
    }
    .cart-icon-box {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    .bento-section {
        padding: 40px 0;
    }
    .hero-bento-wrapper {
        padding: 15px 0 30px;
    }
    .bento-hero-title {
        font-size: 24px !important;
        line-height: 1.25;
    }
    .bento-hero-specs {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    .bento-spec-chip {
        font-size: 11px;
        padding: 4px 10px;
    }
    .bento-hero-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .bento-btn-primary, .bento-btn-glass {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .bento-tab-btn {
        padding: 7px 14px;
        font-size: 12px;
    }
    .bento-tabs-nav {
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
    }
    .bento-prod-btn {
        font-size: 11px;
        padding: 6px 10px;
        white-space: nowrap;
    }
}

/* ================================================================
   DARK MODE ARCHITECTURE & LUXURY THEME
   ================================================================ */

/* ── Dark Mode CSS Variables ── */
[data-theme="dark"] {
    --bento-bg: #100d0b;
    --bento-card-bg: #171310;
    --bento-dark: #080706;
    --bento-dark-surface: #120f0d;
    --bento-gold: #dfb485;
    --bento-gold-light: #2c2217;
    --bento-gold-gradient: linear-gradient(135deg, #e5b888 0%, #a6723b 100%);
    --bento-dark-gradient: linear-gradient(145deg, #181411 0%, #0d0b09 100%);
    --bento-glass-border: rgba(255, 255, 255, 0.1);
    --bento-border-light: rgba(226, 179, 128, 0.14);
    --bento-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7), 0 2px 6px -1px rgba(0, 0, 0, 0.5);
    --bento-shadow-hover: 0 22px 45px -12px rgba(0, 0, 0, 0.9), 0 6px 14px -3px rgba(0, 0, 0, 0.6);
    --bg-white: #171310;
    --text-dark: #f0e9e1;
    --text-light: #a99d91;
    --border-color: rgba(226, 179, 128, 0.15);
}

/* ── Global Dark Mode Surface ── */
[data-theme="dark"] body {
    background-color: #100d0b !important;
    color: #ded6cd !important;
}

[data-theme="dark"] .hero-bento-wrapper {
    background: linear-gradient(180deg, #16120e 0%, #100d0b 100%);
}

[data-theme="dark"] .bento-section {
    background-color: #100d0b;
}

[data-theme="dark"] .bento-section-title {
    color: #f7f3ee;
}

[data-theme="dark"] .bento-section-desc {
    color: #9c9187;
}

[data-theme="dark"] .bento-pill-tag {
    background: #231b14;
    border-color: #4a3826;
    color: #dfb485;
}

/* ── Bento Cards in Dark Mode ── */
[data-theme="dark"] .bento-card {
    background: #171310;
    border-color: rgba(226, 179, 128, 0.16);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
}

[data-theme="dark"] .bento-card:hover {
    box-shadow: 0 22px 45px -12px rgba(0, 0, 0, 0.9);
    border-color: rgba(226, 179, 128, 0.35);
}

[data-theme="dark"] .bento-artisan-trust {
    background: linear-gradient(145deg, #1e1914 0%, #13100d 100%);
    border-color: rgba(226, 179, 128, 0.2);
}

[data-theme="dark"] .bento-artisan-trust h4 {
    color: #f5eee6;
}

[data-theme="dark"] .bento-artisan-trust p {
    color: #b0a59a;
}

[data-theme="dark"] .bento-stat-counter {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(226, 179, 128, 0.2);
}

[data-theme="dark"] .bento-stat-text {
    color: #9c9187;
}

/* ── Compact Trust Badges in Dark Mode ── */
[data-theme="dark"] .bento-card-compact {
    background: #171310;
    border-color: rgba(226, 179, 128, 0.16);
}

[data-theme="dark"] .bento-compact-info h5 {
    color: #f5eee6;
}

[data-theme="dark"] .bento-compact-info p {
    color: #9c9187;
}

/* ── Tab Buttons in Dark Mode ── */
[data-theme="dark"] .bento-tab-btn {
    background: #1c1713;
    border-color: rgba(226, 179, 128, 0.18);
    color: #cfc4b8;
}

[data-theme="dark"] .bento-tab-btn:hover {
    background: #27201a;
    color: #ffffff;
    border-color: rgba(226, 179, 128, 0.35);
}

[data-theme="dark"] .bento-tab-btn.active {
    background: var(--bento-gold-gradient);
    color: #171310;
    border-color: transparent;
    box-shadow: 0 4px 18px rgba(223, 180, 133, 0.35);
}

/* ── Product Cards in Dark Mode ── */
[data-theme="dark"] .bento-prod-card {
    background: #171310;
    border-color: rgba(226, 179, 128, 0.16);
}

[data-theme="dark"] .bento-prod-card:hover {
    border-color: rgba(226, 179, 128, 0.4);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.85);
}

[data-theme="dark"] .bento-prod-thumb-wrap {
    background: #1d1814;
}

[data-theme="dark"] .bento-prod-title a {
    color: #f5eee6;
}

[data-theme="dark"] .bento-prod-title a:hover {
    color: #dfb485;
}

[data-theme="dark"] .bento-prod-orig-price {
    color: #8c7f73;
}

[data-theme="dark"] .bento-cat-tag {
    color: #a39587;
}

[data-theme="dark"] .bento-prod-action-btn {
    background: #251e18;
    border-color: rgba(226, 179, 128, 0.25);
    color: #e5ddd5;
}

[data-theme="dark"] .bento-prod-action-btn:hover {
    background: var(--bento-gold);
    color: #171310;
}

/* ── Promise Cards in Dark Mode ── */
[data-theme="dark"] .bento-promise-card {
    background: #171310;
    border-color: rgba(226, 179, 128, 0.16);
}

[data-theme="dark"] .bento-promise-card h4 {
    color: #f5eee6;
}

[data-theme="dark"] .bento-promise-card p {
    color: #a39587;
}

[data-theme="dark"] .bento-promise-icon {
    background: #251e18;
    color: #dfb485;
}

/* ── Deal Card in Dark Mode ── */
[data-theme="dark"] .bento-deal-card {
    background: #171310;
    border-color: rgba(226, 179, 128, 0.2);
}

[data-theme="dark"] .bento-deal-info h3 {
    color: #f5eee6;
}

[data-theme="dark"] .bento-deal-info p {
    color: #a39587;
}

[data-theme="dark"] .bento-time-digit {
    background: #221b16;
    color: #dfb485;
    border: 1px solid rgba(226, 179, 128, 0.25);
}

/* ── Spotlight Card in Dark Mode ── */
[data-theme="dark"] .bento-spotlight-card {
    background: #171310;
    border-color: rgba(226, 179, 128, 0.2);
}

[data-theme="dark"] .bento-spotlight-info h3 {
    color: #f5eee6;
}

[data-theme="dark"] .bento-spotlight-info p {
    color: #a39587;
}

/* ── Navbar in Dark Mode ── */
[data-theme="dark"] .unified-navbar {
    background: #15120f !important;
    border-bottom: 1px solid rgba(226, 179, 128, 0.15) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .unified-logo img {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(226, 179, 128, 0.28) !important;
    border-radius: 8px;
    padding: 3px 8px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

[data-theme="dark"] .unified-nav-links .nav-link {
    color: #e5ddd5 !important;
}

[data-theme="dark"] .unified-nav-links .nav-link:hover,
[data-theme="dark"] .unified-nav-links .nav-item.active .nav-link {
    color: #e5b888 !important;
    background: #231c16;
}

[data-theme="dark"] .unified-nav-links .dropdown-menu {
    background: #1c1713;
    border: 1px solid rgba(226, 179, 128, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

[data-theme="dark"] .unified-nav-links .dropdown-item {
    color: #e2dbd3;
}

[data-theme="dark"] .unified-nav-links .dropdown-item:hover {
    background: #2a221a;
    color: #e5b888;
}

[data-theme="dark"] .unified-search-form input {
    background: #1f1a16;
    border-color: rgba(226, 179, 128, 0.2);
    color: #f5eee6;
}

[data-theme="dark"] .unified-search-form input:focus {
    background: #25201b;
    border-color: #dfb485;
    box-shadow: 0 0 0 3px rgba(223, 180, 133, 0.25);
}

[data-theme="dark"] .unified-toggler {
    background: #1f1a16;
    border-color: rgba(226, 179, 128, 0.2);
    color: #e5ddd5;
}

[data-theme="dark"] .unified-icon-btn {
    background: #1f1a16;
    border-color: rgba(226, 179, 128, 0.2);
    color: #e5ddd5;
}

[data-theme="dark"] .unified-icon-btn:hover {
    background: #2a221a;
    color: #dfb485;
}

[data-theme="dark"] .unified-cart-btn {
    background: #1f1a16;
    border-color: rgba(226, 179, 128, 0.25);
    color: #f5eee6 !important;
}

[data-theme="dark"] .unified-cart-btn:hover {
    background: #2a221a;
    border-color: #dfb485;
    box-shadow: 0 4px 14px rgba(223, 180, 133, 0.25);
}

[data-theme="dark"] .cart-total-badge {
    color: #dfb485;
}

[data-theme="dark"] .cart-label {
    color: #a69b91;
}

/* ── Theme Toggle Button ── */
.unified-theme-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fbf7f3;
    border: 1.5px solid #ebd9c5;
    border-radius: 30px;
    padding: 7px 15px;
    font-size: 13px;
    font-weight: 600;
    color: #3e332a;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    line-height: 1;
}

.unified-theme-toggle-btn:hover {
    background: #f3e5d3;
    border-color: #d4a574;
    color: #1a1715;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(212, 165, 116, 0.25);
}

.unified-theme-toggle-btn:active {
    transform: translateY(0);
}

.theme-icon-sun {
    display: none;
    color: #ffc107;
    font-size: 14px;
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.6));
}

.theme-icon-moon {
    display: inline-block;
    color: #6a5342;
    font-size: 14px;
}

[data-theme="dark"] .unified-theme-toggle-btn {
    background: #221c17;
    border-color: rgba(226, 179, 128, 0.35);
    color: #f0e7dd;
}

[data-theme="dark"] .unified-theme-toggle-btn:hover {
    background: #2e251e;
    border-color: #e5b888;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(229, 184, 136, 0.25);
}

[data-theme="dark"] .theme-icon-moon {
    display: none;
}

[data-theme="dark"] .theme-icon-sun {
    display: inline-block;
}

/* ── Mobile Drawer in Dark Mode ── */
[data-theme="dark"] .unified-mobile-drawer {
    background: #15120f;
    border-right: 1px solid rgba(226, 179, 128, 0.18);
    color: #e5ddd5;
}

[data-theme="dark"] .unified-drawer-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .unified-drawer-close {
    color: #b0a498;
}

[data-theme="dark"] .unified-drawer-body .drawer-link {
    color: #ded6cd;
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .unified-drawer-body .drawer-link:hover {
    background: #221c17;
    color: #dfb485;
}

/* ── General Shop, Cards & Form Controls in Dark Mode ── */
[data-theme="dark"] .card,
[data-theme="dark"] .modal-content,
[data-theme="dark"] .product-details-content,
[data-theme="dark"] .shop-sidebar,
[data-theme="dark"] .cart-table,
[data-theme="dark"] .checkout-form,
[data-theme="dark"] .product-item {
    background-color: #171310 !important;
    border-color: rgba(226, 179, 128, 0.16) !important;
    color: #ded6cd !important;
}

[data-theme="dark"] .modal-header,
[data-theme="dark"] .modal-footer {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .form-control,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
    background-color: #201a16 !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    color: #f5eee6 !important;
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] select:focus,
[data-theme="dark"] textarea:focus {
    border-color: #dfb485 !important;
    box-shadow: 0 0 0 3px rgba(223, 180, 133, 0.25) !important;
    background-color: #25201b !important;
}

[data-theme="dark"] .page-item .page-link {
    background-color: #1c1713 !important;
    border-color: rgba(226, 179, 128, 0.2) !important;
    color: #ded6cd !important;
}

[data-theme="dark"] .page-item.active .page-link {
    background-color: #dfb485 !important;
    border-color: #dfb485 !important;
    color: #171310 !important;
}

[data-theme="dark"] .size-option {
    border-color: rgba(226, 179, 128, 0.25) !important;
    background: #201a16 !important;
    color: #f0e7dd !important;
}

[data-theme="dark"] .size-option:hover,
[data-theme="dark"] .size-option.active {
    border-color: #dfb485 !important;
    background: #dfb485 !important;
    color: #171310 !important;
}

[data-theme="dark"] .product-item .title a,
[data-theme="dark"] .product-item .price,
[data-theme="dark"] .detail-title,
[data-theme="dark"] .detail-price,
[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3, [data-theme="dark"] h4, [data-theme="dark"] h5, [data-theme="dark"] h6 {
    color: #f5eee6;
}

/* ── Universal Breadcrumb in Dark Mode ── */
[data-theme="dark"] .breadcrumb-section {
    background-color: #100d0b !important;
    border-bottom: 1px solid rgba(226, 179, 128, 0.12) !important;
}

[data-theme="dark"] .breadcrumb {
    background-color: transparent !important;
}

[data-theme="dark"] .breadcrumb-item a {
    color: #dfb485 !important;
}

[data-theme="dark"] .breadcrumb-item.active {
    color: #9c9187 !important;
}

[data-theme="dark"] .breadcrumb-item + .breadcrumb-item::before {
    color: #6a6157 !important;
}

/* ── Universal Product Card (.product-card) in Dark Mode ── */
[data-theme="dark"] .product-card {
    background: #171310 !important;
    border: 1px solid rgba(226, 179, 128, 0.16) !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6) !important;
}

[data-theme="dark"] .product-card:hover {
    border-color: rgba(226, 179, 128, 0.45) !important;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.85) !important;
}

[data-theme="dark"] .product-card .product-image {
    background: #1d1814 !important;
}

[data-theme="dark"] .product-card .product-info {
    background: #171310 !important;
}

[data-theme="dark"] .product-card .product-title,
[data-theme="dark"] .product-card .product-title-link h3,
[data-theme="dark"] .product-card .product-title-link {
    color: #f5eee6 !important;
}

[data-theme="dark"] .product-card:hover .product-title,
[data-theme="dark"] .product-card:hover .product-title-link,
[data-theme="dark"] .product-card:hover .product-title-link h3 {
    color: #dfb485 !important;
}

[data-theme="dark"] .product-card .product-category {
    color: #9c9187 !important;
}

[data-theme="dark"] .product-card .current-price {
    color: #dfb485 !important;
}

[data-theme="dark"] .product-card .original-price {
    color: #8c7f73 !important;
}

[data-theme="dark"] .product-card-cta {
    border-top: 1px solid rgba(226, 179, 128, 0.14) !important;
    background: #171310 !important;
}

[data-theme="dark"] .pc-add-cart {
    background: #251e18 !important;
    color: #ded6cd !important;
    border-right: 1px solid rgba(226, 179, 128, 0.14) !important;
}

[data-theme="dark"] .pc-add-cart:hover {
    background: #dfb485 !important;
    color: #171310 !important;
}

[data-theme="dark"] .pc-view-product {
    background: #1a1613 !important;
    color: #dfb485 !important;
}

[data-theme="dark"] .pc-view-product:hover {
    background: #261f19 !important;
    color: #ffffff !important;
}

/* ── Product Detail Page in Dark Mode ── */
[data-theme="dark"] .product-detail-section {
    background-color: #100d0b !important;
}

[data-theme="dark"] .main-image {
    background: #171310 !important;
    border-color: rgba(226, 179, 128, 0.18) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
}

[data-theme="dark"] .thumbnail {
    background: #171310 !important;
    border-color: rgba(226, 179, 128, 0.22) !important;
}

[data-theme="dark"] .thumbnail.active,
[data-theme="dark"] .thumbnail:hover {
    border-color: #dfb485 !important;
    box-shadow: 0 4px 14px rgba(223, 180, 133, 0.35) !important;
}

[data-theme="dark"] .thumb-color-badge {
    border-color: #171310 !important;
}

[data-theme="dark"] .gallery-thumbs::-webkit-scrollbar-thumb {
    background: #3a2e22 !important;
}

[data-theme="dark"] .product-title-detail {
    color: #f7f3ee !important;
}

[data-theme="dark"] .product-meta {
    color: #9c9187 !important;
}

[data-theme="dark"] .price-box {
    background: #181411 !important;
    border: 1px solid rgba(226, 179, 128, 0.2) !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .current-price-detail {
    color: #dfb485 !important;
}

[data-theme="dark"] .original-price-detail {
    color: #8c7f73 !important;
}

[data-theme="dark"] .size-selector label,
[data-theme="dark"] .quantity-selector label,
[data-theme="dark"] .color-selector .color-label {
    color: #ded6cd !important;
}

[data-theme="dark"] .size-option-detail {
    background: #1e1915 !important;
    border-color: rgba(226, 179, 128, 0.25) !important;
    color: #ded6cd !important;
}

[data-theme="dark"] .size-option-detail:hover,
[data-theme="dark"] .size-option-detail.active {
    background: #dfb485 !important;
    border-color: #dfb485 !important;
    color: #171310 !important;
}

[data-theme="dark"] .qty-controls {
    border-color: rgba(226, 179, 128, 0.25) !important;
    background: #1a1613 !important;
}

[data-theme="dark"] .qty-minus,
[data-theme="dark"] .qty-plus {
    background: #251e18 !important;
    color: #ded6cd !important;
}

[data-theme="dark"] .qty-minus:hover,
[data-theme="dark"] .qty-plus:hover {
    background: #dfb485 !important;
    color: #171310 !important;
}

[data-theme="dark"] .qty-input {
    background: #1a1613 !important;
    color: #f7f3ee !important;
}

[data-theme="dark"] .btn-buy-now {
    background: #2a221b !important;
    border: 1px solid rgba(226, 179, 128, 0.3) !important;
    color: #f7f3ee !important;
}

[data-theme="dark"] .btn-buy-now:hover {
    background: #362c23 !important;
    border-color: #dfb485 !important;
    color: #ffffff !important;
}

[data-theme="dark"] .product-features {
    border-top-color: rgba(255, 255, 255, 0.08) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .feature-item span {
    color: #ded6cd !important;
}

[data-theme="dark"] .short-description h5 {
    color: #f7f3ee !important;
}

[data-theme="dark"] .short-description ul li {
    color: #ded6cd !important;
}

[data-theme="dark"] .color-swatch-btn {
    box-shadow: 0 0 0 2px rgba(226, 179, 128, 0.25) !important;
}

[data-theme="dark"] .color-swatch-btn.selected {
    box-shadow: 0 0 0 3px #dfb485 !important;
    border-color: #171310 !important;
}

[data-theme="dark"] .related-products {
    background: #120f0d !important;
    border-top: 1px solid rgba(226, 179, 128, 0.15) !important;
}

[data-theme="dark"] .related-products .section-title {
    color: #f7f3ee !important;
}

[data-theme="dark"] .related-products .section-subtitle {
    color: #9c9187 !important;
}

[data-theme="dark"] .product-description-section {
    background: #100d0b !important;
    border-top: 1px solid rgba(226, 179, 128, 0.15) !important;
}

[data-theme="dark"] .product-desc-card {
    background: #171310 !important;
    border: 1px solid rgba(226, 179, 128, 0.18) !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6) !important;
}

[data-theme="dark"] .product-desc-card h3,
[data-theme="dark"] .product-desc-card h5,
[data-theme="dark"] .product-spec-strip strong {
    color: #f7f3ee !important;
}

[data-theme="dark"] .product-desc-body,
[data-theme="dark"] .product-desc-text,
[data-theme="dark"] .product-features-detail li,
[data-theme="dark"] .product-spec-strip {
    color: #ded5cc !important;
}

[data-theme="dark"] .product-desc-card .d-flex {
    border-bottom-color: rgba(226, 179, 128, 0.18) !important;
}

[data-theme="dark"] .product-features-detail {
    border-top-color: rgba(226, 179, 128, 0.18) !important;
}

/* ── Shop Page in Dark Mode ── */
[data-theme="dark"] .filter-widget {
    background: #171310 !important;
    border: 1px solid rgba(226, 179, 128, 0.16) !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5) !important;
    color: #ded6cd !important;
}

[data-theme="dark"] .filter-title {
    color: #f7f3ee !important;
    border-bottom-color: #dfb485 !important;
}

[data-theme="dark"] .form-check-label {
    color: #ded6cd !important;
}

[data-theme="dark"] .size-btn {
    border-color: rgba(226, 179, 128, 0.25) !important;
    background: #201a16 !important;
    color: #ded6cd !important;
}

[data-theme="dark"] .size-btn:hover,
[data-theme="dark"] .size-btn.active {
    background: #dfb485 !important;
    border-color: #dfb485 !important;
    color: #171310 !important;
}

[data-theme="dark"] .sort-bar {
    background: #171310 !important;
    border: 1px solid rgba(226, 179, 128, 0.16) !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5) !important;
    color: #ded6cd !important;
}

[data-theme="dark"] .sort-bar label {
    color: #f7f3ee !important;
}

[data-theme="dark"] .sort-bar select {
    background: #201a16 !important;
    border-color: rgba(226, 179, 128, 0.25) !important;
    color: #f7f3ee !important;
}

[data-theme="dark"] #resultsCount {
    color: #ded6cd !important;
}

[data-theme="dark"] .color-swatch {
    border-color: rgba(226, 179, 128, 0.25) !important;
}

/* ── Checkout Page in Dark Mode ── */
[data-theme="dark"] .checkout-wrap {
    background: #100d0b !important;
    color: #ded6cd !important;
}

[data-theme="dark"] .co-card {
    background: #171310 !important;
    border: 1px solid rgba(226, 179, 128, 0.16) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
    color: #ded6cd !important;
}

[data-theme="dark"] .co-card-title {
    color: #f7f3ee !important;
}

[data-theme="dark"] .co-input,
[data-theme="dark"] .co-textarea,
[data-theme="dark"] .co-select {
    background: #201a16 !important;
    border-color: rgba(226, 179, 128, 0.22) !important;
    color: #f7f3ee !important;
}

[data-theme="dark"] .co-input:focus,
[data-theme="dark"] .co-textarea:focus,
[data-theme="dark"] .co-select:focus {
    border-color: #dfb485 !important;
    background: #25201b !important;
    box-shadow: 0 0 0 3px rgba(223, 180, 133, 0.25) !important;
}

[data-theme="dark"] .co-input-icon {
    color: #dfb485 !important;
}

[data-theme="dark"] .delivery-badge {
    background: #222b1f !important;
    color: #5dd879 !important;
    border: 1px solid rgba(40, 167, 69, 0.3) !important;
}

[data-theme="dark"] .pay-option {
    border-color: rgba(226, 179, 128, 0.2) !important;
    background: #1a1613 !important;
    color: #ded6cd !important;
}

[data-theme="dark"] .pay-option.active {
    border-color: #dfb485 !important;
    background: #272019 !important;
}

[data-theme="dark"] .ssl-badge {
    background: #1c1713 !important;
    border: 1px solid rgba(226, 179, 128, 0.15) !important;
    color: #9c9187 !important;
}

[data-theme="dark"] .order-mini-item {
    border-bottom-color: rgba(255, 255, 255, 0.07) !important;
    color: #ded6cd !important;
}

[data-theme="dark"] .order-mini-item h6,
[data-theme="dark"] .order-mini-item h6 a {
    color: #f5eee6 !important;
}

[data-theme="dark"] .order-mini-item small {
    color: #9c9187 !important;
}

[data-theme="dark"] .order-mini-img {
    background: #1f1a16 !important;
    border: 1px solid rgba(226, 179, 128, 0.2) !important;
}

[data-theme="dark"] .co-total-row {
    color: #ded6cd !important;
}

[data-theme="dark"] .co-total-row.grand {
    color: #f7f3ee !important;
    border-top-color: rgba(226, 179, 128, 0.18) !important;
}

[data-theme="dark"] .success-box {
    background: #171310 !important;
    border: 1px solid rgba(226, 179, 128, 0.2) !important;
    color: #f7f3ee !important;
}

/* ── Contact Page in Dark Mode ── */
[data-theme="dark"] .contact-info-card,
[data-theme="dark"] .contact-form-wrap {
    background: #171310 !important;
    border: 1px solid rgba(226, 179, 128, 0.16) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
    color: #ded6cd !important;
}

/* ── Modals (Quick View & Add to Cart) in Dark Mode ── */
[data-theme="dark"] #addToCartModal .modal-content,
[data-theme="dark"] #quickViewModal .modal-content {
    background: #171310 !important;
    border: 1px solid rgba(226, 179, 128, 0.25) !important;
    color: #ded6cd !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9) !important;
}

[data-theme="dark"] .modal-title,
[data-theme="dark"] .modal-product-name,
[data-theme="dark"] .qv-title {
    color: #f7f3ee !important;
}

[data-theme="dark"] .qv-main-img-wrap {
    background: #1a1512 !important;
    border: 1px solid rgba(226, 179, 128, 0.15) !important;
}

[data-theme="dark"] .qv-thumb {
    background: #1a1512 !important;
    border-color: rgba(226, 179, 128, 0.2) !important;
}

[data-theme="dark"] .qv-meta-row,
[data-theme="dark"] .qv-meta-value {
    color: #ded6cd !important;
}

[data-theme="dark"] .qv-meta-label {
    color: #f7f3ee !important;
}

[data-theme="dark"] .modal-qty-input {
    background: #201a16 !important;
    color: #f7f3ee !important;
    border: 1px solid rgba(226, 179, 128, 0.2) !important;
}

[data-theme="dark"] #modalQtyMinus,
[data-theme="dark"] #modalQtyPlus {
    background: #251e18 !important;
    color: #ded6cd !important;
    border: 1px solid rgba(226, 179, 128, 0.2) !important;
}

[data-theme="dark"] .modal-header .close {
    color: #ded6cd !important;
    text-shadow: none !important;
    opacity: 0.8;
}

[data-theme="dark"] .modal-header .close:hover {
    color: #ffffff !important;
    opacity: 1;
}

/* ── Outline Buttons in Dark Mode ── */
[data-theme="dark"] .btn-outline-dark {
    color: #dfb485 !important;
    border-color: rgba(226, 179, 128, 0.45) !important;
    background: transparent !important;
}

[data-theme="dark"] .btn-outline-dark:hover {
    background: #dfb485 !important;
    color: #171310 !important;
    border-color: #dfb485 !important;
    box-shadow: 0 4px 14px rgba(223, 180, 133, 0.3) !important;
}

[data-theme="dark"] .btn-outline-secondary {
    color: #ded6cd !important;
    border-color: rgba(226, 179, 128, 0.3) !important;
    background: transparent !important;
}

[data-theme="dark"] .btn-outline-secondary:hover {
    background: #dfb485 !important;
    border-color: #dfb485 !important;
    color: #171310 !important;
}

/* ── Footer Brand Logo in Dark Mode ── */
[data-theme="dark"] .footer-logo-img {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(226, 179, 128, 0.25) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

/* ── Footer Brand Logo ── */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 18px;
    text-decoration: none;
}

.footer-logo-img {
    max-height: 72px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(226, 179, 128, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-logo-link:hover .footer-logo-img {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.45);
}

@media (max-width: 576px) {
    .footer-logo-img {
        max-height: 56px;
        padding: 5px 12px;
    }
}

/* ================================================================
   CATEGORY QUICK-NAV STRIP (Modern, Compact & App-like)
   ================================================================ */
.category-strip-section {
    background: #ffffff;
    border-bottom: 1px solid #f0eae4;
}

[data-theme="dark"] .category-strip-section {
    background: #171310;
    border-bottom-color: rgba(226, 179, 128, 0.15);
}

.category-strip-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 2px;
}

.category-strip-wrapper::-webkit-scrollbar {
    display: none;
}

.category-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 30px;
    background: #fbf8f5;
    border: 1px solid #ebd9c5;
    color: #3b322a;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.category-strip-item:hover,
.category-strip-item.active {
    background: #171310;
    border-color: #171310;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.category-strip-item:hover .category-strip-icon,
.category-strip-item.active .category-strip-icon {
    background: var(--bento-gold);
    color: #171310;
}

.category-strip-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f2e5d5;
    color: #936538;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.25s ease;
}

.category-strip-name {
    font-weight: 600;
}

.category-strip-count {
    font-size: 10px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.06);
    color: inherit;
    padding: 2px 7px;
    border-radius: 12px;
}

.category-strip-item:hover .category-strip-count,
.category-strip-item.active .category-strip-count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

[data-theme="dark"] .category-strip-item {
    background: #201a16;
    border-color: rgba(226, 179, 128, 0.22);
    color: #e5ddd5;
}

[data-theme="dark"] .category-strip-item:hover,
[data-theme="dark"] .category-strip-item.active {
    background: #dfb485;
    border-color: #dfb485;
    color: #171310;
}

[data-theme="dark"] .category-strip-icon {
    background: #2e261f;
    color: #dfb485;
}

[data-theme="dark"] .category-strip-item:hover .category-strip-icon,
[data-theme="dark"] .category-strip-item.active .category-strip-icon {
    background: #171310;
    color: #dfb485;
}

/* ================================================================
   COMPACT & NARROW BENTO SHOWCASE (HEADER & TABS)
   ================================================================ */
.bento-showcase-section {
    padding: 28px 0 40px !important;
}

.bento-title-wrap-compact {
    max-width: 520px;
    margin: 0 auto 14px !important;
    text-align: center;
}

.bento-title-wrap-compact .bento-pill-tag {
    font-size: 11px;
    padding: 3px 12px;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.bento-title-wrap-compact .bento-section-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.25;
}

.bento-title-wrap-compact .bento-section-desc {
    font-size: 13px;
    color: #726b64;
    line-height: 1.4;
    margin: 0;
}

.bento-showcase-section .bento-filter-nav {
    margin-bottom: 18px !important;
    gap: 6px;
}

.bento-showcase-section .bento-tab-btn {
    padding: 7px 18px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 25px;
}

/* ================================================================
   MOBILE RESPONSIVE ENHANCEMENTS (BENTO SHOWCASE & BELOW)
   ================================================================ */
@media (max-width: 768px) {
    /* ── Bento Section Base ── */
    .bento-section {
        padding: 32px 0;
    }

    .bento-showcase-section {
        padding: 16px 0 22px !important;
    }

    .bento-section-title-wrap {
        margin: 0 auto 16px;
        padding: 0 10px;
    }

    .bento-title-wrap-compact {
        max-width: 100%;
        margin: 0 auto 10px !important;
        padding: 0 8px;
    }

    .bento-title-wrap-compact .bento-pill-tag {
        font-size: 10px;
        padding: 2px 10px;
        margin-bottom: 4px;
        letter-spacing: 0.5px;
    }

    .bento-title-wrap-compact .bento-section-title {
        font-size: 18px;
        font-weight: 800;
        margin-bottom: 3px;
        line-height: 1.25;
        color: #171310;
    }

    [data-theme="dark"] .bento-title-wrap-compact .bento-section-title {
        color: #f7f3ee !important;
    }

    .bento-title-wrap-compact .bento-section-desc {
        font-size: 11.5px;
        line-height: 1.4;
        color: #6b635b;
    }

    [data-theme="dark"] .bento-title-wrap-compact .bento-section-desc {
        color: #b8ada1 !important;
    }

    .bento-section-title {
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 5px;
        line-height: 1.3;
        color: #171310;
    }

    [data-theme="dark"] .bento-section-title {
        color: #f7f3ee !important;
    }

    .bento-section-desc {
        font-size: 12.5px;
        line-height: 1.45;
        color: #6b635b;
    }

    [data-theme="dark"] .bento-section-desc {
        color: #b8ada1 !important;
    }

    .bento-pill-tag {
        font-size: 10.5px;
        padding: 3px 11px;
        margin-bottom: 6px;
        letter-spacing: 0.6px;
    }

    /* ── Bento Filter Tabs (Smooth Horizontal Swipe) ── */
    .bento-filter-nav {
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 6px;
        margin-bottom: 14px;
        padding: 2px 15px 8px;
        margin-left: -15px;
        margin-right: -15px;
    }

    .bento-showcase-section .bento-filter-nav {
        margin-bottom: 12px !important;
        padding: 2px 15px 6px;
    }

    .bento-filter-nav::-webkit-scrollbar {
        display: none;
    }

    .bento-tab-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 11.5px;
        font-weight: 600;
        padding: 6px 14px;
        border-radius: 20px;
    }

    /* ── Product Row & Columns ── */
    .bento-product-row {
        margin-left: -6px;
        margin-right: -6px;
    }

    .bento-col-product {
        padding-left: 6px;
        padding-right: 6px;
        margin-bottom: 12px !important;
    }

    /* ── View All Button ── */
    .bento-view-all-btn {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 10px auto 0;
        padding: 12px 20px !important;
        font-size: 13px;
    }

    /* ── Bento Promise Grid (2x2 Compact Layout) ── */
    .bento-promise-card {
        padding: 18px 12px;
        border-radius: 14px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .bento-promise-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .bento-promise-card h4 {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 4px;
        line-height: 1.35;
    }

    .bento-promise-card p {
        font-size: 11px;
        line-height: 1.4;
        color: #726b64;
    }

    /* ── Bento Reviews Section ── */
    .bento-reviews-section {
        padding: 38px 0;
    }

    .bento-rating-stat-card {
        padding: 22px 16px;
        border-radius: 16px;
    }

    .bento-rating-big {
        font-size: 48px;
        margin-bottom: 4px;
    }

    .bento-rating-stars {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .bento-rating-stat-card h5 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .bento-testimonial-box {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .bento-quote-text {
        font-size: 12px;
        line-height: 1.55;
        margin-bottom: 14px;
    }

    .bento-client-avatar {
        width: 38px;
        height: 38px;
    }

    .bento-client-info h6 {
        font-size: 13px;
    }

    .bento-client-info small {
        font-size: 10px;
    }
}



