﻿:root {
    --gold: #C9A84C;
    --gold-light: #E8D090;
    --gold-dark: #A8892A;
    --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8D090 50%, #C9A84C 100%);
    --gold-shimmer: linear-gradient(90deg, #C9A84C 0%, #EDD98A 25%, #C9A84C 50%, #EDD98A 75%, #C9A84C 100%);
    --white: #FFFFFF;
    --off-white: #FAFAF5;
    --cream: #F5F0E8;
    --nude: #E8D5C4;
    --champagne: #F7E7CE;
    --dark: #1A1A1A;
    --text-dark: #2C2C2C;
    --text-medium: #5A5A5A;
    --text-light: #8A8A8A;
    --border-light: #E8E0D0;
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.22);
    --shadow-soft: 0 2px 15px rgba(0,0,0,0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; font-weight: 500; }

/* ===== PAGE LOADER ===== */
.page-loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--white); z-index: 100000; display: flex; align-items: center; justify-content: center; flex-direction: column; transition: opacity 0.8s ease, visibility 0.8s ease; }
.page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { width: 80px; height: 80px; margin-bottom: 30px; animation: loaderPulse 1.5s ease-in-out infinite; }
.loader-line { width: 120px; height: 2px; background: var(--border-light); position: relative; overflow: hidden; border-radius: 2px; }
.loader-line::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--gold-shimmer); animation: loaderSlide 1.2s ease-in-out infinite; }
@keyframes loaderPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: 0.8; } }
@keyframes loaderSlide { 0% { left: -100%; } 100% { left: 100%; } }

/* ===== EFFECTS ===== */
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.gold-shimmer { background: var(--gold-shimmer); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 3s linear infinite; }
.gold-shimmer-bg { background: var(--gold-shimmer); background-size: 200% auto; animation: shimmer 3s linear infinite; }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes floatSlow { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-6px); } }
.float-anim { animation: float 3s ease-in-out infinite; }
.float-anim-slow { animation: floatSlow 4s ease-in-out infinite; }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ===== NAVIGATION ===== */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 10000; padding: 20px 0; transition: var(--transition-smooth); background: transparent; }
.navbar.scrolled { background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(20px); padding: 12px 0; box-shadow: 0 2px 30px rgba(0,0,0,0.06); }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; cursor: pointer; }
.nav-logo svg { width: 45px; height: 45px; transition: var(--transition-smooth); }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--gold); letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 35px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-size: 14px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; position: relative; transition: var(--transition-smooth); cursor: pointer; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-action-btn { background: none; border: none; cursor: pointer; position: relative; padding: 5px; transition: var(--transition-smooth); }
.nav-action-btn:hover { transform: scale(1.1); }
.nav-action-btn svg { width: 22px; height: 22px; stroke: var(--text-dark); fill: none; stroke-width: 1.5; }
.cart-count { position: absolute; top: -5px; right: -8px; background: var(--gold); color: white; font-size: 10px; font-weight: 600; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0); transition: var(--transition-bounce); }
.cart-count.show { opacity: 1; transform: scale(1); }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--text-dark); margin: 5px 0; transition: var(--transition-smooth); }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); z-index: 9999; flex-direction: column; align-items: center; justify-content: center; gap: 30px; opacity: 0; visibility: hidden; transition: var(--transition-smooth); }
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a { text-decoration: none; font-family: 'Playfair Display', serif; font-size: 28px; color: var(--text-dark); transition: var(--transition-smooth); cursor: pointer; }
.mobile-menu a:hover { color: var(--gold); }

/* ===== HERO SECTION ===== */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: var(--off-white); padding-top: 80px; perspective: 1500px; }
.hero-bg-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.04; background-image: radial-gradient(circle at 2px 2px, var(--gold) 1px, transparent 0); background-size: 40px 40px; animation: patternDrift 60s linear infinite; }
@keyframes patternDrift { 0% { background-position: 0 0; } 100% { background-position: 40px 40px; } }

/* Floating gradient orbs */
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; opacity: 0.55; will-change: transform; }
.hero-orb-1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(212,175,55,0.35) 0%, transparent 70%); top: -120px; left: -120px; animation: orbDrift1 18s ease-in-out infinite; }
.hero-orb-2 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(212,175,55,0.22) 0%, transparent 70%); bottom: -160px; right: -100px; animation: orbDrift2 22s ease-in-out infinite; }
.hero-orb-3 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,215,140,0.2) 0%, transparent 70%); top: 40%; left: 45%; animation: orbDrift3 16s ease-in-out infinite; }
@keyframes orbDrift1 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px, 60px) scale(1.15); } }
@keyframes orbDrift2 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px, -40px) scale(1.1); } }
@keyframes orbDrift3 { 0%, 100% { transform: translate(0,0) scale(1); opacity: 0.4; } 50% { transform: translate(-40px, 30px) scale(1.2); opacity: 0.7; } }

.hero-particles { position: absolute; width: 100%; height: 100%; overflow: hidden; pointer-events: none; }
.hero-particle { position: absolute; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; opacity: 0; animation: particleFloat 6s ease-in-out infinite; box-shadow: 0 0 8px rgba(212,175,55,0.6); }
@keyframes particleFloat { 0% { opacity: 0; transform: translateY(100vh) scale(0); } 20% { opacity: 0.7; } 80% { opacity: 0.7; } 100% { opacity: 0; transform: translateY(-100px) scale(1); } }

