/* ═══════════════════════════════════════════════════
   EdenElite — Premium Glassmorphic Design System
   ═══════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
    /* Theme Colors */
    --bg-primary: #07060b;
    --bg-secondary: #0d0b14;
    --bg-tertiary: #13101d;
    --gold: #d4af37;
    --gold-light: #f0d060;
    --gold-dark: #b8962e;
    --rose: #e91e63;
    --rose-light: #ff5c8d;
    --purple: #9c27b0;
    --purple-deep: #6a1b9a;
    --accent: var(--gold);
    --text-primary: #ffffff;
    --text-secondary: rgba(255,255,255,0.7);
    --text-muted: rgba(255,255,255,0.45);
    /* Glass */
    --glass-bg: rgba(255,255,255,0.04);
    --glass-bg-hover: rgba(255,255,255,0.08);
    --glass-border: rgba(255,255,255,0.08);
    --glass-border-hover: rgba(255,255,255,0.15);
    --glass-blur: 20px;
    --glass-shadow: 0 8px 32px rgba(0,0,0,0.3);
    /* Typography */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Poppins', 'Helvetica Neue', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1280px;
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-normal: 0.4s var(--ease-out-expo);
    --transition-slow: 0.6s var(--ease-out-expo);
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

body.no-scroll { overflow: hidden; }

::selection { background: var(--gold); color: var(--bg-primary); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-padding); position: relative; }
.accent { color: var(--gold); }

/* ─── GLASSMORPHISM UTILITIES ─── */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

.glass-card-sm {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.glass-card-sm:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.glass-select {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    color: var(--text-primary);
    outline: none;
    cursor: pointer;
    transition: var(--transition-fast);
}
.glass-select:focus { border-color: var(--gold); }
.glass-select option { background: var(--bg-secondary); color: var(--text-primary); }

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}
.btn-glass:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

.btn-glow { animation: btnGlow 2s ease-in-out infinite; }

.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(212,175,55,0.3); }
    50% { box-shadow: 0 4px 40px rgba(212,175,55,0.6); }
}

/* ─── ANIMATED BACKGROUND ─── */
.bg-animated {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: orbFloat 20s ease-in-out infinite;
}

.bg-orb-1 {
    width: 600px; height: 600px;
    background: var(--gold);
    top: -200px; left: -200px;
    animation-delay: 0s;
}
.bg-orb-2 {
    width: 500px; height: 500px;
    background: var(--purple);
    top: 50%; right: -150px;
    animation-delay: -5s;
    animation-duration: 25s;
}
.bg-orb-3 {
    width: 400px; height: 400px;
    background: var(--rose);
    bottom: -100px; left: 30%;
    animation-delay: -10s;
    animation-duration: 22s;
}
.bg-orb-4 {
    width: 350px; height: 350px;
    background: #1e88e5;
    top: 40%; left: 20%;
    animation-delay: -15s;
    animation-duration: 28s;
    opacity: 0.08;
}

#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -80px) scale(1.1); }
    50% { transform: translate(-30px, 60px) scale(0.9); }
    75% { transform: translate(70px, 30px) scale(1.05); }
}

/* ─── PRELOADER ─── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner { text-align: center; }
.preloader-logo {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 12px;
    margin-bottom: 30px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: preloaderFill 2s var(--ease-out-expo) forwards;
}

.preloader-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
@keyframes preloaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(7,6,11,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 6px;
}
.logo-sub {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    background: var(--glass-bg);
}
.nav-link.active { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.nav-icon-btn {
    width: 42px; height: 42px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    position: relative;
}
.nav-icon-btn:hover {
    background: var(--glass-bg);
    color: var(--text-primary);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 2px; right: 2px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--rose);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform var(--transition-fast);
}
.badge.show { transform: scale(1); }

.admin-trigger { opacity: 0.4; }
.admin-trigger:hover { opacity: 1; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav-hamburger span {
    display: block;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 60px;
    position: relative;
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-container { z-index: 2; }

.hero-badge { margin-bottom: 24px; }

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-line { display: block; }
.hero-line-accent {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--rose-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.hero-stat { text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}
.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual - Perfume Bottle */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-bottle-container {
    position: relative;
    width: 350px;
    height: 450px;
}

