/* ============================================================
   RB Fireworks — Storefront Styles
   Premium Dark Theme
   ============================================================ */

/* ── Google Fonts fallback ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ── Variables ── */
:root {
    --black:          #080808;
    --black-2:        #0e0e0e;
    --black-3:        #141414;
    --black-4:        #1a1a1a;
    --white:          #ffffff;
    --warm-white:     #f5f0eb;
    --muted:          #7c7268;
    --muted-2:        #a09890;

    --orange:         #ea580c;
    --orange-light:   #fb923c;
    --orange-glow:    rgba(234, 88, 12, 0.18);
    --gold:           #d97706;
    --gold-light:     #f59e0b;
    --gold-glow:      rgba(245, 158, 11, 0.15);
    --blue:           #1e40af;
    --blue-light:     #3b82f6;

    --gradient-brand: linear-gradient(135deg, #1d4ed8 0%, #ea580c 55%, #f59e0b 100%);
    --gradient-text:  linear-gradient(135deg, #fb923c 0%, #f59e0b 100%);
    --gradient-card:  linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);

    --border:         rgba(255, 255, 255, 0.06);
    --border-hover:   rgba(234, 88, 12, 0.35);

    --radius-sm:  6px;
    --radius-md:  14px;
    --radius-lg:  22px;
    --radius-xl:  32px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --container: 1200px;
    --section-pad: clamp(72px, 10vw, 120px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--black);
    color: var(--warm-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; }
em { font-family: 'Playfair Display', serif; font-style: italic; }

/* ── Container ── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
}

/* ── Section Shared ── */
.section { padding: var(--section-pad) 0; }

.section-header { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold-light);
    opacity: 0.5;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted-2);
    max-width: 520px;
    margin: 0 auto;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gradient-brand);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: var(--transition);
}
.btn-primary:hover::before { background: rgba(255,255,255,0.08); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(234,88,12,0.35); }
.btn-primary svg { width: 16px; height: 16px; }

.btn-primary.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-primary.btn-lg { padding: 16px 36px; font-size: 1rem; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--warm-white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.18);
    cursor: pointer;
    transition: var(--transition);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-2px);
}
.btn-ghost svg { width: 16px; height: 16px; }
.btn-ghost.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ── Empty State ── */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
}
.empty-icon { font-size: 2.5rem; margin-bottom: 12px; opacity: 0.4; }

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.navbar-inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
}
/* Logo dark/light swap */
.logo-light { display: none; }
[data-theme="light"] .logo-dark  { display: none; }
[data-theme="light"] .logo-light { display: block; }

.navbar-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    border-radius: 8px;
    transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Track order icon button */
.track-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}
.track-order-btn:hover { background: rgba(255,255,255,0.18); transform: scale(1.1); }
.track-order-btn svg { width: 18px; height: 18px; display: block; }


/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 100%, rgba(234,88,12,0.15) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.6) 60%, rgba(8,8,8,1) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 860px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s ease 0.3s forwards;
}
.eyebrow-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange-light);
}

.hero-title {
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-title em {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(245, 240, 235, 0.65);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s ease 0.9s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: pulse 2.5s ease infinite;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35));
}

/* ─────────────────────────────────────────────
   MARQUEE
───────────────────────────────────────────── */
.marquee-strip {
    background: var(--black-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 0;
    animation: marquee 28s linear infinite;
}

.marquee-track span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-2);
    padding: 0 20px;
}
.marquee-dot { color: var(--orange-light) !important; padding: 0 4px !important; }

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
.about-section { background: var(--black-2); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

/* Visual column */
.about-visual { position: relative; }

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.about-img-wrap:hover .about-img { transform: scale(1.04); }

.about-img-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(234,88,12,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.about-stat-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: rgba(20,20,20,0.9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted-2);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-badge {
    position: absolute;
    top: 20px;
    left: -16px;
    background: var(--gradient-brand);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(234,88,12,0.4);
}
.about-badge svg { width: 14px; height: 14px; }

/* Copy column */
.about-copy {}

.about-lead {
    font-size: 1.15rem;
    color: var(--warm-white);
    line-height: 1.75;
    margin-bottom: 18px;
}
.about-body {
    color: var(--muted-2);
    line-height: 1.75;
    margin-bottom: 36px;
}

.about-features { display: flex; flex-direction: column; gap: 20px; }

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--orange-glow);
    border: 1px solid rgba(234,88,12,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-light);
}
.feature-icon svg { width: 20px; height: 20px; }

.about-feature strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}
.about-feature span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* ─────────────────────────────────────────────
   PRODUCTS