/* Sparkles */
.hero-sparkles { position: absolute; width: 100%; height: 100%; overflow: hidden; pointer-events: none; }
.hero-sparkle { position: absolute; width: 14px; height: 14px; opacity: 0; animation: sparkleTwinkle 4s ease-in-out infinite; }
.hero-sparkle svg { width: 100%; height: 100%; fill: var(--gold); filter: drop-shadow(0 0 4px rgba(212,175,55,0.8)); }
@keyframes sparkleTwinkle { 0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); } 50% { opacity: 1; transform: scale(1) rotate(180deg); } }

.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 40px; align-items: center; z-index: 10; position: relative; }
.hero-content { text-align: left; z-index: 10; padding: 0; max-width: 600px; position: relative; }

/* Decorative tagline */
.hero-tagline { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; opacity: 0; animation: taglineReveal 1.2s ease 0.4s forwards; }
.hero-tagline-line { display: block; width: 40px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); animation: lineGrow 1.5s ease 0.6s both; transform-origin: center; }
.hero-tagline-text { font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 500; }
@keyframes taglineReveal { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lineGrow { from { transform: scaleX(0); opacity: 0; } to { transform: scaleX(1); opacity: 1; } }

/* Title with word-by-word reveal */
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(40px, 6.5vw, 78px); font-weight: 500; line-height: 1.15; margin-bottom: 20px; color: var(--text-dark); letter-spacing: -0.02em; }
.hero-word { display: inline-block; overflow: hidden; vertical-align: bottom; padding: 0 0.05em 0.05em 0; margin-right: 0.12em; }
.hero-word > span { display: inline-block; transform: translateY(110%); opacity: 0; animation: wordReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero-word:nth-child(1) > span { animation-delay: 0.7s; }
.hero-word:nth-child(2) > span { animation-delay: 0.85s; }
.hero-word:nth-child(4) > span { animation-delay: 1.05s; }
.hero-word:nth-child(5) > span { animation-delay: 1.2s; }
@keyframes wordReveal { from { transform: translateY(110%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.hero-title .gold-text { background: var(--gold-shimmer); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 3s linear infinite; display: inline-block; }

.hero-subtitle { font-size: clamp(15px, 1.3vw, 18px); color: var(--text-medium); font-weight: 300; line-height: 1.65; margin-bottom: 28px; opacity: 0; animation: fadeInUp 1s ease 1.4s forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.hero-buttons { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; opacity: 0; animation: fadeInUp 1s ease 1.6s forwards; margin-bottom: 32px; }

/* Hero stats / social proof */
.hero-stats { display: flex; align-items: center; gap: 24px; opacity: 0; animation: fadeInUp 1s ease 1.8s forwards; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-value { display: flex; align-items: center; gap: 8px; }
.hero-stat-number { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; color: var(--text-dark); line-height: 1; }
.hero-stat-stars { display: flex; gap: 2px; color: var(--gold); }
.hero-stat-stars svg { width: 14px; height: 14px; }
.hero-stat-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-medium); font-weight: 500; }
.hero-stat-divider { width: 1px; height: 36px; background: var(--border-light); }

/* Video wrapper with corner brackets */
.hero-video-wrapper { position: relative; border-radius: 20px; aspect-ratio: 4/5; max-height: 700px; margin-left: auto; width: 100%; max-width: 500px; opacity: 0; animation: videoEnter 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards; transform-style: preserve-3d; transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes videoEnter { from { opacity: 0; transform: translateY(40px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.hero-video-wrapper::before { content: ''; position: absolute; inset: -20px; border-radius: 24px; background: radial-gradient(circle at center, rgba(212,175,55,0.25), transparent 70%); filter: blur(30px); z-index: -1; opacity: 0; animation: glowFadeIn 1.5s ease 1.4s forwards; }
@keyframes glowFadeIn { to { opacity: 1; } }
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 20px; animation: kenBurns 18s ease-in-out infinite alternate; box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 8px 24px rgba(212,175,55,0.18); }
@keyframes kenBurns { 0% { transform: scale(1) translate(0, 0); } 100% { transform: scale(1.08) translate(-1%, -1%); } }
.video-overlay { position: absolute; inset: 0; border-radius: 20px; box-shadow: inset 0 0 60px rgba(212,175,55,0.18); pointer-events: none; border: 1px solid rgba(212,175,55,0.35); background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15) 100%); }

/* Corner brackets */
.hero-corner { position: absolute; width: 28px; height: 28px; border: 2px solid var(--gold); pointer-events: none; opacity: 0; animation: cornerFadeIn 0.8s ease 1.6s forwards; }
.hero-corner-tl { top: -8px; left: -8px; border-right: none; border-bottom: none; border-top-left-radius: 6px; }
.hero-corner-tr { top: -8px; right: -8px; border-left: none; border-bottom: none; border-top-right-radius: 6px; }
.hero-corner-bl { bottom: -8px; left: -8px; border-right: none; border-top: none; border-bottom-left-radius: 6px; }
.hero-corner-br { bottom: -8px; right: -8px; border-left: none; border-top: none; border-bottom-right-radius: 6px; }
@keyframes cornerFadeIn { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }

/* Shine sweep over video */
.hero-video-shine { position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%); pointer-events: none; animation: videoShine 6s ease-in-out 2.5s infinite; border-radius: 20px; }
@keyframes videoShine { 0%, 100% { left: -100%; } 50% { left: 130%; } }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 40px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border: none; border-radius: 50px; cursor: pointer; transition: var(--transition-smooth); position: relative; overflow: hidden; }
.btn-primary { background: var(--gold); color: white; box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 168, 76, 0.55); }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s ease; }
.btn-primary:hover::before { left: 100%; }
.btn-outline { background: transparent; color: var(--text-dark); border: 1.5px solid var(--border-light); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Scroll indicator with mouse */
.hero-scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: fadeInUp 1s ease 2.2s forwards; }
.scroll-mouse { width: 22px; height: 36px; border: 1.5px solid var(--gold); border-radius: 12px; position: relative; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { display: block; width: 3px; height: 6px; background: var(--gold); border-radius: 2px; animation: scrollWheel 1.8s ease-in-out infinite; }
@keyframes scrollWheel { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }
.scroll-text { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); font-weight: 500; }

/* ===== WIG ANIMATION ===== */
.floating-wig-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 5; overflow: hidden; }
.wig-svg-wrapper { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 500px; height: 600px; animation: wigFloat 6s ease-in-out infinite; }
@keyframes wigFloat { 0%, 100% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); } 25% { transform: translate(-50%, -50%) translateY(-15px) rotate(1deg); } 50% { transform: translate(-50%, -50%) translateY(-5px) rotate(0deg); } 75% { transform: translate(-50%, -50%) translateY(-20px) rotate(-1deg); } }
.hair-strand { transform-origin: top center; animation: strandSway 4s ease-in-out infinite; }
.hair-strand:nth-child(1) { animation-delay: 0s; animation-duration: 4s; }
.hair-strand:nth-child(2) { animation-delay: 0.3s; animation-duration: 4.5s; }
.hair-strand:nth-child(3) { animation-delay: 0.6s; animation-duration: 3.8s; }
.hair-strand:nth-child(4) { animation-delay: 0.9s; animation-duration: 4.2s; }
.hair-strand:nth-child(5) { animation-delay: 1.2s; animation-duration: 3.5s; }
.hair-strand:nth-child(6) { animation-delay: 1.5s; animation-duration: 4.8s; }
.hair-strand:nth-child(7) { animation-delay: 1.8s; animation-duration: 4.1s; }
.hair-strand:nth-child(8) { animation-delay: 2.1s; animation-duration: 3.9s; }
.hair-strand:nth-child(9) { animation-delay: 2.4s; animation-duration: 4.6s; }
.hair-strand:nth-child(10) { animation-delay: 0.5s; animation-duration: 4.3s; }
.hair-strand:nth-child(11) { animation-delay: 0.8s; animation-duration: 3.7s; }
.hair-strand:nth-child(12) { animation-delay: 1.1s; animation-duration: 4.4s; }
@keyframes strandSway { 0%, 100% { transform: rotate(0deg) skewX(0deg); } 25% { transform: rotate(2deg) skewX(1deg); } 50% { transform: rotate(-1deg) skewX(-0.5deg); } 75% { transform: rotate(1.5deg) skewX(0.8deg); } }
.hair-shimmer { fill: url(#hairGradient); animation: hairShimmer 3s ease-in-out infinite; }
@keyframes hairShimmer { 0%, 100% { opacity: 0.6; } 50% { opacity: 0.9; } }
.wig-sparkle { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: sparkleFloat 4s ease-in-out infinite; }
.wig-sparkle:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; animation-duration: 4s; }
.wig-sparkle:nth-child(2) { top: 35%; left: 65%; animation-delay: 0.5s; animation-duration: 5s; }
.wig-sparkle:nth-child(3) { top: 50%; left: 25%; animation-delay: 1s; animation-duration: 3.5s; }
.wig-sparkle:nth-child(4) { top: 60%; left: 70%; animation-delay: 1.5s; animation-duration: 4.5s; }
.wig-sparkle:nth-child(5) { top: 75%; left: 40%; animation-delay: 2s; animation-duration: 3.8s; }
.wig-sparkle:nth-child(6) { top: 15%; left: 55%; animation-delay: 2.5s; animation-duration: 5.2s; }
.wig-sparkle:nth-child(7) { top: 45%; left: 80%; animation-delay: 0.8s; animation-duration: 4.2s; }
.wig-sparkle:nth-child(8) { top: 80%; left: 60%; animation-delay: 1.3s; animation-duration: 3.6s; }
@keyframes sparkleFloat { 0%, 100% { transform: translate(0, 0) scale(0.5); opacity: 0; } 20% { opacity: 1; transform: translate(5px, -10px) scale(1); } 50% { transform: translate(-5px, -20px) scale(0.8); opacity: 0.7; } 80% { opacity: 1; transform: translate(3px, -5px) scale(1); } 100% { transform: translate(0, 0) scale(0.5); opacity: 0; } }
.crown-float { animation: crownFloat 3s ease-in-out infinite; transform-origin: center bottom; }
@keyframes crownFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-5px) rotate(2deg); } }
.wig-glow-ring { animation: glowRingPulse 4s ease-in-out infinite; }
@keyframes glowRingPulse { 0%, 100% { opacity: 0.15; transform: scale(1); } 50% { opacity: 0.3; transform: scale(1.02); } }

