:root {
    --bg: #03030A;
    --gold: #d4af37;
    --gold-light: #ffe168;
    --gold-dim: rgba(212, 175, 55, 0.12);
    --gold-glow: rgba(212, 175, 55, 0.5);
    --white: #f5f5f5;
    --gray: #888;
    --card-bg: rgba(12, 12, 20, 0.8);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

/* =====================
   PRELOADER
===================== */
#preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: opacity 1s ease, visibility 1s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.loader-logo { width: 120px; animation: logoReveal 1.5s ease forwards; }
@keyframes logoReveal {
    from { opacity:0; transform: scale(0.5) rotate(-20deg); filter: blur(10px); }
    to   { opacity:1; transform: scale(1) rotate(0deg);   filter: blur(0px) drop-shadow(0 0 30px var(--gold-glow)); }
}

.loader-bar-wrap {
    width: 200px; height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 999px; overflow: hidden;
}
.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 999px;
    animation: loadBar 1.2s ease-in-out forwards;
    box-shadow: 0 0 10px var(--gold);
}
@keyframes loadBar { from { width: 0%; } to { width: 100%; } }

/* =====================
   NAVBAR
===================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    padding: 1.5rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    background: transparent;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(3,3,10,0.9), transparent);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.navbar.scrolled::before { opacity: 1; }
.navbar.scrolled {
    padding: 1rem 4rem;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.nav-logo-container {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
    position: relative; z-index: 2;
}
.nav-logo { 
    height: 52px; width: auto; 
    transition: all 0.4s ease; 
    mix-blend-mode: screen; /* makes black bg transparent */
    filter: drop-shadow(0 0 8px transparent);
}
.nav-logo-container:hover .nav-logo { transform: scale(1.08); filter: drop-shadow(0 0 15px var(--gold-glow)); }

.nav-logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem; letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    display: none; /* Logo image already contains the brand name */
}
.nav-logo-text .sub { display: block; font-size: 0.7rem; color: var(--gold); letter-spacing: 4px; }

.nav-links {
    display: flex; gap: 3rem; align-items: center;
    position: relative; z-index: 2;
}

.nav-link {
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem; letter-spacing: 2px; text-transform: uppercase;
    position: relative; padding: 0.5rem 0;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 1px;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }

/* Mega Dropdown */
.dropdown { position: relative; }
.dropbtn {
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem; letter-spacing: 2px; text-transform: uppercase;
    background: none; border: none; cursor: pointer;
    display: flex; align-items: center; gap: 8px;
    padding: 0.5rem 0;
    transition: color 0.3s;
}
.dropbtn:hover, .dropdown:hover .dropbtn { color: var(--gold); }
.dropbtn i { font-size: 0.7rem; transition: transform 0.4s; }
.dropdown:hover .dropbtn i { transform: rotate(180deg); }

.dropdown-panel {
    position: absolute; top: calc(100% + 1.5rem); left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(8, 8, 16, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-top: 2px solid var(--gold);
    border-radius: 12px;
    padding: 1rem;
    min-width: 220px;
    opacity: 0; visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
}
.dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.dropdown-panel a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-radius: 8px;
    text-decoration: none; color: rgba(255,255,255,0.7);
    font-family: 'Oswald', sans-serif; letter-spacing: 1px; font-size: 0.95rem;
    transition: all 0.3s;
}
.dropdown-panel a i { color: var(--gold); width: 20px; opacity: 0.7; }
.dropdown-panel a:hover { background: rgba(212, 175, 55, 0.1); color: var(--gold); padding-left: 22px; }
.dropdown-panel a:hover i { opacity: 1; }

/* Cart button */
.cart-btn {
    position: relative; text-decoration: none;
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold); font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; z-index: 2;
}
.cart-btn:hover {
    background: var(--gold); color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--gold-glow), 0 0 60px rgba(212,175,55,0.2);
}
.cart-count {
    position: absolute; top: -6px; right: -6px;
    background: var(--gold); color: #000;
    font-family: 'Oswald', sans-serif; font-size: 0.8rem; font-weight: 700;
    border-radius: 50%; width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--bg); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cart-count.pop { transform: scale(1.6) rotate(15deg); }