───────────────────────────────────────────── */
.products-section {
    background: var(--black);
    position: relative;
}
.products-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--orange-glow), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(234,88,12,0.12), 0 8px 24px rgba(0,0,0,0.4);
}

.product-thumb {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--black-3);
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-thumb img { transform: scale(1.07); }

.product-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.08);
}
.product-thumb-placeholder svg { width: 56px; height: 56px; }

.product-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(8,8,8,0.75);
    backdrop-filter: blur(8px);
    color: var(--gold-light);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 50px;
    border: 1px solid rgba(245,158,11,0.2);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8,8,8,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }

.product-quick-view {
    background: var(--white);
    color: var(--black);
    font-size: 0.82rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    cursor: pointer;
    transition: var(--transition);
    transform: translateY(8px);
}
.product-card:hover .product-quick-view { transform: translateY(0); }
.product-quick-view:hover { background: var(--warm-white); }

.product-body { padding: 20px; }

.product-meta { margin-bottom: 8px; }
.product-stock {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.product-stock.in-stock  { color: #4ade80; }
.product-stock.out-stock { color: var(--muted); }

.product-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 16px;
}

.product-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.product-price {
    font-size: 1.15rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-desc-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}
.product-desc-row .product-desc { margin-bottom: 0; flex: 1; min-width: 0; }

.product-sold-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted-2);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2px 9px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
}
[data-theme="light"] .product-sold-badge {
    background: rgba(0,0,0,0.04);
    color: #888;
}

.btn-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: var(--gradient-brand);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-product:hover { opacity: 0.85; transform: translateY(-1px); }

/* ─────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────── */
.gallery-section {
    background: var(--black-2);
    position: relative;
    overflow: hidden;
}
.gallery-section::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234,88,12,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.gallery-masonry {
    columns: 3;
    column-gap: 16px;
}
@media (max-width: 900px) { .gallery-masonry { columns: 2; } }
@media (max-width: 560px) { .gallery-masonry { columns: 1; } }

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.gallery-item:hover { border-color: var(--border-hover); }
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-zoom {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}
.gallery-item:hover .gallery-zoom { background: rgba(255,255,255,0.22); }
.gallery-zoom svg { width: 16px; height: 16px; }

.gallery-caption {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    flex: 1;
    text-align: right;
    padding-left: 8px;
}

/* ─────────────────────────────────────────────
   NEWS & BLOG
───────────────────────────────────────────── */
.news-section { background: var(--black); }

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .posts-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .posts-grid { grid-template-columns: 1fr; } }

.post-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.post-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(234,88,12,0.1);
}

.post-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--black-3);
}
.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.post-card:hover .post-thumb img { transform: scale(1.05); }

.post-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black-3) 0%, var(--black-4) 100%);
}

.post-type-chip {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}
.post-type-chip.blog { background: rgba(96,165,250,0.25); color: #93c5fd; border: 1px solid rgba(96,165,250,0.3); }
.post-type-chip.news { background: rgba(251,191,36,0.2); color: #fcd34d; border: 1px solid rgba(251,191,36,0.25); }
.post-type-chip.sale { background: rgba(234,88,12,0.22); color: var(--orange-light); border: 1px solid rgba(234,88,12,0.3); }

.post-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-date {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.post-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 10px;
}

.post-excerpt {
    font-size: 0.85rem;
    color: var(--muted-2);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange-light);
    transition: var(--transition);
    margin-top: auto;
}
.post-read-more svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.post-read-more:hover { color: var(--gold-light); }
.post-read-more:hover svg { transform: translateX(4px); }

/* Featured post */
.post-card--featured .post-thumb { aspect-ratio: 16/8; }
.post-card--featured .post-title { font-size: 1.2rem; }

/* ─────────────────────────────────────────────
   CTA / CONTACT
───────────────────────────────────────────── */
.cta-section {
    background: var(--black-2);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-glow {
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(234,88,12,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

.cta-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.cta-sub {
    font-size: 1.05rem;
    color: var(--muted-2);
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.cta-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    text-align: left;
}
@media (max-width: 700px) { .cta-contact-grid { grid-template-columns: 1fr; } }

.cta-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    transition: var(--transition);
    color: var(--warm-white);
}
.cta-contact-card:hover {
    border-color: var(--border-hover);
    background: rgba(234,88,12,0.06);
    transform: translateY(-3px);
}

.cta-contact-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--orange-glow);
    border: 1px solid rgba(234,88,12,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-light);
}
.cta-contact-icon svg { width: 18px; height: 18px; }

.cta-contact-card strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}
.cta-contact-card span {
    font-size: 0.82rem;
    color: var(--muted-2);
    line-height: 1.5;
}