/* ===== SECTION STYLES ===== */
.section { padding: 100px 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label { font-family: 'Playfair Display', serif; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 48px); font-weight: 500; color: var(--text-dark); margin-bottom: 16px; }
.section-divider { width: 60px; height: 1.5px; background: var(--gold); margin: 0 auto 20px; }
.section-subtitle { font-size: 16px; color: var(--text-medium); font-weight: 300; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(135deg, var(--cream) 0%, var(--champagne) 100%); display: flex; align-items: center; justify-content: center; }
.about-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px; }
.about-image-placeholder svg { width: 120px; height: 120px; opacity: 0.3; }
.about-image-frame { position: absolute; top: 20px; left: 20px; right: 20px; bottom: 20px; border: 1px solid var(--gold); border-radius: 12px; opacity: 0.3; }
.about-content h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 24px; line-height: 1.2; }
.about-content p { font-size: 16px; line-height: 1.8; color: var(--text-medium); margin-bottom: 16px; font-weight: 300; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.about-feature { display: flex; align-items: center; gap: 12px; }
.about-feature-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-feature-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }
.about-feature span { font-size: 14px; font-weight: 500; color: var(--text-dark); }

/* ===== MARQUEE ===== */
.marquee-section { padding: 30px 0; background: var(--off-white); overflow: hidden; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.marquee-track { display: flex; animation: marqueeScroll 30s linear infinite; width: max-content; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 20px; padding: 0 40px; white-space: nowrap; }
.marquee-item span { font-family: 'Playfair Display', serif; font-size: 18px; font-style: italic; color: var(--text-light); }
.marquee-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ===== CATALOGUE ===== */
.catalogue-section { background: var(--off-white); }
.catalogue-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.catalogue-grid.catalogue-single { grid-template-columns: 1fr; }
.catalogue-grid.catalogue-single .catalogue-card { border-radius: 20px; background: transparent; border: none; box-shadow: none; }
.catalogue-grid.catalogue-single .catalogue-img-wrap { aspect-ratio: unset; height: auto; }
.catalogue-grid.catalogue-single .catalogue-img { height: auto; object-fit: unset; display: block; width: 100%; }
.catalogue-grid.catalogue-single .catalogue-overlay { display: none; }
.catalogue-grid.catalogue-single .catalogue-info { display: none; }
.catalogue-card { border-radius: 16px; overflow: hidden; background: var(--white); border: 1px solid var(--border-light); cursor: default; pointer-events: none; }
.catalogue-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; background: linear-gradient(135deg, var(--cream), var(--champagne)); }
.catalogue-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.catalogue-overlay { display: none; }
.catalogue-img-missing { display: flex; align-items: center; justify-content: center; }
.catalogue-img-missing::after { content: ''; display: block; width: 48px; height: 48px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='1.2'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='m21 15-5-5L5 21'/%3E%3C/svg%3E") center/contain no-repeat; opacity: 0.35; }
.catalogue-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: background 0.4s ease; }
.catalogue-card:hover .catalogue-overlay { background: rgba(0,0,0,0.28); }
.catalogue-overlay-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0.7); transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
.catalogue-card:hover .catalogue-overlay-icon { opacity: 1; transform: scale(1); }
.catalogue-overlay-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.catalogue-info { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; }
.catalogue-tag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.catalogue-label { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--text-dark); font-weight: 500; }