.hero-bottle-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.3), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 3s ease-in-out infinite;
}

.hero-bottle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bottleFloat 6s ease-in-out infinite;
}

.bottle-shape { position: relative; text-align: center; }

.bottle-cap {
    width: 30px;
    height: 25px;
    background: linear-gradient(135deg, #c0a030, #e8d070, #c0a030);
    margin: 0 auto;
    border-radius: 4px 4px 0 0;
    position: relative;
}
.bottle-cap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 4px;
    background: #a08828;
    border-radius: 0 0 2px 2px;
}

.bottle-neck {
    width: 22px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.15);
    border-top: none;
}

.bottle-body {
    width: 160px;
    height: 220px;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px 8px 24px 24px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.bottle-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
    background: linear-gradient(180deg, rgba(212,175,55,0.3), rgba(212,175,55,0.5));
    border-radius: 0 0 23px 23px;
    animation: liquidWave 4s ease-in-out infinite;
}
.bottle-liquid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: liquidShine 3s ease-in-out infinite;
}

.bottle-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 6px;
    font-weight: 700;
    z-index: 2;
    text-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.bottle-reflection {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 30%;
    height: 60%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
    transform: rotate(-20deg);
}

/* Floating scent notes */
.floating-notes { position: absolute; inset: 0; }
.float-note {
    position: absolute;
    font-size: 1.5rem;
    animation: floatNote 8s ease-in-out infinite;
    opacity: 0.7;
}
.note-1 { top: 10%; left: 10%; animation-delay: 0s; }
.note-2 { top: 5%; right: 15%; animation-delay: -1.3s; }
.note-3 { bottom: 20%; left: 5%; animation-delay: -2.6s; }
.note-4 { bottom: 10%; right: 10%; animation-delay: -3.9s; }
.note-5 { top: 40%; left: -5%; animation-delay: -5.2s; }
.note-6 { top: 30%; right: 0%; animation-delay: -6.5s; }

@keyframes floatNote {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
    25% { transform: translate(15px, -20px) rotate(10deg); opacity: 1; }
    50% { transform: translate(-10px, -35px) rotate(-5deg); opacity: 0.5; }
    75% { transform: translate(20px, -15px) rotate(15deg); opacity: 0.8; }
}
@keyframes bottleFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}
@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.8; }
}
@keyframes liquidWave {
    0%, 100% { height: 65%; }
    50% { height: 68%; }
}
@keyframes liquidShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 2s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

/* ─── MARQUEE BANNER ─── */
.marquee-banner {
    padding: 16px 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
    border-top: 1px solid rgba(212,175,55,0.15);
    border-bottom: 1px solid rgba(212,175,55,0.15);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 60px;
    flex-shrink: 0;
    padding-right: 60px;
}

.marquee-content span {
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── SECTION HEADERS ─── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin: 16px 0;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ─── COLLECTIONS ─── */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.collection-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 360px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.collection-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8));
    z-index: 1;
    transition: var(--transition-normal);
}

.collection-card:hover { transform: translateY(-8px) scale(1.02); }
.collection-card:hover::before { background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.9)); }

.collection-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    transition: transform var(--transition-slow);
}

.collection-card:hover .collection-bg { transform: scale(1.1); }

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    transform: translateY(10px);
    transition: transform var(--transition-normal);
}

.collection-card:hover .collection-info { transform: translateY(0); }

.collection-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.collection-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.collection-count {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── PRODUCTS GRID ─── */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-fast);
}
.filter-tab:hover { background: var(--glass-bg-hover); color: var(--text-primary); }
.filter-tab.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    border-color: var(--gold);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

/* Product Card */
.product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.product-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    transition: var(--transition-normal);
}

.product-card:hover .product-card-image { transform: scale(1.05); }

.product-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.product-badge.new { background: var(--gold); color: var(--bg-primary); }
.product-badge.sale { background: var(--rose); color: white; }
.product-badge.bestseller { background: var(--purple); color: white; }

.product-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-normal);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}
.product-action-btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: scale(1.1);
}
.product-action-btn.wishlisted { color: var(--rose); }

.product-card-info {
    padding: 20px;
}

.product-card-brand {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 6px;
}