/* Address card — no hover transform since it's not a link */
.cta-contact-card--address { cursor: default; }
.cta-contact-card--address:hover { transform: none; }

/* Google Map embed */
.cta-map {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 48px;
}
@media (max-width: 700px) { .cta-map { height: 260px; } }

/* Payment */
.payment-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.payment-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.payment-logos img {
    height: 26px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    filter: grayscale(0.3) brightness(0.9);
    transition: var(--transition);
}
.payment-logos img:hover { filter: none; }

/* Real brand logo images — white pill so they're legible on dark footer */
.payment-img-logo {
    height: 26px;
    width: auto;
    max-width: 68px;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
    padding: 3px 7px;
    filter: none !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    transition: var(--transition);
    flex-shrink: 0;
}
.payment-img-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.payment-logo-svg {
    display: inline-flex;
    align-items: center;
    height: 26px;
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0.88;
    cursor: default;
    flex-shrink: 0;
}
.payment-logo-svg svg {
    width: auto;
    height: 26px;
    display: block;
}
.payment-logo-svg:hover { opacity: 1; transform: translateY(-1px); }

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted-2);
    transition: var(--transition);
    white-space: nowrap;
}
.payment-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.payment-badge:hover { border-color: var(--border-hover); color: var(--warm-white); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 72px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(24px, 4vw, 60px);
    margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-top: 16px;
    max-width: 260px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links strong {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
}
.footer-links a {
    font-size: 0.88rem;
    color: var(--muted);
    transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--orange-light); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--muted);
}

/* ─────────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
}
.lightbox.open { display: flex; animation: fadeIn 0.25s ease; }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { width: 18px; height: 18px; }

.lightbox-inner {
    max-width: 90vw;
    max-height: 90vh;
    cursor: default;
    text-align: center;
}
.lightbox-inner img {
    max-width: 100%;
    max-height: 82vh;
    border-radius: var(--radius-md);
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-caption {
    margin-top: 14px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* ─────────────────────────────────────────────
   PRODUCT MODAL
───────────────────────────────────────────── */
/* ── Clear Cart Confirm Modal ── */
.cc-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.cc-modal-overlay.active { display: flex; animation: fadeIn 0.2s ease; }
.cc-modal {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 28px 24px;
    max-width: 360px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.cc-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #ef4444;
}
.cc-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.cc-modal-msg {
    font-size: 0.85rem;
    color: var(--muted-2);
    line-height: 1.5;
    margin-bottom: 24px;
}
.cc-modal-actions {
    display: flex;
    gap: 10px;
}
.cc-modal-cancel {
    flex: 1;
    padding: 10px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted-2);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}
.cc-modal-cancel:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.cc-modal-confirm {
    flex: 1;
    padding: 10px;
    border-radius: 50px;
    border: none;
    background: #ef4444;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}
.cc-modal-confirm:hover { background: #dc2626; }
[data-theme="light"] .cc-modal { background: #fff; border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .cc-modal-title { color: #111; }
[data-theme="light"] .cc-modal-cancel { color: #555; border-color: rgba(0,0,0,0.15); }
[data-theme="light"] .cc-modal-cancel:hover { background: rgba(0,0,0,0.05); color: #111; }

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 8000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.open { display: flex; animation: fadeIn 0.25s ease; }

.product-modal {
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    max-width: 680px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.7);
    max-height: 90vh;
}
@media (max-width: 600px) { .product-modal { grid-template-columns: 1fr; } }

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.15); }
.modal-close svg { width: 16px; height: 16px; }

.product-modal-img-wrap {
    background: var(--black-4);
    min-height: 300px;
    overflow: hidden;
}
.product-modal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-body {
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}
.product-modal-body h2 {
    font-size: 1.3rem;
    color: var(--white);
    line-height: 1.3;
}
.modal-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.modal-desc {
    font-size: 0.88rem;
    color: var(--muted-2);
    line-height: 1.65;
    flex: 1;
}

/* ─────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
───────────────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-float {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up     { transform: translateY(32px); }
.reveal-left   { transform: translateX(-40px); }
.reveal-right  { transform: translateX(40px); }
.reveal-float  { transform: translateY(20px) scale(0.96); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-float.visible {
    opacity: 1;
    transform: none;
}

/* Apply staggered delay from CSS variable */
.reveal-up[style] { transition-delay: var(--delay, 0ms); }

/* ─────────────────────────────────────────────
   KEYFRAMES
───────────────────────────────────────────── */
@keyframes fadeUp {
    to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-33.333%); }
}
@keyframes pulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.7; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
.d-hide { display: initial; }

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { max-width: 520px; margin: 0 auto; }
    .about-stat-card { right: 0; bottom: -20px; }
    .about-badge { left: 0; }
}