/* ===== PRODUCTS ===== */
.products { background: var(--off-white); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.product-card { background: var(--white); border-radius: 16px; overflow: hidden; transition: var(--transition-smooth); position: relative; cursor: pointer; border: 1px solid transparent; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: rgba(201, 168, 76, 0.3); }
.product-card:hover .product-image-placeholder { transform: scale(1.08); }
.product-image { position: relative; aspect-ratio: 3/4; overflow: hidden; background: linear-gradient(135deg, var(--cream), var(--champagne)); }
.product-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; transition: transform 0.6s ease; }
.product-image-placeholder svg { width: 60px; height: 60px; opacity: 0.2; }
.product-badge { position: absolute; top: 12px; left: 12px; padding: 4px 12px; background: var(--gold); color: white; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 20px; z-index: 2; }
.product-actions { position: absolute; bottom: 12px; left: 12px; right: 12px; display: flex; gap: 8px; opacity: 0; transform: translateY(10px); transition: var(--transition-smooth); z-index: 2; }
.product-card:hover .product-actions { opacity: 1; transform: translateY(0); }
.product-action-btn { flex: 1; padding: 12px; border: none; border-radius: 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; transition: var(--transition-smooth); display: flex; align-items: center; justify-content: center; gap: 6px; }
.product-action-btn.add-cart { background: var(--gold); color: white; }
.product-action-btn.add-cart:hover { background: var(--gold-dark); }
.product-action-btn.quick-view { background: rgba(255,255,255,0.95); color: var(--text-dark); backdrop-filter: blur(10px); }
.product-action-btn.quick-view:hover { background: white; }
.product-action-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.product-info { padding: 20px; }
.product-category { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-bottom: 6px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; line-height: 1.3; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { display: flex; gap: 2px; }
.star { width: 14px; height: 14px; fill: var(--gold); }
.star.empty { fill: var(--border-light); }
.rating-count { font-size: 12px; color: var(--text-light); }
.product-price { display: flex; align-items: center; gap: 10px; }
.price-current { font-size: 20px; font-weight: 600; color: var(--gold); }
.price-original { font-size: 14px; color: var(--text-light); text-decoration: line-through; }

/* ===== SHOP PAGE ===== */
.shop-page { display: none; background: var(--off-white); min-height: 100vh; padding-top: 100px; }
.shop-page.active { display: block; }
.shop-header { text-align: center; margin-bottom: 40px; padding: 40px 0; }
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; padding-bottom: 80px; }
.shop-filters { position: sticky; top: 100px; height: fit-content; }
.filter-group { background: var(--white); border-radius: 16px; padding: 24px; margin-bottom: 20px; border: 1px solid var(--border-light); }
.filter-group h4 { font-family: 'Playfair Display', serif; font-size: 16px; margin-bottom: 16px; color: var(--text-dark); }
.filter-option { display: flex; align-items: center; gap: 10px; padding: 8px 0; cursor: pointer; transition: var(--transition-smooth); }
.filter-option:hover { color: var(--gold); }
.filter-checkbox { width: 18px; height: 18px; border: 1.5px solid var(--border-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); flex-shrink: 0; }
.filter-option.active .filter-checkbox { background: var(--gold); border-color: var(--gold); }
.filter-checkbox svg { width: 12px; height: 12px; stroke: white; fill: none; stroke-width: 3; opacity: 0; transition: var(--transition-smooth); }
.filter-option.active .filter-checkbox svg { opacity: 1; }
.filter-option span { font-size: 14px; color: var(--text-medium); }
.filter-option.active span { color: var(--text-dark); }
.price-range { padding: 10px 0; }
.price-range input[type="range"] { width: 100%; -webkit-appearance: none; appearance: none; height: 4px; background: var(--border-light); border-radius: 2px; outline: none; }
.price-range input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; background: var(--gold); border-radius: 50%; cursor: pointer; box-shadow: 0 2px 8px rgba(212,175,55,0.3); }
.price-labels { display: flex; justify-content: space-between; margin-top: 10px; font-size: 13px; color: var(--text-light); }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 16px; }
.results-count { font-size: 14px; color: var(--text-light); }
.sort-dropdown { padding: 10px 20px; border: 1px solid var(--border-light); border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-dark); background: var(--white); cursor: pointer; outline: none; }
.shop-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 50px; }
.page-btn { width: 40px; height: 40px; border: 1px solid var(--border-light); border-radius: 10px; background: var(--white); font-size: 14px; color: var(--text-medium); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); }
.page-btn:hover, .page-btn.active { background: var(--gold); color: white; border-color: var(--gold); }

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-page { display: none; background: var(--off-white); min-height: 100vh; padding-top: 100px; }
.product-detail-page.active { display: block; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 40px; font-size: 14px; }
.breadcrumb a { color: var(--text-light); text-decoration: none; cursor: pointer; transition: var(--transition-smooth); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-light); }
.breadcrumb .current { color: var(--text-dark); font-weight: 500; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 80px; }
.product-gallery { position: sticky; top: 100px; height: fit-content; }
.gallery-main { aspect-ratio: 3/4; background: linear-gradient(135deg, var(--cream), var(--champagne)); border-radius: 20px; overflow: hidden; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.gallery-main svg { width: 100px; height: 100px; opacity: 0.2; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-thumb { aspect-ratio: 1; background: linear-gradient(135deg, var(--cream), var(--champagne)); border-radius: 12px; cursor: pointer; border: 2px solid transparent; transition: var(--transition-smooth); display: flex; align-items: center; justify-content: center; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb svg { width: 30px; height: 30px; opacity: 0.2; }
.product-detail-info { padding-top: 20px; }
.detail-category { font-family: 'Playfair Display', serif; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.detail-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 36px); font-weight: 500; margin-bottom: 16px; line-height: 1.2; }
.detail-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.detail-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.detail-price .current { font-size: 32px; font-weight: 600; color: var(--gold); }
.detail-price .original { font-size: 20px; color: var(--text-light); text-decoration: line-through; }
.detail-description { font-size: 15px; line-height: 1.8; color: var(--text-medium); margin-bottom: 30px; }
.detail-option { margin-bottom: 24px; }
.detail-option label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); }
.option-values { display: flex; gap: 10px; flex-wrap: wrap; }
.option-value { padding: 10px 20px; border: 1.5px solid var(--border-light); border-radius: 10px; font-size: 14px; cursor: pointer; transition: var(--transition-smooth); background: var(--white); }
.option-value:hover { border-color: var(--gold); }
.option-value.selected { border-color: var(--gold); background: rgba(201, 168, 76, 0.1); color: var(--gold); font-weight: 600; }
.quantity-selector { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border-light); border-radius: 12px; overflow: hidden; width: fit-content; }
.qty-btn { width: 44px; height: 44px; border: none; background: var(--white); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); color: var(--text-dark); }
.qty-btn:hover { background: var(--cream); }
.qty-value { width: 50px; text-align: center; font-size: 16px; font-weight: 600; border-left: 1px solid var(--border-light); border-right: 1px solid var(--border-light); height: 44px; display: flex; align-items: center; justify-content: center; }
.detail-buttons { display: flex; gap: 12px; margin-top: 30px; }
.detail-buttons .btn { flex: 1; justify-content: center; }
.detail-meta { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--border-light); }
.meta-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 14px; color: var(--text-medium); }
.meta-item svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ===== REVIEWS SECTION ===== */
.reviews-section { padding: 60px 0; background: var(--white); border-top: 1px solid var(--border-light); }
.reviews-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.reviews-header h3 { font-size: 24px; }
.write-review-btn { padding: 10px 24px; border: 1.5px solid var(--gold); background: transparent; color: var(--gold); border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition-smooth); }
.write-review-btn:hover { background: var(--gold); color: white; }
.reviews-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.review-card { padding: 24px; background: var(--off-white); border-radius: 16px; border: 1px solid var(--border-light); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-gradient); display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; font-size: 14px; }
.review-name { font-weight: 600; font-size: 14px; }
.review-date { font-size: 12px; color: var(--text-light); }
.review-text { font-size: 14px; line-height: 1.7; color: var(--text-medium); }