.product-card-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-notes {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-price-current {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.product-price-original {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-rating i {
    font-size: 0.75rem;
    color: var(--gold);
}

.product-rating span {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.product-card-cart {
    margin-top: 16px;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.product-card:hover .product-card-cart {
    opacity: 1;
    transform: translateY(0);
}

.product-card-cart:hover {
    box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}

.products-load-more { text-align: center; margin-top: 50px; }

/* ─── FEATURED CAROUSEL ─── */
.featured-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s var(--ease-out-expo);
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all var(--transition-fast);
}
.carousel-btn:hover { background: var(--gold); color: var(--bg-primary); }
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.carousel-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--gold);
}

/* ─── AI FINDER ─── */
.ai-section { background: linear-gradient(180deg, transparent, rgba(212,175,55,0.03), transparent); }

.ai-finder-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    position: relative;
}

.ai-progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-bottom: 40px;
    position: relative;
}

.ai-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    transition: width var(--transition-normal);
    width: 20%;
}

.ai-progress-steps {
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
}

.ai-progress-step {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all var(--transition-fast);
}
.ai-progress-step.active { background: var(--gold); border-color: var(--gold); }
.ai-progress-step.completed { background: var(--gold); border-color: var(--gold); }

.ai-step {
    display: none;
    animation: fadeInUp 0.5s var(--ease-out-expo);
}
.ai-step.active { display: block; }

.ai-question {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}
.ai-question i { color: var(--gold); margin-right: 10px; }

.ai-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.ai-option {
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ai-option i, .ai-option .ai-emoji {
    font-size: 2rem;
    color: var(--gold);
}

.ai-option span { font-size: 0.9rem; font-weight: 500; }

.ai-option:hover, .ai-option.selected {
    background: rgba(212,175,55,0.15);
    border-color: var(--gold);
    transform: translateY(-4px) scale(1.02);
}

.ai-option.selected {
    box-shadow: 0 0 30px rgba(212,175,55,0.2);
}

/* AI Analyzing */
.ai-analyzing {
    text-align: center;
    padding: 40px;
}

.ai-brain {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    animation: brainPulse 1.5s ease-in-out infinite;
}

@keyframes brainPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(212,175,55,0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 40px rgba(212,175,55,0.6); }
}

.ai-loading-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.ai-loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: dotBounce 1.4s ease-in-out infinite;
}
.ai-loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.ai-loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

.ai-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.ai-results-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--gold);
}

.ai-match-score {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(212,175,55,0.2);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-hover);
}

.testimonial-stars {
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── ABOUT ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    color: var(--text-secondary);
    margin: 16px 0;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
}
.about-feature i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}
.about-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.about-feature p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.about-image-stack { position: relative; height: 450px; }

.about-img-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-card:first-child {
    width: 280px;
    height: 350px;
    top: 0;
    left: 20px;
}

.about-img-card:last-child {
    width: 240px;
    height: 280px;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.about-img-card.floating { animation: floatSlow 6s ease-in-out infinite; }

.about-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(156,39,176,0.08));
    padding: 20px;
    text-align: center;
}

.about-img-placeholder i {
    font-size: 3rem;
    color: var(--gold);
}

.about-img-placeholder span {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--text-secondary);
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ─── NEWSLETTER ─── */
.newsletter-card {
    padding: 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(156,39,176,0.05));
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.newsletter-content > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form { max-width: 500px; margin: 0 auto; }

.newsletter-input-wrap {
    display: flex;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 6px;
}

.newsletter-input-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 12px 20px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.newsletter-input-wrap input::placeholder { color: var(--text-muted); }

.newsletter-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-card i {
    font-size: 1.2rem;
    color: var(--gold);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}
.contact-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.85rem; color: var(--text-secondary); }

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.social-link:hover { color: var(--gold); }

.contact-form {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition-fast);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

/* ─── FOOTER ─── */
.footer {
    padding: 60px 0 30px;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 16px 0;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 1rem;
    transition: all var(--transition-fast);
}
.footer-socials a:hover { background: var(--gold); color: var(--bg-primary); }

.footer-links h4 {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--gold);
}
.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom i.fa-heart { color: var(--rose); }