/* =====================
   HERO — CINEMATIC FULL SCREEN
===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 6rem 2rem 2rem;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    filter: brightness(0.6) contrast(1.1);
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(3,3,10,0.3) 0%, rgba(3,3,10,0.85) 80%);
    box-shadow: inset 0 0 150px rgba(0,0,0,0.9);
    z-index: 1;
}

#particle-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 2;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1000px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glass-card {
    background: rgba(12, 12, 20, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.7), inset 0 0 40px rgba(255,255,255,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    opacity: 0; transform: translateY(40px);
    animation: cardReveal 1.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardReveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.5rem;
}
.eyebrow-line {
    display: block; width: 40px; height: 1px;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
}
.hero-eyebrow span:nth-child(2) {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem; letter-spacing: 6px; text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.text-gradient {
    background: linear-gradient(to right, #fff, var(--gold), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}
@keyframes shine {
    to { background-position: 200% center; }
}

.hero-lead {
    color: rgba(255,255,255,0.85);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-subtext {
    color: var(--gold);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.glow-btn::before {
    box-shadow: 0 0 20px var(--gold-glow);
}

.hero-actions {
    display: flex; align-items: center; gap: 2rem;
    flex-wrap: wrap;
}

.hero-ghost-btn {
    display: inline-flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem; letter-spacing: 2px; text-transform: uppercase;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s;
}
.hero-ghost-btn:hover { color: var(--gold); border-color: var(--gold); }

/* Scroll hint */
.scroll-hint {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 10; opacity: 0;
    animation: cardReveal 1s 1.5s forwards;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem; letter-spacing: 4px; color: rgba(255,255,255,0.5); text-transform: uppercase;
}
.scroll-mouse {
    width: 24px; height: 38px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px; position: relative;
}
.scroll-mouse::after {
    content: '';
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 8px;
    background: var(--gold); border-radius: 4px;
    animation: scrollDown 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--gold);
}

@media (max-width: 768px) {
    .glass-card { padding: 3rem 1.5rem; border-radius: 16px; }
    .hero-actions { flex-direction: column; gap: 1rem; }
    .hero-eyebrow span:nth-child(2) { font-size: 0.8rem; letter-spacing: 4px; }
}


/* ============================================================
   CTA BUTTON (shared)
============================================================ */
.cta-btn {
    display: inline-flex; align-items: center; gap: 15px;
    padding: 18px 50px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem; letter-spacing: 3px; text-transform: uppercase;
    text-decoration: none;
    position: relative; overflow: hidden;
    cursor: pointer;
    transition: color 0.4s;
}
.cta-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gold);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-btn:hover::before { transform: translateX(0) skewX(-15deg); }
.cta-btn:hover { color: #000; box-shadow: 0 0 40px var(--gold-glow); }
.cta-btn span { position: relative; z-index: 1; }
.cta-btn i { position: relative; z-index: 1; transition: transform 0.4s; }
.cta-btn:hover i { transform: translateX(8px); }

/* Scroll hint */
.scroll-hint {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    z-index: 10; opacity: 0;
    animation: fadeIn 1s 3.5s forwards;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-hint span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem; letter-spacing: 4px; color: rgba(255,255,255,0.4);
}
.scroll-mouse {
    width: 22px; height: 36px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 11px; position: relative;
}
.scroll-mouse::after {
    content: '';
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 3px; height: 7px;
    background: var(--gold); border-radius: 3px;
    animation: scrollDown 2s ease-in-out infinite;
    box-shadow: 0 0 6px var(--gold);
}
@keyframes scrollDown {
    0%   { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* =====================
   BENTO PRODUCTS GRID
===================== */
.products-section {
    padding: 10rem 4rem;
    max-width: 1600px; margin: 0 auto;
}

.section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem; letter-spacing: 6px; color: var(--gold);
    text-transform: uppercase; margin-bottom: 1rem;
    opacity: 0; transform: translateX(-20px);
    transition: all 0.8s ease;
}
.section-label.revealed { opacity: 1; transform: translateX(0); }

.section-heading {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1; margin-bottom: 5rem;
    opacity: 0; transform: translateY(30px);
    transition: all 0.8s 0.1s ease;
}
.section-heading.revealed { opacity: 1; transform: translateY(0); }
.section-heading em { color: var(--gold); font-style: normal; }

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
}

.bento-card {
    position: relative; overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.bento-card.revealed { opacity: 1; transform: translateY(0) scale(1); }

.bento-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(212,175,55,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
    transform: translateY(-8px) scale(1.01);
}

/* Card Sizes */
.bento-card.span-5 { grid-column: span 5; }
.bento-card.span-7 { grid-column: span 7; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-3 { grid-column: span 3; }
.bento-card.span-2-rows { grid-row: span 2; }

.bento-img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.55; transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
    position: absolute; inset: 0;
}
.bento-card:hover .bento-img { opacity: 0.8; transform: scale(1.08); }

.bento-content {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(3,3,10,0.95) 0%, rgba(3,3,10,0.3) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 2rem;
    z-index: 2;
}

.bento-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem; letter-spacing: 3px; color: var(--gold);
    text-transform: uppercase; margin-bottom: 0.5rem;
    transform: translateY(5px); opacity: 0.8;
    transition: all 0.4s;
}
.bento-card:hover .bento-tag { opacity: 1; transform: translateY(0); }

.bento-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    line-height: 1.2; margin-bottom: 0.75rem;
    word-break: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
}