@media (max-width: 768px) {
    .navbar-nav { display: none; } /* desktop nav hidden on mobile */
    .desktop-only { display: none !important; }
    .hamburger { display: flex; z-index: 1000; }

    .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .posts-grid { grid-template-columns: 1fr; }
    .product-modal { grid-template-columns: 1fr; }
    .product-modal-img-wrap { min-height: 200px; max-height: 240px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-primary.btn-lg, .btn-ghost.btn-lg { width: 100%; justify-content: center; max-width: 280px; }
    .about-stat-card { position: static; margin-top: 20px; }
    .about-badge { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .payment-strip { flex-wrap: wrap; gap: 8px; }
    .payment-label { width: 100%; text-align: center; margin-bottom: 4px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 360px) {
    .products-grid { grid-template-columns: 1fr; }
    .payment-logos { flex-wrap: wrap; justify-content: center; }
}

/* ─────────────────────────────────────────────
   THEME TOGGLE (desktop round button)
───────────────────────────────────────────── */
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}
.theme-toggle:hover { background: rgba(255,255,255,0.18); transform: scale(1.1); }
.theme-toggle svg   { width: 18px; height: 18px; display: block; }

/* In light mode, invert button colours */
[data-theme="light"] .theme-toggle {
    background: rgba(0,0,0,0.07);
    border-color: rgba(0,0,0,0.14);
    color: #111;
}
[data-theme="light"] .theme-toggle:hover { background: rgba(0,0,0,0.13); }

/* ─────────────────────────────────────────────
   MOBILE PANEL (fully separate from desktop nav)
───────────────────────────────────────────── */
.mobile-panel {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 82vw);
    height: 100vh;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255,255,255,0.07);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 0;
    transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
}
.mobile-panel.open { right: 0; }

.mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-panel-head .navbar-logo { font-size: 0.95rem; }
.mobile-panel-head .navbar-logo img { width: 28px; height: 28px; }