.footer-payments {
    display: flex;
    gap: 16px;
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* ─── CART SIDEBAR ─── */
.cart-overlay, .wishlist-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}
.cart-overlay.open, .wishlist-overlay.open { opacity: 1; visibility: visible; }

.cart-sidebar, .wishlist-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    z-index: 2001;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.cart-sidebar.open, .wishlist-sidebar.open { transform: translateX(0); }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--glass-border);
}
.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-fast);
}
.cart-close:hover { background: var(--rose); border-color: var(--rose); }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px 20px;
    text-align: center;
    color: var(--text-muted);
}
.cart-empty i { font-size: 3rem; }

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
    animation: slideInRight 0.4s var(--ease-out-expo);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.cart-item-details { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.cart-item-variant { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; }

.cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}
.qty-btn:hover { background: var(--gold); color: var(--bg-primary); }

.cart-item-price { font-weight: 600; color: var(--gold); }

.cart-item-remove {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 4px;
    transition: var(--transition-fast);
}
.cart-item-remove:hover { color: var(--rose); }

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--glass-border);
}

.cart-discount {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.cart-discount input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    outline: none;
    font-size: 0.85rem;
}
.cart-discount input::placeholder { color: var(--text-muted); }
.cart-discount .btn-sm {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
}
.cart-discount .btn-sm:hover { background: var(--gold); color: var(--bg-primary); }

.cart-totals { margin-bottom: 20px; }

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cart-total-final {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 1px solid var(--glass-border);
    padding-top: 12px;
    margin-top: 8px;
}
.cart-total-final span:last-child { color: var(--gold); font-size: 1.2rem; }

.discount-row { color: #4caf50; }

/* ─── PRODUCT MODAL ─── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    padding: 20px;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-content {
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform var(--transition-slow);
}
.modal-overlay.open .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all var(--transition-fast);
}
.modal-close:hover { background: var(--rose); border-color: var(--rose); }

.modal-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.modal-product-image {
    border-radius: var(--radius-lg);
    background: var(--glass-bg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

.cart-checkout-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.checkout-modal-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 32px;
}

.checkout-panel,
.checkout-summary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.checkout-section {
    margin-bottom: 24px;
}

.checkout-section h3 {
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.checkout-field label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.checkout-field input,
.checkout-field textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.06);
    color: var(--text-primary);
    outline: none;
}

.checkout-field textarea {
    min-height: 110px;
    resize: vertical;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.checkout-summary-row:last-child {
    border-bottom: none;
}

.checkout-summary-total {
    font-size: 1rem;
    font-weight: 700;
}

.checkout-summary-help,
.checkout-help {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkout-actions {
    display: grid;
    gap: 12px;
}

@media (max-width: 960px) {
    .checkout-modal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .checkout-panel,
    .checkout-summary {
        padding: 20px;
    }
}

.modal-product-info { padding: 10px 0; }

.modal-product-brand {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 8px;
}

.modal-product-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.modal-product-rating i { color: var(--gold); }
.modal-product-rating span { color: var(--text-muted); font-size: 0.9rem; }

.modal-product-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}
.modal-price-current {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}
.modal-price-original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.modal-product-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.modal-product-notes {
    margin-bottom: 24px;
}
.modal-product-notes h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--text-secondary);
}
.modal-notes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.modal-note-tag {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    font-size: 0.8rem;
    color: var(--gold);
}

.modal-product-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.modal-meta-item i { color: var(--gold); width: 20px; }

.modal-qty-select {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.modal-qty-select label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.modal-actions {
    display: flex;
    gap: 12px;
}

.modal-actions .btn { flex: 1; justify-content: center; }

/* ─── ADMIN PANEL ─── */
.admin-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    padding: 16px;
}
.admin-overlay.open { opacity: 1; visibility: visible; }

.admin-panel {
    width: 100%;
    max-width: 1200px;
    height: calc(100vh - 32px);
    max-height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform var(--transition-slow);
    border-radius: var(--radius-lg);
}
.admin-overlay.open .admin-panel { transform: translateY(0); }

.admin-dashboard {
    display: none;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.admin-login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;
}

.admin-login-inner {
    text-align: center;
    max-width: 400px;
    width: 100%;
    padding: 40px;
}