.bento-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem; color: var(--gold);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.bento-add {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 22px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transform: translateY(10px); opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: fit-content;
    position: relative; overflow: hidden;
}
.bento-card:hover .bento-add { transform: translateY(0); opacity: 1; }
.bento-add::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
}
.bento-add:hover::before { transform: scaleX(1); }
.bento-add:hover { color: #000; }
.bento-add span, .bento-add i { position: relative; z-index: 1; }

/* Glint efect on bento card */
.bento-card::after {
    content: '';
    position: absolute; inset:0;
    background: radial-gradient(600px at var(--mx,0) var(--my,0), rgba(212,175,55,0.08), transparent 60%);
    opacity: 0; pointer-events: none; z-index:3;
    transition: opacity 0.4s;
}
.bento-card:hover::after { opacity: 1; }

/* Badge */
.bento-badge {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: var(--gold); color: #000;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem; letter-spacing: 2px; padding: 4px 12px;
    border-radius: 999px; z-index: 5;
}
.badge-new { background: #e8f5e9; }

/* ============= MARQUEE STRIP ============= */
.marquee-section {
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 1.5rem 0;
    overflow: hidden;
    display: flex; gap: 0;
}

.marquee-track {
    display: flex; gap: 4rem;
    white-space: nowrap;
    animation: marqueeMove 25s linear infinite;
    flex-shrink: 0;
}

.marquee-track:nth-child(2) { animation-delay: -12.5s; }

@keyframes marqueeMove {
    from { transform: translateX(0%); }
    to   { transform: translateX(-100%); }
}

.marquee-item {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem; letter-spacing: 4px; text-transform: uppercase;
    color: rgba(255,255,255,0.15);
    display: flex; align-items: center; gap: 2rem;
}
.marquee-item .dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--gold); opacity: 0.5;
    flex-shrink: 0;
}