.mobile-panel-close {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease;
    padding: 0; flex-shrink: 0;
}
.mobile-panel-close:hover { background: rgba(255,255,255,0.14); color: #fff; }
.mobile-panel-close svg { width: 16px; height: 16px; }

.mobile-panel-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px 12px;
    gap: 2px;
    overflow-y: auto;
}
.mobile-nav-link {
    display: block;
    padding: 13px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.72);
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { background: rgba(255,255,255,0.07); color: #fff; }

.mobile-panel-foot {
    padding: 16px 20px 28px;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-foot-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 2px;
}
.mobile-theme-btns { display: flex; gap: 8px; }
.mobile-theme-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.mobile-theme-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.mobile-theme-btn:hover  { background: rgba(255,255,255,0.1); color: #fff; }
.mobile-theme-btn.active {
    background: rgba(234,88,12,0.2);
    border-color: rgba(234,88,12,0.45);
    color: var(--orange-light);
}

/* Nav overlay */
.nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
}
.nav-overlay.show { display: block; animation: fadeIn 0.2s ease; }

/* Light mode: mobile panel */
[data-theme="light"] .mobile-panel {
    background: rgba(248,245,241,0.98);
    border-left-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .mobile-panel-head { border-bottom-color: rgba(0,0,0,0.07); }
[data-theme="light"] .mobile-panel-head .navbar-logo { color: #111; }
[data-theme="light"] .mobile-panel-close {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.1);
    color: rgba(0,0,0,0.6);
}
[data-theme="light"] .mobile-panel-close:hover { background: rgba(0,0,0,0.1); color: #111; }
[data-theme="light"] .mobile-panel-foot { border-top-color: rgba(0,0,0,0.07); }
[data-theme="light"] .mobile-foot-label { color: rgba(0,0,0,0.3); }
[data-theme="light"] .mobile-nav-link { color: rgba(0,0,0,0.6); }
[data-theme="light"] .mobile-nav-link:hover,
[data-theme="light"] .mobile-nav-link.active { background: rgba(0,0,0,0.05); color: #111; }
[data-theme="light"] .mobile-theme-btn {
    border-color: rgba(0,0,0,0.1);
    background: rgba(0,0,0,0.04);
    color: rgba(0,0,0,0.5);
}
[data-theme="light"] .mobile-theme-btn:hover { background: rgba(0,0,0,0.09); color: #111; }
[data-theme="light"] .mobile-theme-btn.active {
    background: rgba(234,88,12,0.1);
    border-color: rgba(234,88,12,0.35);
    color: var(--orange);
}

/* ─────────────────────────────────────────────
   LIGHT MODE — CSS variable overrides
───────────────────────────────────────────── */
[data-theme="light"] {
    --black:         #f5f2ee;
    --black-2:       #ebe8e3;
    --black-3:       #dedad4;
    --black-4:       #d0ccc6;
    --white:         #111111;
    --warm-white:    #1c1917;
    --muted:         #6e6961;
    --muted-2:       #514e49;
    --border:        rgba(0,0,0,0.09);
    --border-hover:  rgba(234,88,12,0.35);
    --gradient-card: linear-gradient(145deg,rgba(255,255,255,0.9) 0%,rgba(250,248,244,0.8) 100%);
}

/* Smooth transition on theme switch — targeted only, NOT on * (breaks SVG innerHTML rendering) */
body, section, header, footer, aside, main { transition: background-color 0.3s ease; }

/* Navbar — light mode ALWAYS white (not just when scrolled) */
[data-theme="light"] .navbar {
    background: rgba(248,245,241,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 1px 16px rgba(0,0,0,0.07);
}
[data-theme="light"] .navbar-logo   { color: #111; }
[data-theme="light"] .nav-link      { color: rgba(20,18,14,0.65); }
[data-theme="light"] .nav-link:hover { color: #111; background: rgba(0,0,0,0.05); }
[data-theme="light"] .hamburger span { background: #222; }
[data-theme="light"] .track-order-btn { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.12); color: #222; }
[data-theme="light"] .track-order-btn:hover { background: rgba(0,0,0,0.1); }

/* Hero always dark (video background) */
[data-theme="light"] .hero             { background: #080808; }
[data-theme="light"] .hero-title       { color: #fff !important; }
[data-theme="light"] .hero-subtitle    { color: rgba(255,255,255,0.78) !important; }
[data-theme="light"] .hero-eyebrow     { color: rgba(255,255,255,0.85); }
[data-theme="light"] .scroll-hint      { color: rgba(255,255,255,0.35); }
[data-theme="light"] .scroll-line      { background: linear-gradient(to bottom,transparent,rgba(255,255,255,0.35)); }

/* About stat card (hardcoded dark) */
[data-theme="light"] .about-stat-card  {
    background: rgba(255,255,255,0.95);
    border-color: rgba(0,0,0,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Products */
[data-theme="light"] .product-card           { box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
[data-theme="light"] .product-card:hover     { box-shadow: 0 16px 48px rgba(234,88,12,0.12); }
[data-theme="light"] .product-thumb-placeholder { color: rgba(0,0,0,0.1); }
[data-theme="light"] .product-stock.in-stock { color: #16a34a; }
[data-theme="light"] .product-name           { color: #111; }

/* Gallery */
[data-theme="light"] .gallery-item { border-color: rgba(0,0,0,0.1); }

/* Posts */
[data-theme="light"] .post-card           { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
[data-theme="light"] .post-card:hover     { box-shadow: 0 16px 48px rgba(234,88,12,0.1); }
[data-theme="light"] .post-title          { color: #111; }
[data-theme="light"] .post-thumb-placeholder {
    background: linear-gradient(135deg, #dedad4 0%, #d0ccc6 100%);
}

/* CTA */
[data-theme="light"] .cta-contact-card         { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
[data-theme="light"] .cta-contact-card strong  { color: #111; }
[data-theme="light"] .cta-contact-card:hover   { background: rgba(234,88,12,0.05); }

/* Payments */
[data-theme="light"] .payment-logo-svg { opacity: 1; }
[data-theme="light"] .payment-badge    { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); }

/* Footer */
[data-theme="light"] .site-footer           { border-top-color: rgba(0,0,0,0.1); }
[data-theme="light"] .footer-bottom         { border-top-color: rgba(0,0,0,0.1); }
[data-theme="light"] .footer-links strong   { color: #111; }

/* Ghost button — keep white text (hero bg is always dark video) */
[data-theme="light"] .btn-ghost         { color: #78716c; border-color: rgba(120,113,108,0.3); }
[data-theme="light"] .btn-ghost:hover   { background: rgba(120,113,108,0.06); border-color: rgba(120,113,108,0.5); color: #57534e; }

/* Primary & product buttons — always white text regardless of --white variable */
[data-theme="light"] .btn-primary,
[data-theme="light"] .btn-product       { color: #fff !important; }

/* Modals always dark */
[data-theme="light"] .lightbox              { background: rgba(0,0,0,0.88); }
[data-theme="light"] .product-modal-content { background: #141414; border-color: rgba(255,255,255,0.08); }