/* ===== RELATED PRODUCTS ===== */
.related-section { padding: 60px 0; background: var(--off-white); }
.related-carousel { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 20px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.related-carousel::-webkit-scrollbar { height: 4px; }
.related-carousel::-webkit-scrollbar-track { background: var(--border-light); border-radius: 2px; }
.related-carousel::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.related-carousel .product-card { min-width: 280px; scroll-snap-align: start; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); overflow: hidden; }
.testimonials-carousel { display: flex; gap: 30px; overflow-x: auto; padding: 20px 0; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.testimonials-carousel::-webkit-scrollbar { display: none; }
.testimonial-card { min-width: 380px; padding: 40px; background: var(--off-white); border-radius: 20px; border: 1px solid var(--border-light); scroll-snap-align: start; transition: var(--transition-smooth); }
.testimonial-card:hover { border-color: rgba(201, 168, 76, 0.3); box-shadow: var(--shadow-gold); }
.testimonial-quote { font-size: 40px; color: var(--gold); font-family: 'Playfair Display', serif; line-height: 1; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; line-height: 1.8; color: var(--text-medium); font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gold-gradient); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 16px; }
.testimonial-name { font-weight: 600; font-size: 15px; color: var(--text-dark); }
.testimonial-title { font-size: 13px; color: var(--text-light); }