/* ============= ABOUT PREVIEW (NEW) ============= */
.about-section {
    padding: 10rem 4rem;
    max-width: 1600px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual-img {
    width: 100%; border-radius: 20px;
    object-fit: cover; height: 600px;
    filter: brightness(0.7) contrast(1.1);
    transition: all 0.6s ease;
    opacity: 0; transform: translateX(-50px);
    transition: opacity 0.8s, transform 0.8s ease;
}
.about-visual-img.revealed { opacity: 1; transform: translateX(0); }

.about-visual-frame {
    position: absolute; inset: -15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    pointer-events: none;
    transition: all 0.6s;
}
.about-visual:hover .about-visual-frame {
    inset: -6px;
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 40px rgba(212,175,55,0.1);
}

.about-visual-badge {
    position: absolute; bottom: 2.5rem; left: -2.5rem;
    background: rgba(8,8,16,0.95);
    border: 1px solid var(--gold);
    border-radius: 12px; padding: 1.5rem 2rem;
    min-width: 180px;
    opacity: 0; transform: translateY(20px);
    transition: all 0.8s 0.3s ease;
}
.about-visual-badge.revealed { opacity: 1; transform: translateY(0); }
.about-badge-num {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem; color: var(--gold); line-height: 1;
}
.about-badge-text { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

.about-text { opacity: 0; transform: translateX(40px); transition: all 0.8s 0.15s ease; }
.about-text.revealed { opacity: 1; transform: translateX(0); }
.about-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1; margin-bottom: 2rem;
}
.about-text h2 em { color: var(--gold); font-style: normal; display: block; }
.about-text p { color: rgba(255,255,255,0.6); font-size: 1.1rem; line-height: 1.9; margin-bottom: 1.5rem; }
.about-quote {
    border-left: 3px solid var(--gold);
    padding: 1.2rem 1.5rem; margin: 2rem 0;
    background: rgba(212,175,55,0.03);
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem; font-style: italic;
    border-radius: 0 8px 8px 0;
}

/* ========================
   FEATURED STRIP (Stats)
===================== */
.stats-section {
    background: rgba(212,175,55,0.03);
    border-top: 1px solid rgba(212,175,55,0.1);
    border-bottom: 1px solid rgba(212,175,55,0.1);
    padding: 5rem 4rem;
    display: flex; justify-content: space-around; align-items: center;
    flex-wrap: wrap; gap: 3rem;
}
.stat-item {
    text-align: center;
    opacity: 0; transform: translateY(20px);
    transition: all 0.6s ease;
}
.stat-item.revealed { opacity: 1; transform: translateY(0); }
.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem; color: var(--gold);
    line-height: 1;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label { color: rgba(255,255,255,0.4); font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; margin-top: 0.5rem; }

/* =====================
   FOOTER
===================== */
.footer {
    padding: 6rem 4rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    max-width: 1600px; margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem; margin-bottom: 4rem;
}
.footer-brand p {
    color: rgba(255,255,255,0.4);
    margin-top: 1.5rem; font-size: 0.95rem; line-height: 1.7; max-width: 280px;
}
.footer-logo { height: 64px; mix-blend-mode: screen; filter: drop-shadow(0 0 8px rgba(212,175,55,0.2)); }
.footer-col-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem; letter-spacing: 4px; color: var(--gold);
    text-transform: uppercase; margin-bottom: 1.5rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
    text-decoration: none; color: rgba(255,255,255,0.4);
    font-size: 0.95rem; transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
}
.footer-links a i { font-size: 0.75rem; color: var(--gold); opacity: 0.6; }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-btn {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: rgba(255,255,255,0.4); font-size: 1rem;
    text-decoration: none;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s;
}
.social-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); transform: translateY(-5px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
    color: rgba(255,255,255,0.2); font-size: 0.85rem;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ========================
   TOAST
================== */
#toast-container {
    position: fixed; bottom: 2rem; right: 2rem;
    z-index: 9999; display: flex; flex-direction: column; gap: 1rem;
}
.toast {
    background: rgba(8, 8, 16, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-left: 3px solid var(--gold);
    border-radius: 10px; padding: 1.2rem 1.8rem;
    display: flex; align-items: center; gap: 15px;
    min-width: 300px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    opacity: 0; transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
}
.toast.visible { opacity: 1; transform: translateY(0); }

/* ========================
   SHARED: Buttons
================== */
.btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 35px; border: 1px solid rgba(255,255,255,0.2);
    background: transparent; color: var(--white); text-decoration: none;
    font-family: 'Oswald', sans-serif; letter-spacing: 2px; font-size: 0.95rem;
    transition: all 0.4s;
    border-radius: 4px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.05); }