.admin-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
}

.admin-login h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 8px;
}

.admin-login p { color: var(--text-secondary); margin-bottom: 24px; }

.admin-hint {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.admin-hint code {
    background: rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
}

.admin-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

.admin-topbar h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.admin-topbar h2 i { color: var(--gold); }

.admin-topbar-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.admin-tabs {
    display: flex;
    padding: 0 24px;
    border-bottom: 1px solid var(--glass-border);
    overflow-x: auto;
    gap: 4px;
    flex-shrink: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.admin-tab {
    padding: 12px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}
.admin-tab:hover { color: var(--text-primary); }
.admin-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}
.admin-tab i { font-size: 0.9rem; }

.admin-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

/* Admin Dashboard */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.admin-stat-card {
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.admin-stat-icon.gold { background: rgba(212,175,55,0.15); color: var(--gold); }
.admin-stat-icon.rose { background: rgba(233,30,99,0.15); color: var(--rose); }
.admin-stat-icon.purple { background: rgba(156,39,176,0.15); color: var(--purple); }
.admin-stat-icon.green { background: rgba(76,175,80,0.15); color: #4caf50; }

.admin-stat-info h3 { font-size: 1.5rem; font-weight: 700; }
.admin-stat-info p { font-size: 0.8rem; color: var(--text-muted); }

/* Admin Product List */
.admin-product-list {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.admin-product-list th {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
}

.admin-product-list td {
    padding: 12px 16px;
    background: var(--glass-bg);
    font-size: 0.9rem;
}

.admin-product-list tr td:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.admin-product-list tr td:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.admin-product-list .product-emoji { font-size: 1.5rem; }

.admin-btn-edit {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    background: rgba(212,175,55,0.15);
    color: var(--gold);
    font-size: 0.8rem;
    transition: var(--transition-fast);
}
.admin-btn-edit:hover { background: var(--gold); color: var(--bg-primary); }

.admin-btn-delete {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    background: rgba(233,30,99,0.15);
    color: var(--rose);
    font-size: 0.8rem;
    transition: var(--transition-fast);
}
.admin-btn-delete:hover { background: var(--rose); color: white; }

.admin-form-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 24px;
}

.admin-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

/* ─── CHATBOT ─── */
.chatbot-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    box-shadow: 0 8px 30px rgba(212,175,55,0.4);
    transition: all var(--transition-fast);
    cursor: pointer;
}
.chatbot-toggle:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(212,175,55,0.5); }

.chatbot-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gold);
    animation: chatPulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes chatPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 380px;
    max-width: calc(100vw - 48px);
    height: 520px;
    max-height: calc(100vh - 140px);
    z-index: 1501;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transform-origin: bottom right;
    transition: all var(--transition-normal);
}
.chatbot-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--glass-border);
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.chatbot-header h4 { font-size: 1rem; }

.chatbot-status {
    font-size: 0.75rem;
    color: #4caf50;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4caf50;
    display: inline-block;
}

.chatbot-minimize {
    margin-left: auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    transition: var(--transition-fast);
}
.chatbot-minimize:hover { background: var(--glass-bg-hover); }

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    max-width: 85%;
    animation: msgSlide 0.3s var(--ease-out-expo);
}

.chat-message.bot { align-self: flex-start; }
.chat-message.user { align-self: flex-end; }

.message-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.chat-message.bot .message-bubble {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-bottom-left-radius: 4px;
}

.chat-message.user .message-bubble {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    border-bottom-right-radius: 4px;
}

@keyframes msgSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chatbot-quick-replies {
    display: flex;
    gap: 8px;
    padding: 8px 16px;
    overflow-x: auto;
    flex-shrink: 0;
}

.quick-reply {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 0.8rem;
    white-space: nowrap;
    transition: all var(--transition-fast);
}
.quick-reply:hover { background: var(--gold); color: var(--bg-primary); border-color: var(--gold); }

.chatbot-input {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--glass-border);
}

.chatbot-input input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 10px 16px;
    color: var(--text-primary);
    outline: none;
    font-size: 0.9rem;
}
.chatbot-input input::placeholder { color: var(--text-muted); }