/* ===== INSTAGRAM SECTION ===== */
.instagram-section { padding: 80px 0; background: var(--off-white); }
.instagram-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.instagram-item { aspect-ratio: 1; background: linear-gradient(135deg, var(--cream), var(--champagne)); border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.instagram-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.instagram-item svg { width: 40px; height: 40px; opacity: 0.15; }
.instagram-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(201, 168, 76, 0.85); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition-smooth); }
.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-overlay svg { width: 30px; height: 30px; fill: white; opacity: 1; }

/* ===== NEWSLETTER ===== */
.newsletter { background: var(--cream); padding: 80px 0; }
.newsletter-content { text-align: center; max-width: 600px; margin: 0 auto; }
.contact-simple { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-top: 36px; }
.contact-item { display: flex; align-items: center; gap: 14px; color: var(--text-medium); text-decoration: none; font-size: 18px; font-weight: 400; padding: 18px 36px; border: 1.5px solid var(--border-light); border-radius: 50px; background: var(--white); transition: var(--transition-smooth); }
.contact-item svg { color: var(--gold); flex-shrink: 0; }
.contact-item:hover { border-color: var(--gold); color: var(--dark); box-shadow: 0 4px 20px rgba(212,175,55,0.15); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: white; padding: 50px 0 0; }
.footer-simple { display: flex; flex-direction: column; align-items: center; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo svg { width: 40px; height: 40px; }
.footer-logo span { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); }
.footer-nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 32px; }
.footer-nav-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; cursor: pointer; transition: var(--transition-smooth); }
.footer-nav-links a:hover { color: var(--gold); }
.social-link { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); cursor: pointer; }
.social-link:hover { border-color: var(--gold); background: var(--gold); }
.social-link svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); }
.social-link:hover svg { fill: white; }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 16px; margin-bottom: 24px; color: white; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: var(--transition-smooth); cursor: pointer; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-address { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 6px !important; }
.footer-address svg { opacity: 0.5; flex-shrink: 0; }
.payment-icons { display: flex; gap: 12px; align-items: center; }
.payment-icon { padding: 6px 12px; background: rgba(255,255,255,0.1); border-radius: 6px; font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 600; }