/* ========================
   PAGE HEADER (Sub-pages)
================== */
.page-header {
    min-height: 50vh;
    display: flex; flex-direction: column;
    justify-content: flex-end; align-items: flex-start;
    padding: 12rem 4rem 5rem;
    position: relative; overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(3,3,10,0.3), rgba(3,3,10,0.95));
    z-index: 1;
}
.page-header-bg {
    position: absolute; inset: 0;
    background-attachment: fixed; background-size: cover; background-position: center;
    filter: saturate(0) brightness(0.3);
}
.page-header-content { position: relative; z-index: 2; }
.page-pretitle {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem; letter-spacing: 6px; color: var(--gold);
    text-transform: uppercase; margin-bottom: 1rem;
}
.page-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1;
}
.page-title em { color: var(--gold); font-style: normal; }

/* =====================
   SUBPAGE PRODUCTS
===================== */
.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    max-width: 1600px; margin: 0 auto;
    padding: 5rem 4rem;
}
.sidebar {
    position: sticky; top: 100px; height: fit-content;
}
.sidebar-section { margin-bottom: 3rem; }
.sidebar-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem; letter-spacing: 4px; color: var(--gold);
    text-transform: uppercase; margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212,175,55,0.15);
}
.filter-btn {
    display: flex; align-items: center; gap: 12px;
    width: 100%; background: none; border: none;
    color: rgba(255,255,255,0.5); font-size: 0.95rem;
    cursor: pointer; padding: 10px 0;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    text-align: left;
}
.filter-btn i { color: var(--gold); opacity: 0.5; width: 18px; }
.filter-btn:hover, .filter-btn.active { color: var(--gold); padding-left: 8px; }
.filter-btn:hover i, .filter-btn.active i { opacity: 1; }
.filter-btn.active { font-weight: 700; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}
.product-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px; overflow: hidden;
    display: flex; flex-direction: column;
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
    opacity: 0; transform: translateY(30px);
}
.product-card.revealed { opacity: 1; transform: translateY(0); }
.product-card:hover { border-color: rgba(212,175,55,0.25); transform: translateY(-12px); box-shadow: 0 25px 60px rgba(0,0,0,0.8); }
.product-img-wrap { position: relative; height: 280px; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: all 0.6s ease; }
.product-card:hover .product-img-wrap img { opacity: 1; transform: scale(1.1); }
.product-badge { position: absolute; top: 1rem; left: 1rem; padding: 4px 14px; border-radius: 999px; font-family: 'Oswald', sans-serif; font-size: 0.7rem; letter-spacing: 2px; }
.badge-hot { background: #c62828; color: #fff; }
.badge-new { background: var(--gold); color: #000; }
.product-body { padding: 1.8rem; flex-grow: 1; display: flex; flex-direction: column; }
.product-tag { font-family: 'Oswald', sans-serif; font-size: 0.7rem; letter-spacing: 3px; color: var(--gold); margin-bottom: 0.5rem; }
.product-name { font-family: 'Oswald', sans-serif; font-size: 1.3rem; margin-bottom: auto; line-height: 1.25; word-break: break-word; overflow-wrap: break-word; }
.product-price { font-family: 'Oswald', sans-serif; font-size: 2rem; color: var(--gold); margin: 1.2rem 0; }
.add-to-cart-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 14px;
    border: 1px solid rgba(212,175,55,0.3); background: rgba(212,175,55,0.05);
    color: var(--gold); cursor: pointer; border-radius: 8px;
    font-family: 'Oswald', sans-serif; letter-spacing: 2px; font-size: 0.9rem;
    transition: all 0.4s;
    position: relative; overflow: hidden;
}
.add-to-cart-btn::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
}
.add-to-cart-btn:hover::before { transform: scaleX(1); }
.add-to-cart-btn:hover { color: #000; }
.add-to-cart-btn span, .add-to-cart-btn i { position: relative; z-index: 1; }

/* =====================
   ABOUT PAGE
===================== */
.about-hero {
    padding: 14rem 4rem 6rem;
    max-width: 1600px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
}
.values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; padding: 5rem 4rem;
    max-width: 1600px; margin: 0 auto;
}
.value-card {
    background: var(--card-bg); border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px; padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0; transform: translateY(30px);
}
.value-card.revealed { opacity: 1; transform: translateY(0); }
.value-card:hover { border-color: rgba(212,175,55,0.25); transform: translateY(-10px); }
.value-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.value-title { font-family: 'Oswald', sans-serif; font-size: 1.4rem; margin-bottom: 1rem; }
.value-text { color: rgba(255,255,255,0.5); line-height: 1.7; }