.chatbot-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}
.chatbot-input button:hover { transform: scale(1.1); }

/* ─── TOAST NOTIFICATIONS ─── */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    padding: 16px 24px;
    border-radius: var(--radius-md);
    background: rgba(7,6,11,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    animation: toastSlide 0.4s var(--ease-out-expo);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.toast.success .toast-icon { color: #4caf50; }
.toast.error .toast-icon { color: var(--rose); }
.toast.info .toast-icon { color: #2196f3; }
.toast.warning .toast-icon { color: #ff9800; }

.toast-icon { font-size: 1.2rem; }
.toast-message { font-size: 0.9rem; }

.toast.removing { animation: toastRemove 0.3s ease forwards; }

@keyframes toastSlide {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes toastRemove {
    to { opacity: 0; transform: translateX(100px); }
}

/* ─── BACK TO TOP ─── */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 100;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-4px); }

/* ─── SCROLL ANIMATIONS ─── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* Common animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ─── SEARCH OVERLAY ─── */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    background: rgba(0,0,0,0.8);
    transition: all var(--transition-normal);
}
.search-overlay.open { opacity: 1; visibility: visible; }

.search-overlay-inner {
    width: 600px;
    max-width: calc(100vw - 48px);
    padding: 40px;
    position: relative;
    transform: translateY(-20px);
    transition: transform var(--transition-slow);
}
.search-overlay.open .search-overlay-inner { transform: translateY(0); }

.search-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}
.search-close:hover { background: var(--rose); border-color: var(--rose); }

.search-overlay h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin-bottom: 16px;
}
.search-input-wrap i { color: var(--text-muted); }
.search-input-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 1rem;
}
.search-input-wrap input::placeholder { color: var(--text-muted); }

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.search-tag {
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    font-size: 0.8rem;
    color: var(--gold);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.search-tag:hover { background: var(--gold); color: var(--bg-primary); }

.search-results { max-height: 300px; overflow-y: auto; }

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.search-result-item:hover { background: var(--glass-bg-hover); }

.search-result-emoji { font-size: 2rem; }
.search-result-info h4 { font-size: 0.95rem; }
.search-result-info p { font-size: 0.8rem; color: var(--text-muted); }
.search-result-price { margin-left: auto; color: var(--gold); font-weight: 600; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .modal-product { grid-template-columns: 1fr; }
    .modal-product-image { height: 250px; }
    .carousel-slide { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-padding: 80px 0; }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(7,6,11,0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: 999;
    }
    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }
    .nav-link { font-size: 1.2rem; padding: 16px 30px; }
    .nav-hamburger { display: flex; z-index: 1000; }

    .hero { min-height: auto; padding: 140px 24px 60px; }
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 30px; }

    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .carousel-slide { grid-template-columns: 1fr; }

    .admin-panel { margin: 0; height: 100vh; max-height: 100vh; border-radius: 0; }
    .admin-overlay { padding: 0; }
    .admin-tabs { padding: 0 8px; gap: 0; }
    .admin-tab { padding: 10px 12px; font-size: 0.75rem; }
    .admin-content { padding: 16px; }
    .admin-topbar { padding: 12px 16px; }
    .admin-topbar h2 { font-size: 1.1rem; }
    .admin-topbar-actions { gap: 4px; }
    .admin-topbar-actions .btn { font-size: 0.7rem; padding: 6px 10px; }
    .admin-form-card { padding: 20px; }
    .admin-form-grid { grid-template-columns: 1fr; }

    .newsletter-card { padding: 30px; }
    .newsletter-input-wrap { flex-direction: column; border-radius: var(--radius-md); }
    .newsletter-input-wrap .btn { border-radius: var(--radius-full); }

    .ai-finder-container { padding: 30px 20px; }
    .ai-options { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .collections-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .products-toolbar { flex-direction: column; align-items: stretch; }
    .filter-tabs { justify-content: center; }
    .admin-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── PRINT ─── */
@media print {
    .navbar, .bg-animated, .chatbot-toggle, .chatbot-window,
    .back-to-top, .cart-sidebar, .wishlist-sidebar,
    .admin-overlay, .modal-overlay, .search-overlay,
    .preloader { display: none !important; }
    body { background: white; color: black; }
}