/* ===== CART DRAWER ===== */
.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 20000; opacity: 0; visibility: hidden; transition: var(--transition-smooth); }
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: -450px; width: 420px; max-width: 90vw; height: 100%; background: var(--white); z-index: 20001; transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: flex; flex-direction: column; }
.cart-drawer.active { right: 0; }
.cart-header { padding: 24px; border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-family: 'Playfair Display', serif; font-size: 22px; }
.cart-close { background: none; border: none; cursor: pointer; padding: 5px; transition: var(--transition-smooth); }
.cart-close:hover { transform: rotate(90deg); }
.cart-close svg { width: 24px; height: 24px; stroke: var(--text-dark); fill: none; stroke-width: 2; }
.cart-items { flex: 1; overflow-y: auto; padding: 24px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty svg { width: 60px; height: 60px; stroke: var(--border-light); fill: none; stroke-width: 1.5; margin-bottom: 16px; }
.cart-empty p { color: var(--text-light); font-size: 15px; }
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border-light); }
.cart-item-image { width: 80px; height: 100px; background: linear-gradient(135deg, var(--cream), var(--champagne)); border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.cart-item-image svg { width: 30px; height: 30px; opacity: 0.2; }
.cart-item-details { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.cart-item-variant { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.cart-item-bottom { display: flex; justify-content: space-between; align-items: center; }
.cart-item-qty { display: flex; align-items: center; border: 1px solid var(--border-light); border-radius: 8px; overflow: hidden; }
.cart-qty-btn { width: 28px; height: 28px; border: none; background: none; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); }
.cart-qty-btn:hover { background: var(--cream); }
.cart-qty-value { width: 30px; text-align: center; font-size: 13px; font-weight: 600; border-left: 1px solid var(--border-light); border-right: 1px solid var(--border-light); height: 28px; line-height: 28px; }
.cart-item-price { font-weight: 600; color: var(--gold); font-size: 15px; }
.cart-item-remove { background: none; border: none; cursor: pointer; padding: 4px; color: var(--text-light); transition: var(--transition-smooth); }
.cart-item-remove:hover { color: #e74c3c; }
.cart-item-remove svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.cart-footer { padding: 24px; border-top: 1px solid var(--border-light); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.cart-subtotal span:first-child { font-size: 14px; color: var(--text-medium); }
.cart-subtotal span:last-child { font-size: 20px; font-weight: 700; color: var(--text-dark); }
.cart-shipping-note { font-size: 12px; color: var(--text-light); margin-bottom: 20px; }
.checkout-btn { width: 100%; padding: 16px; background: var(--gold); color: white; border: none; border-radius: 50px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: var(--transition-smooth); }
.checkout-btn:hover { background: var(--gold-dark); box-shadow: var(--shadow-gold); }

/* ===== QUICK VIEW MODAL ===== */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 30000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition-smooth); padding: 20px; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal { background: var(--white); border-radius: 20px; max-width: 900px; width: 100%; max-height: 90vh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; transform: scale(0.9); transition: transform 0.4s ease; }
.modal-overlay.active .modal { transform: scale(1); }
.modal-image { aspect-ratio: 3/4; background: linear-gradient(135deg, var(--cream), var(--champagne)); border-radius: 20px 0 0 20px; display: flex; align-items: center; justify-content: center; }
.modal-image svg { width: 80px; height: 80px; opacity: 0.2; }
.modal-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.modal-close { position: absolute; top: 16px; right: 16px; background: white; border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); transition: var(--transition-smooth); z-index: 10; }
.modal-close:hover { transform: rotate(90deg); }
.modal-close svg { width: 18px; height: 18px; stroke: var(--text-dark); fill: none; stroke-width: 2; }

/* ===== CHECKOUT PAGE ===== */
.checkout-page { display: none; background: var(--off-white); min-height: 100vh; padding-top: 100px; }
.checkout-page.active { display: block; }
.checkout-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; padding-bottom: 80px; }
.checkout-form-section { background: var(--white); border-radius: 20px; padding: 40px; border: 1px solid var(--border-light); }
.checkout-form-section h3 { font-size: 22px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.form-group input, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border-light); border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 14px; outline: none; transition: var(--transition-smooth); }
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.payment-methods { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.payment-method { padding: 14px 24px; border: 1.5px solid var(--border-light); border-radius: 12px; cursor: pointer; transition: var(--transition-smooth); display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; background: var(--white); }
.payment-method:hover { border-color: var(--gold); }
.payment-method.selected { border-color: var(--gold); background: rgba(201, 168, 76, 0.08); }
.payment-method svg { width: 24px; height: 24px; }
.order-summary { background: var(--white); border-radius: 20px; padding: 40px; border: 1px solid var(--border-light); position: sticky; top: 100px; height: fit-content; }
.order-summary h3 { font-size: 22px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border-light); }
.summary-item { display: flex; gap: 14px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border-light); }
.summary-item-image { width: 60px; height: 75px; background: linear-gradient(135deg, var(--cream), var(--champagne)); border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.summary-item-image svg { width: 20px; height: 20px; opacity: 0.2; }
.summary-item-info { flex: 1; }
.summary-item-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.summary-item-variant { font-size: 12px; color: var(--text-light); }
.summary-item-price { font-weight: 600; color: var(--gold); font-size: 14px; }
.summary-totals { margin-top: 20px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; }
.summary-row.total { font-size: 18px; font-weight: 700; padding-top: 12px; border-top: 2px solid var(--border-light); margin-top: 12px; }
.summary-row.total span:last-child { color: var(--gold); }
.secure-badge { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; padding: 12px; background: var(--off-white); border-radius: 10px; font-size: 12px; color: var(--text-light); }
.secure-badge svg { width: 16px; height: 16px; stroke: #27ae60; fill: none; stroke-width: 2; }

/* ===== TOAST NOTIFICATION ===== */
.toast { position: fixed; bottom: 30px; right: 30px; background: var(--white); padding: 16px 24px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 12px; z-index: 50000; transform: translateX(120%); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); border-left: 4px solid var(--gold); }
.toast.show { transform: translateX(0); }
.toast-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.toast-icon svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 3; }
.toast-message { font-size: 14px; font-weight: 500; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 30px; left: 30px; width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold); opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition-smooth); z-index: 9999; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .catalogue-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .mobile-menu { display: flex; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 30px; padding: 0 24px; }
    .hero-content { text-align: center; margin: 0 auto; }
    .hero-tagline { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-video-wrapper { margin: 0 auto; max-height: 480px; max-width: 400px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { max-height: 420px; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
    .product-gallery { position: static; }
    .checkout-grid { grid-template-columns: 1fr; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-filters { position: static; }
    .modal { grid-template-columns: 1fr; }
    .modal-image { aspect-ratio: 16/9; border-radius: 20px 20px 0 0; }
}

@media (max-width: 768px) {
    /* Base */
    .container { padding: 0 16px; }
    .nav-container { padding: 0 16px; }
    .section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }

    /* Hero */
    .hero { padding-top: 70px; min-height: auto; padding-bottom: 40px; }
    .hero-container { gap: 24px; padding: 0 16px; margin-top: 20px; }
    .hero-tagline { margin-bottom: 18px; gap: 10px; }
    .hero-tagline-line { width: 24px; }
    .hero-tagline-text { font-size: 10px; letter-spacing: 3px; }
    .hero-title { font-size: clamp(34px, 9vw, 52px); margin-bottom: 18px; }
    .hero-subtitle { font-size: 15px; margin-bottom: 28px; line-height: 1.6; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 12px; margin-bottom: 32px; }
    .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; padding: 14px 32px; }
    .hero-stats { gap: 16px; justify-content: center; }
    .hero-stat-number { font-size: 22px; }
    .hero-stat-label { font-size: 10px; letter-spacing: 1.2px; }
    .hero-stat-divider { height: 30px; }
    .hero-video-wrapper { max-height: 380px; max-width: 100%; border-radius: 16px; }
    .hero-corner { width: 22px; height: 22px; }
    .hero-orb-1, .hero-orb-2, .hero-orb-3 { opacity: 0.35; }
    .hero-scroll-indicator { display: none; }

    /* About */
    .about-image { max-height: 340px; }
    .about-content h2 { font-size: clamp(24px, 6vw, 36px); }
    .about-content p { font-size: 15px; }
    .about-features { grid-template-columns: 1fr 1fr; gap: 14px; }
    .about-feature span { font-size: 13px; }

    /* Products */
    .catalogue-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .shop-products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-actions { opacity: 1; transform: translateY(0); }
    .product-action-btn { padding: 10px 6px; font-size: 11px; }
    .product-name { font-size: 15px; }
    .product-info { padding: 14px; }

    /* Testimonials */
    .testimonial-card { min-width: 280px; padding: 28px 24px; }
    .testimonial-text { font-size: 14px; }

    /* Instagram */
    .instagram-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .instagram-section { padding: 60px 0; }
    .instagram-overlay { opacity: 0; }

    /* Contact */
    .contact-item { padding: 16px 24px; font-size: 16px; width: 100%; justify-content: center; }
    .contact-simple { width: 100%; padding: 0 8px; }

    /* Reviews */
    .reviews-list { grid-template-columns: 1fr; }
    .reviews-header { flex-direction: column; align-items: flex-start; gap: 12px; }

    /* Shop */
    .shop-header { padding: 20px 0; }
    .shop-toolbar { flex-direction: column; align-items: flex-start; }

    /* Product detail */
    .detail-buttons { flex-direction: column; }
    .detail-buttons .btn { justify-content: center; }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }

    /* Checkout */
    .checkout-form-section { padding: 24px 16px; }
    .order-summary { padding: 24px 16px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* Footer */
    .footer-nav-links { gap: 6px 20px; }
    .footer-nav-links a { font-size: 13px; }

    /* Marquee */
    .marquee-item span { font-size: 15px; }

    /* Misc */
    .btn { padding: 14px 28px; font-size: 13px; }
    .back-to-top { bottom: 20px; left: 20px; width: 42px; height: 42px; }
    .toast { right: 16px; bottom: 20px; left: 16px; }
}

@media (max-width: 480px) {
    /* Hero */
    .hero-title { font-size: clamp(26px, 9vw, 38px); }
    .hero-video-wrapper { max-height: 320px; }

    /* Products — single column on very small screens */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .shop-products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-name { font-size: 14px; }
    .price-current { font-size: 17px; }

    /* Instagram — 3 cols on tiny screens, scrolls naturally */
    .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }

    /* About features — single column */
    .about-features { grid-template-columns: 1fr; }

    /* Testimonials */
    .testimonial-card { min-width: 260px; padding: 24px 18px; }

    /* Contact */
    .contact-item { font-size: 15px; padding: 14px 20px; }

    /* Mobile menu text smaller */
    .mobile-menu a { font-size: 24px; }

    /* Modal full screen */
    .modal { max-height: 100vh; border-radius: 0; }

    /* Section spacing */
    .section { padding: 48px 0; }
    .newsletter { padding: 48px 0; }
    .instagram-section { padding: 48px 0; }
}