/* =====================
   GALLERY PAGE
===================== */
.gallery-grid {
    padding: 5rem 4rem;
    max-width: 1600px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
}
.gallery-item {
    position: relative; border-radius: 16px;
    overflow: hidden; cursor: pointer;
    opacity: 0; transform: scale(0.97);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.gallery-item.revealed { opacity: 1; transform: scale(1); }
.gallery-item.span-8 { grid-column: span 8; grid-row: span 2; }
.gallery-item.span-4 { grid-column: span 4; }
.gallery-item.span-6 { grid-column: span 6; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: all 0.7s ease; opacity: 0.7; }
.gallery-item:hover img { transform: scale(1.1); opacity: 1; }
.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(3,3,10,1), transparent);
    padding: 3rem 2rem 1.5rem;
    transform: translateY(100%); transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-caption h4 { font-family: 'Oswald', sans-serif; color: var(--gold); font-size: 1.3rem; }
.gallery-caption p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 4px;}

/* =====================
   CART PAGE
===================== */
.cart-page {
    max-width: 1400px; margin: 0 auto;
    padding: 5rem 4rem;
    display: grid; grid-template-columns: 1fr 380px;
    gap: 3rem;
}
.cart-list { display: flex; flex-direction: column; gap: 1.5rem; }
.cart-row {
    display: flex; align-items: center; gap: 2rem;
    padding: 1.8rem;
    background: var(--card-bg); border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: border-color 0.3s;
}
.cart-row:hover { border-color: rgba(212,175,55,0.2); }
.cart-row img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; opacity: 0.8; }
.cart-row-info { flex: 1; }
.cart-row-name { font-family: 'Oswald', sans-serif; font-size: 1.2rem; margin-bottom: 4px; }
.cart-row-price { color: var(--gold); font-size: 1rem; }
.qty-controls { display: flex; align-items: center; gap: 12px; }
.qty-btn {
    width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15); background: transparent;
    color: var(--white); cursor: pointer; transition: all 0.3s;
}
.qty-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.qty-input { width: 40px; text-align: center; background: none; border: none; color: var(--white); font-size: 1.1rem; font-weight: bold; }
.qty-total { font-family: 'Oswald', sans-serif; font-size: 1.4rem; color: var(--gold); min-width: 100px; text-align: right; }
.remove-btn {
    background: none; border: none;
    color: rgba(255,82,82,0.5); cursor: pointer; font-size: 1.1rem;
    width: 36px; height: 36px; border-radius: 50%;
    transition: all 0.3s;
}
.remove-btn:hover { background: rgba(255,82,82,0.1); color: #ff5252; }

.cart-summary-panel {
    background: var(--card-bg); border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.2);
    padding: 2.5rem; height: fit-content;
    position: sticky; top: 100px;
}
.cs-title { font-family: 'Oswald', sans-serif; font-size: 1.5rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cs-row { display: flex; justify-content: space-between; margin-bottom: 1rem; color: rgba(255,255,255,0.5); }
.cs-total { display: flex; justify-content: space-between; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06); font-family: 'Oswald', sans-serif; font-size: 2rem; color: var(--gold); }
.checkout-btn {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    width: 100%; margin-top: 2rem; padding: 18px;
    background: var(--gold); color: #000; border: none; cursor: pointer;
    font-family: 'Oswald', sans-serif; font-size: 1.1rem; letter-spacing: 2px; text-transform: uppercase;
    border-radius: 10px;
    transition: all 0.4s;
    position: relative; overflow: hidden;
}
.checkout-btn::before { content: ''; position: absolute; inset: 0; background: var(--gold-light); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.checkout-btn:hover::before { transform: scaleX(1); }
.checkout-btn span, .checkout-btn i { position: relative; z-index: 1; }
.checkout-btn:hover { box-shadow: 0 10px 30px rgba(212,175,55,0.4); }

.empty-cart {
    padding: 5rem; text-align: center;
    background: var(--card-bg); border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
}
.empty-cart-icon { font-size: 4rem; color: rgba(212,175,55,0.2); margin-bottom: 2rem; }
.empty-cart h3 { font-family: 'Oswald', sans-serif; font-size: 2rem; margin-bottom: 1rem; }
.empty-cart p { color: rgba(255,255,255,0.4); margin-bottom: 2rem; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ========================
   SEARCH TRIGGER BUTTON
======================== */
.search-trigger {
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem; padding: 8px;
    transition: color 0.3s;
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
}
.search-trigger:hover { color: var(--gold); }

/* ========================
   SEARCH OVERLAY
======================== */
#search-overlay {
    position: fixed; inset: 0;
    z-index: 99000;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
#search-overlay.open { opacity: 1; visibility: visible; }

.search-backdrop {
    position: absolute; inset: 0;
    background: rgba(3, 3, 10, 0.9);
    backdrop-filter: blur(16px);
}

.search-modal {
    position: absolute;
    top: 15%;
    left: 50%; transform: translateX(-50%) translateY(-20px);
    width: min(680px, 92vw);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}
#search-overlay.open .search-modal { transform: translateX(-50%) translateY(0); }

.search-input-wrap {
    display: flex; align-items: center; gap: 1rem;
    background: rgba(15, 15, 25, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    padding: 1.2rem 1.6rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.9);
}
.search-icon-inner {
    color: rgba(212, 175, 55, 0.6);
    font-size: 1.1rem; flex-shrink: 0;
}
#search-input {
    flex: 1; background: none; border: none; outline: none;
    color: var(--white); font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    caret-color: var(--gold);
}
#search-input::placeholder { color: rgba(255,255,255,0.25); }
#search-close {
    background: none; border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    width: 34px; height: 34px; border-radius: 8px;
    cursor: pointer; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}
#search-close:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.search-results {
    margin-top: 0.75rem;
    background: rgba(10, 10, 20, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 14px;
    overflow: hidden;
    max-height: 420px;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.9);
}
.search-results:empty { display: none; }

.search-result-item {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 1.1rem 1.6rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.25s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: rgba(212, 175, 55, 0.06); }
.search-result-item img {
    width: 56px; height: 56px; object-fit: cover;
    border-radius: 8px; opacity: 0.8; flex-shrink: 0;
}
.sri-info { flex: 1; min-width: 0; }
.sri-name {
    color: var(--white); font-size: 1rem; font-weight: 500;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sri-cat {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem; margin-top: 3px;
    font-family: 'Oswald', sans-serif; letter-spacing: 2px; text-transform: uppercase;
}
.sri-price {
    color: var(--gold); font-family: 'Oswald', sans-serif;
    font-size: 1.1rem; flex-shrink: 0;
}

.search-empty {
    padding: 3rem; text-align: center;
    color: rgba(255,255,255,0.3);
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.search-empty i { font-size: 2.5rem; color: rgba(212,175,55,0.2); }
.search-empty p strong { color: rgba(255,255,255,0.6); }

/* Fix: stat-num background-clip compatibility */
.stat-num {
    background-clip: text;
}


/* Responsive */
@media (max-width: 1200px) {
    .bento-grid { grid-template-columns: repeat(6,1fr); grid-auto-rows: 250px; }
    .bento-card.span-5 { grid-column: span 6; }
    .bento-card.span-7 { grid-column: span 6; }
    .bento-card.span-4 { grid-column: span 3; }
    .bento-card.span-3 { grid-column: span 3; }
    .about-section, .about-hero { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .products-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
}
@media (max-width: 768px) {
    .products-section, .about-section, .gallery-grid, .cart-page { padding: 5rem 1.5rem; }
    .bento-grid { display: flex; flex-direction: column; }
    .gallery-grid { display: flex; flex-direction: column; }
    .navbar { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .cart-page { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .about-visual-badge { left: 1rem; }
    .stats-section { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
}