/* ===== REVIEWS PAGE ===== */
.reviews-page {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
}
.reviews-page.active { display: block; }

.reviews-page-hero {
    background: var(--dark);
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.reviews-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.18) 0%, transparent 65%);
    pointer-events: none;
}
.reviews-page-hero .section-label { color: var(--gold-light); letter-spacing: 3px; }
.reviews-page-title {
    color: var(--white);
    font-size: clamp(32px, 5vw, 52px);
    margin: 14px 0 0;
    position: relative;
}

.reviews-overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
}
.overall-number {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    line-height: 1;
    font-weight: 600;
    background: var(--gold-shimmer);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
.overall-stars { display: flex; gap: 8px; }
.overall-stars .star { width: 30px; height: 30px; fill: var(--gold); }
.overall-label {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    letter-spacing: 0.3px;
}
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 100px;
    padding: 10px 22px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: background 0.3s;
}
.google-badge:hover { background: rgba(255,255,255,0.12); }

.reviews-page-grid-section {
    padding: 80px 0 90px;
    background: var(--off-white);
}
.reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}
.review-card-full {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px 28px;
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--gold);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.review-card-full::after {
    content: '\201C';
    position: absolute;
    top: -16px;
    right: 22px;
    font-family: 'Playfair Display', serif;
    font-size: 130px;
    color: var(--gold);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
}
.review-card-full:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.12);
}
.review-card-quote {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: var(--gold);
    line-height: 0.8;
    margin-bottom: 14px;
    opacity: 0.7;
    display: block;
    user-select: none;
}
.review-card-text {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
    flex: 1;
}
.review-card-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.review-card-stars .star { width: 15px; height: 15px; fill: #FBBC05; }
.review-card-author {
    display: flex;
    align-items: center;
    gap: 13px;
    border-top: 1px solid var(--border-light);
    padding-top: 18px;
    margin-top: auto;
}
.review-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(212,175,55,0.4);
}
.review-card-info { min-width: 0; }
.review-card-name { font-weight: 600; font-size: 14px; color: var(--dark); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-card-source {
    font-size: 11.5px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.reviews-page-cta {
    background: var(--dark);
    padding: 90px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.reviews-page-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212,175,55,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.reviews-page-cta h2 {
    color: var(--white);
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
    position: relative;
}
.reviews-page-cta p {
    color: rgba(255,255,255,0.6);
    font-size: 17px;
    margin-bottom: 40px;
    position: relative;
}
.reviews-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

@media (max-width: 1024px) {
    .reviews-page-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
    .reviews-page-grid { grid-template-columns: 1fr; gap: 16px; }
    .overall-number { font-size: 60px; }
    .reviews-page-hero { padding: 60px 0 56px; }
    .reviews-page-cta { padding: 64px 20px; }
    .reviews-page-grid-section { padding: 50px 0 60px; }
}

/* ===== COMING SOON PAGE ===== */
.coming-soon-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    padding: 100px 20px 60px;
}
.coming-soon-content {
    text-align: center;
    max-width: 600px;
}
.coming-soon-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 32px;
    opacity: 0.9;
}
.coming-soon-title {
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.15;
    margin: 16px 0 24px;
    color: var(--dark);
}
.coming-soon-subtitle {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.coming-soon-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
