:root {
  --black: #0a0a0a;
  --black-2: #141414;
  --white: #ffffff;
  --off-white: #f5f0ea;
  --gold: #c9a94e;
  --gold-light: #d4b86a;
  --gold-dark: #a8882e;
  --champagne: #f7e7ce;
  --rose-gold: #b76e79;
  --rose-gold-light: #d4a0a8;
  --lavender: #9b8ec4;
  --lavender-light: #d5cfe8;
  --lavender-dark: #6b5fa0;
  --lavender-mist: #f0edf7;
  --burgundy: #4a0a1a;
  --burgundy-dark: #2a0510;
  --burgundy-light: #6a1025;
  --navy: #0a1525;
  --navy-dark: #050a14;
  --navy-light: #10203a;
  --rose: #3a0a1a;
  --rose-dark: #1a0510;
  --rose-light: #5a1025;
  --emerald: #052015;
  --emerald-dark: #02100a;
  --emerald-light: #0a3a25;
  --amethyst: #1a0a30;
  --amethyst-dark: #0e051a;
  --amethyst-light: #2a1050;
  --obsidian: #0a0a0e;
  --obsidian-light: #14141c;
  --charcoal: #121216;
  --charcoal-light: #1c1c24;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #cccccc;
  --gray-400: #999999;
  --gray-500: #666666;
  --gray-600: #444444;
  --gray-700: #333333;
  --gray-800: #222222;
  --font-display: 'Cinzel', serif;
  --font-heading: 'Playfair Display', serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Montserrat', sans-serif;
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.3s ease;
  --shadow-sm: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 30px rgba(201,169,78,0.25);
  --shadow-lavender: 0 4px 30px rgba(155,142,196,0.25);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  font-weight: 400;
}
::selection { background: var(--lavender); color: var(--white); }
::-moz-selection { background: var(--lavender); color: var(--white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input { font-family: inherit; outline: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ─── Preloader ─── */
#preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: radial-gradient(ellipse at center, #1a0a2e, var(--black));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 3.5rem; letter-spacing: 14px;
  background: linear-gradient(135deg, var(--gold), var(--lavender-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  animation: loaderShimmer 2s ease-in-out infinite;
}
.loader-line {
  width: 240px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--lavender), var(--gold), transparent);
  background-size: 300% 100%;
  animation: loaderSweep 2s ease-in-out infinite;
}
@keyframes loaderShimmer { 0%,100%{opacity:0.6;filter:brightness(0.8)} 50%{opacity:1;filter:brightness(1.2)} }
@keyframes loaderSweep { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ─── Header ─── */
.header-top {
  background: linear-gradient(90deg, var(--black), #1a0a2e, var(--black));
  color: var(--lavender-light);
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.header-top::after {
  content: '';
  position: absolute; bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.header-top span::before { content: '◇ '; color: var(--gold); }

.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid var(--gray-200);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 8px;
  background: linear-gradient(135deg, var(--black), var(--amethyst), var(--lavender-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
}
.nav-logo:hover { letter-spacing: 10px; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gray-600);
  transition: var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--lavender));
  transition: width 0.5s ease;
}
.nav-links a:hover { color: var(--lavender-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 20px; align-items: center; }
.nav-icon {
  position: relative;
  font-size: 1.1rem;
  color: var(--gray-700);
  transition: var(--transition-fast);
}
.nav-icon:hover { color: var(--lavender); transform: scale(1.1); }
.badge {
  position: absolute; top: -8px; right: -8px;
  width: 18px; height: 18px;
  background: linear-gradient(135deg, var(--gold), var(--lavender));
  color: var(--white);
  font-size: 0.55rem;
  font-family: var(--font-ui);
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.nav-icon:hover .badge { transform: scale(1.15); }
.nav-toggle { display: none; font-size: 1.3rem; cursor: pointer; }

.search-bar {
  position: absolute; top: 72px; left: 0; right: 0;
  background: white;
  padding: 16px 24px;
  border-bottom: 2px solid var(--lavender-light);
  display: none; z-index: 999;
  animation: slideDown 0.3s ease;
}
.search-bar.active { display: flex; }
@keyframes slideDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }
.search-bar input {
  flex: 1; padding: 12px 16px;
  border: 1px solid var(--gray-200);
  font-family: var(--font-body); font-size: 1rem;
  color: var(--black); transition: var(--transition-fast);
}
.search-bar input:focus { border-color: var(--lavender); box-shadow: var(--shadow-lavender); }
.search-bar button { padding: 12px 20px; color: var(--gray-500); font-size: 1.2rem; transition: var(--transition-fast); }
.search-bar button:hover { color: var(--lavender); }

/* ─── Hero ─── */
#hero { position: relative; height: 90vh; min-height: 600px; overflow: hidden; }
.hero-carousel { position: relative; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,5,21,0.85) 0%, rgba(26,10,48,0.4) 40%, rgba(10,5,21,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 620px; padding: 0 48px;
  color: var(--white);
  transform: translateY(40px); opacity: 0;
  transition: all 1s 0.4s ease;
}
.hero-slide.active .hero-content { transform: translateY(0); opacity: 1; }
.hero-subtitle {
  font-family: var(--font-ui); font-size: 0.7rem;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); text-shadow: 0 0 30px rgba(201,169,78,0.2);
  margin-bottom: 16px;
}
.hero-content h1 {
  font-family: var(--font-display); font-size: 4.8rem;
  font-weight: 600; line-height: 1.05;
  margin-bottom: 20px; letter-spacing: 3px;
}
.hero-desc {
  font-size: 1.15rem; line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px; max-width: 480px;
}
.hero-controls { position: absolute; bottom: 40px; left: 48px; display: flex; gap: 14px; z-index: 3; }
.hero-dot {
  width: 44px; height: 3px;
  background: rgba(255,255,255,0.25);
  transition: all 0.6s ease; cursor: pointer;
  position: relative; overflow: hidden;
}
.hero-dot::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--lavender));
  transition: width 0.6s ease;
}
.hero-dot.active::after { width: 100%; }
.hero-dot.active { width: 64px; }

/* ─── Page Hero ─── */
.page-hero { padding: 80px 0; text-align: center; }
.page-hero-content { max-width: 640px; margin: 0 auto; }
.page-hero-content h1 { font-family: var(--font-display); font-size: 3.5rem; font-weight: 600; letter-spacing: 4px; color: var(--white); margin-bottom: 12px; line-height: 1.1; }
.page-hero-content p { font-size: 1.15rem; color: var(--gray-400); line-height: 1.7; }

/* ─── Content Layout ─── */
.content-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.content-text { font-size: 1rem; line-height: 1.8; }
.content-image { overflow: hidden; }
.content-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.content-image:hover img { transform: scale(1.03); }

/* ─── Values / Features Grid ─── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card { text-align: center; padding: 40px 24px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); transition: all 0.6s ease; }
.value-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 10px 50px rgba(201,169,78,0.08); }
.value-card i { font-size: 2.5rem; background: linear-gradient(135deg, var(--gold), var(--lavender-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.value-card h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 10px; color: var(--white); }
.value-card p { color: var(--gray-400); font-size: 0.9rem; line-height: 1.7; }

/* ─── Page Content Blocks ─── */
.page-section { padding: 80px 0; }
.page-section h2 { font-family: var(--font-display); font-size: 2rem; letter-spacing: 2px; margin-bottom: 16px; color: var(--white); }
.page-section h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 12px; color: var(--champagne); }
.page-section p { line-height: 1.8; margin-bottom: 16px; color: var(--gray-400); }
.page-section ul { list-style: none; padding: 0; }
.page-section ul li { padding: 6px 0; padding-left: 20px; position: relative; color: var(--gray-400); line-height: 1.7; }
.page-section ul li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 0.5rem; top: 12px; }

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0; }
.faq-question { width: 100%; text-align: left; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-heading); font-size: 1.05rem; color: var(--white); transition: var(--transition-fast); cursor: pointer; }
.faq-question:hover { color: var(--gold); }
.faq-question i { transition: transform 0.4s ease; font-size: 0.85rem; color: var(--gold); }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding 0.5s ease; padding: 0; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 0 20px; }
.faq-answer p { color: var(--gray-400); line-height: 1.7; }

/* ─── Contact Form ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 16px; color: var(--white); }
.contact-info p { color: var(--gray-400); margin-bottom: 24px; line-height: 1.7; }
.contact-detail { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.contact-detail i { color: var(--gold); font-size: 1rem; margin-top: 4px; min-width: 20px; }
.contact-detail div p { margin-bottom: 2px; }
.contact-detail div small { color: var(--gray-500); font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; }

/* ─── Size Guide Table ─── */
.size-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.size-table th, .size-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); }
.size-table th { font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.size-table td { color: var(--gray-300); }
.size-table tr:hover td { background: rgba(255,255,255,0.03); }

/* ─── Responsive Page Styles ─── */
@media (max-width: 768px) {
  .page-hero { padding: 50px 0; }
  .page-hero-content h1 { font-size: 2.2rem; }
  .content-layout { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .checkout-row { grid-template-columns: 1fr; }
}

/* ─── Section Base ─── */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  font-family: var(--font-ui); font-size: 0.65rem;
  letter-spacing: 5px; text-transform: uppercase;
  display: block; margin-bottom: 12px; color: var(--gold);
}
.section-title {
  font-family: var(--font-display); font-size: 2.8rem;
  font-weight: 600; letter-spacing: 3px; margin-bottom: 12px; line-height: 1.2;
  color: var(--white);
}
.section-desc { font-size: 1.1rem; max-width: 520px; margin: 0 auto; line-height: 1.7; color: var(--gray-400); }
.section-footer { text-align: center; margin-top: 48px; }

/* ─── BURGUNDY (New Arrivals) ─── */
.section-burgundy {
  background: linear-gradient(160deg, var(--burgundy-dark) 0%, var(--burgundy) 40%, var(--burgundy-light) 100%);
  color: var(--champagne);
}
.section-burgundy::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(201,169,78,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.section-burgundy .product-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); }
.section-burgundy .product-card:hover {
  border-color: var(--gold); box-shadow: 0 10px 50px rgba(201,169,78,0.1);
  background: rgba(255,255,255,0.06);
}
.section-burgundy .product-info .product-name { color: var(--champagne); }
.section-burgundy .product-info .product-price { color: var(--gold); }
.section-burgundy .product-info .product-category { color: rgba(255,255,255,0.3); }
.section-burgundy .product-info .product-material { color: rgba(255,255,255,0.4); }

/* ─── NAVY (Best Sellers) ─── */
.section-navy {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
  color: var(--white);
}
.section-navy::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(155,142,196,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.section-navy .product-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); }
.section-navy .product-card:hover {
  border-color: var(--lavender); box-shadow: 0 10px 50px rgba(155,142,196,0.1);
  background: rgba(255,255,255,0.06);
}
.section-navy .product-info .product-name { color: var(--white); }
.section-navy .product-info .product-price { color: var(--lavender-light); }
.section-navy .product-info .product-category { color: rgba(255,255,255,0.3); }
.section-navy .product-info .product-material { color: rgba(255,255,255,0.4); }

/* ─── ROSE (Bridal) ─── */
.section-rose {
  background: linear-gradient(160deg, var(--rose-dark) 0%, var(--rose) 40%, var(--rose-light) 100%);
  color: var(--rose-gold-light);
}
.section-rose::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(183,110,121,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.section-rose .product-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(183,110,121,0.08); }
.section-rose .product-card:hover {
  border-color: var(--rose-gold); box-shadow: 0 10px 50px rgba(183,110,121,0.1);
  background: rgba(255,255,255,0.06);
}
.section-rose .product-info .product-name { color: var(--champagne); }
.section-rose .product-info .product-price { color: var(--rose-gold); }
.section-rose .product-info .product-category { color: rgba(255,255,255,0.3); }
.section-rose .product-info .product-material { color: rgba(255,255,255,0.4); }

/* ─── EMERALD (Daily Wear) ─── */
.section-emerald {
  background: linear-gradient(160deg, var(--emerald-dark) 0%, var(--emerald) 40%, var(--emerald-light) 100%);
}
.section-emerald::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,169,78,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.section-emerald .product-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); }
.section-emerald .product-card:hover {
  border-color: var(--gold); box-shadow: 0 10px 50px rgba(201,169,78,0.1);
  background: rgba(255,255,255,0.06);
}
.section-emerald .product-info .product-name { color: var(--champagne); }
.section-emerald .product-info .product-price { color: var(--gold); }
.section-emerald .product-info .product-category { color: rgba(255,255,255,0.3); }
.section-emerald .product-info .product-material { color: rgba(255,255,255,0.4); }

/* ─── AMETHYST (Categories) ─── */
.section-amethyst {
  background: linear-gradient(160deg, var(--amethyst-dark) 0%, var(--amethyst) 40%, var(--amethyst-light) 100%);
  color: var(--lavender-light);
}
.section-amethyst::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,78,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.section-amethyst .section-desc { color: rgba(255,255,255,0.5); }

/* ─── OBSIDIAN (Reviews) ─── */
.section-obsidian {
  background: linear-gradient(160deg, var(--obsidian) 0%, var(--obsidian-light) 100%);
  color: var(--white);
}
.section-obsidian .section-desc { color: var(--gray-500); }

/* ─── CHARCOAL (Trust) ─── */
.section-charcoal {
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  color: var(--champagne);
}
.section-charcoal .section-tag { color: var(--lavender-light); }
.section-charcoal .section-title { color: var(--white); }
.section-charcoal .section-desc { color: var(--gray-500); }

/* ─── ROYAL (Newsletter) ─── */
.section-royal {
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--amethyst) 50%, var(--navy) 100%);
  color: var(--white);
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: var(--font-ui); font-size: 0.7rem;
  font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.5s ease;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--lavender-dark));
  opacity: 0; transition: opacity 0.5s ease;
}
.btn-primary * { position: relative; z-index: 1; }
.btn-primary:hover {
  gap: 16px; transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,169,78,0.3);
}
.btn-primary:hover::before { opacity: 1; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-ui); font-size: 0.65rem;
  font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
.btn-outline:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--black); gap: 16px;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,169,78,0.25);
}

/* ─── Product Grid ─── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.product-card {
  position: relative; overflow: hidden;
  transition: all 0.6s ease; cursor: pointer;
  transform: translateY(0);
}
.product-card:hover { transform: translateY(-8px); }
.product-image {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
}
.product-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.6s ease; pointer-events: none;
}
.product-card:hover .product-image::after { opacity: 1; }
.product-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.product-card:hover .product-image img { transform: scale(1.1); }
.product-actions {
  position: absolute; top: 16px; right: 16px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(16px);
  transition: all 0.5s ease 0.05s; z-index: 2;
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-actions button {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--gray-700); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all 0.35s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.product-actions button:hover {
  background: linear-gradient(135deg, var(--gold), var(--lavender));
  color: var(--white); transform: scale(1.08);
}
.product-actions .wishlist-btn.active { color: var(--lavender); background: rgba(155,142,196,0.15); }
.product-actions button:nth-child(2) { transition-delay: 0.05s; }
.product-actions button:nth-child(3) { transition-delay: 0.1s; }
.product-badge {
  position: absolute; top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: var(--font-ui); font-size: 0.55rem;
  font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 12px; z-index: 2;
}
.product-info { padding: 18px 16px 16px; text-align: center; transition: var(--transition); }
.product-card:hover .product-info { padding-top: 22px; }
.product-category {
  font-family: var(--font-ui); font-size: 0.55rem;
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 6px;
}
.product-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 500; margin-bottom: 4px; }
.product-material { font-size: 0.85rem; margin-bottom: 8px; }
.product-price { font-family: var(--font-ui); font-size: 0.85rem; font-weight: 500; }

/* ─── Categories ─── */
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.category-card {
  position: relative; aspect-ratio: 1;
  background-size: cover; background-position: center;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 1px solid transparent;
  transition: all 0.6s ease;
}
.category-card:hover {
  border-color: var(--gold); transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}
.category-card:hover .category-overlay { background: rgba(0,0,0,0.55); }
.category-card:hover .category-content h3 { letter-spacing: 6px; }
.category-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background 0.6s ease;
}
.category-content { position: relative; z-index: 1; text-align: center; color: var(--white); }
.category-content h3 {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 600; margin-bottom: 10px;
  letter-spacing: 3px; transition: letter-spacing 0.6s ease;
}
.category-content span {
  font-family: var(--font-ui); font-size: 0.6rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 8px;
}
.category-content span i { transition: transform 0.4s ease; }
.category-card:hover .category-content span i { transform: translateX(6px); }

/* ─── Reviews ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.02), rgba(155,142,196,0.03));
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.6s ease; position: relative;
}
.review-card::before {
  content: '"'; font-family: var(--font-script);
  font-size: 4rem; color: var(--gold);
  opacity: 0.1; position: absolute; top: 10px; left: 20px; line-height: 1;
}
.review-card:hover {
  border-color: rgba(155,142,196,0.25);
  box-shadow: 0 10px 50px rgba(0,0,0,0.2);
  transform: translateY(-6px);
}
.review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 3px; }
.review-text {
  font-size: 1.05rem; line-height: 1.8;
  color: var(--gray-300); font-style: italic; margin-bottom: 20px; min-height: 80px;
}
.review-author {
  font-family: var(--font-ui); font-size: 0.65rem;
  letter-spacing: 3px; text-transform: uppercase; color: var(--lavender-light);
}
.review-location { font-size: 0.85rem; color: var(--gray-500); }

/* ─── Trust ─── */
.trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.trust-item { padding: 20px; transition: all 0.5s ease; }
.trust-item:hover { transform: translateY(-4px); }
.trust-item i {
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px; transition: var(--transition);
}
.trust-item:hover i {
  background: linear-gradient(135deg, var(--lavender), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-item h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500; margin-bottom: 8px; color: var(--white); }
.trust-item p { color: var(--gray-400); font-size: 0.9rem; }

/* ─── Newsletter ─── */
.newsletter-content { text-align: center; max-width: 600px; margin: 0 auto; }
.newsletter-content h2 {
  font-family: var(--font-display); font-size: 2.8rem;
  font-weight: 600; letter-spacing: 3px; margin-bottom: 16px; color: var(--white);
}
.newsletter-content p { font-size: 1.1rem; margin-bottom: 32px; opacity: 0.85; line-height: 1.7; color: var(--lavender-light); }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; transition: var(--transition); }
.newsletter-form:focus-within { transform: translateY(-2px); }
.newsletter-form input {
  flex: 1; padding: 16px 20px; border: none;
  font-size: 0.95rem; font-family: var(--font-body);
  background: rgba(255,255,255,0.9); transition: var(--transition);
}
.newsletter-form input:focus { background: var(--white); }
.newsletter-form button {
  padding: 16px 32px; background: var(--gold); color: var(--black);
  font-family: var(--font-ui); font-size: 0.65rem;
  font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.5s ease; cursor: pointer;
}
.newsletter-form button:hover { background: var(--gold-dark); gap: 14px; }

/* ─── Footer ─── */
#footer {
  background: linear-gradient(160deg, #060a12 0%, #0a0a18 40%, #0e0a1a 100%);
  color: var(--white); padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(155,142,196,0.08);
}
.footer-brand h3 {
  font-family: var(--font-display); font-size: 1.6rem;
  letter-spacing: 8px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold), var(--lavender-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand p { color: var(--gray-400); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(155,142,196,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s ease; color: var(--gray-400); font-size: 1rem;
}
.footer-social a:hover {
  border-color: var(--lavender); color: var(--lavender-light);
  background: rgba(155,142,196,0.08); transform: translateY(-3px);
}
.footer-links h4 {
  font-family: var(--font-ui); font-size: 0.65rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
  color: var(--gray-400); font-size: 0.85rem;
  transition: all 0.4s ease; position: relative; padding-left: 0;
}
.footer-links ul li a::before {
  content: '—'; color: var(--gold); opacity: 0;
  margin-right: 0; transition: all 0.4s ease;
}
.footer-links ul li a:hover { color: var(--lavender-light); padding-left: 18px; }
.footer-links ul li a:hover::before { opacity: 1; margin-right: 6px; }
.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: var(--gray-500); font-size: 0.75rem; font-family: var(--font-ui); }
.footer-payments { display: flex; gap: 16px; font-size: 1.5rem; color: var(--gray-500); }
.footer-payments i { transition: var(--transition-fast); }
.footer-payments i:hover { color: var(--gold); transform: scale(1.1); }

/* ─── Quick View ─── */
.quick-view-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(10,10,10,0.8); backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; transition: all 0.5s ease;
}
.quick-view-overlay.active { opacity: 1; visibility: visible; }
.quick-view-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 5001; width: 90%; max-width: 800px; max-height: 85vh;
  background: var(--white); overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: all 0.5s ease;
  border: 1px solid var(--lavender-light);
}
.quick-view-modal.active { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.qv-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 42px; height: 42px; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gray-700);
  box-shadow: var(--shadow-sm); transition: all 0.4s ease; border-radius: 50%;
}
.qv-close:hover { background: var(--lavender); color: var(--white); transform: rotate(90deg); }
.qv-content { display: grid; grid-template-columns: 1fr 1fr; }
.qv-image { aspect-ratio: 1; overflow: hidden; }
.qv-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.qv-image:hover img { transform: scale(1.05); }
.qv-details { padding: 40px; }
.qv-details .qv-category {
  font-family: var(--font-ui); font-size: 0.6rem;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 8px;
}
.qv-details h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 500; margin-bottom: 8px; }
.qv-material { color: var(--gray-500); margin-bottom: 16px; }
.qv-price {
  font-family: var(--font-ui); font-size: 1.3rem;
  font-weight: 500; color: var(--lavender-dark); margin-bottom: 20px;
}
.qv-description { color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; }
.qv-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.qv-actions .btn-primary { flex: 1; justify-content: center; }
.qv-actions .wishlist-btn {
  width: 50px; height: 50px; border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gray-500);
  transition: all 0.35s ease;
}
.qv-actions .wishlist-btn:hover, .qv-actions .wishlist-btn.active { color: var(--lavender); border-color: var(--lavender); }
.qv-actions .wishlist-btn.active { background: rgba(155,142,196,0.08); }

/* ─── Search Results ─── */
#searchResults { display: none; padding: 40px 0 60px; }
#searchResults.active { display: block; }
#searchResultsTitle { font-family: var(--font-display); color: var(--gold); margin-bottom: 24px; font-size: 1.1rem; letter-spacing: 2px; }

/* ─── Sort Controls ─── */
.section-controls { text-align: center; margin-top: 16px; }
.sort-select {
  padding: 8px 16px;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.05);
  color: var(--gray-300);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}
.sort-select:hover, .sort-select:focus { border-color: var(--gold); color: var(--gold); }
.sort-select option { background: var(--black); color: var(--gray-300); }

/* ─── Checkout Modal ─── */
.checkout-overlay {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(10,10,10,0.8); backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; transition: all 0.5s ease;
}
.checkout-overlay.active { opacity: 1; visibility: visible; }
.checkout-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 8001; width: 90%; max-width: 640px; max-height: 90vh;
  background: var(--white); overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: all 0.5s ease;
}
.checkout-modal.active { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.checkout-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--gray-200);
  background: linear-gradient(135deg, var(--lavender-mist), var(--white));
  position: sticky; top: 0; z-index: 2;
}
.checkout-header h3 { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 2px; color: var(--lavender-dark); }
.checkout-header button { font-size: 1.1rem; color: var(--gray-500); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; transition: all 0.35s ease; border-radius: 50%; }
.checkout-header button:hover { color: var(--white); background: var(--lavender); }
.checkout-body { padding: 24px; }
.checkout-summary { background: var(--gray-100); padding: 16px; margin-bottom: 24px; border-radius: 4px; }
.checkout-summary h4 { font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 12px; }
.checkout-item { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.85rem; border-bottom: 1px solid var(--gray-200); }
.checkout-item:last-child { border-bottom: none; }
.checkout-total { display: flex; justify-content: space-between; font-family: var(--font-ui); font-size: 0.9rem; font-weight: 600; padding-top: 12px; margin-top: 8px; border-top: 2px solid var(--lavender-light); }
.checkout-total span:last-child { color: var(--lavender-dark); }
.checkout-field { margin-bottom: 16px; }
.checkout-field label { display: block; font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 6px; }
.checkout-field input, .checkout-field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--gray-200);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition-fast); outline: none;
}
.checkout-field input:focus, .checkout-field textarea:focus { border-color: var(--lavender); box-shadow: var(--shadow-lavender); }
.checkout-field textarea { resize: vertical; }
.checkout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.payment-options { display: flex; flex-direction: column; gap: 8px; }
.payment-option { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; cursor: pointer; }
.payment-option input[type="radio"] { accent-color: var(--lavender); }

/* ─── Side Cart ─── */
.side-cart, .side-wishlist {
  position: fixed; top: 0; right: 0; width: 420px; max-width: 100vw;
  height: 100vh; background: var(--white); z-index: 6000;
  box-shadow: -10px 0 60px rgba(0,0,0,0.1);
  transform: translateX(100%); transition: transform 0.6s ease;
  display: flex; flex-direction: column;
}
.side-cart.active, .side-wishlist.active { transform: translateX(0); }
.side-cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--gray-200);
  background: linear-gradient(135deg, var(--lavender-mist), var(--white));
}
.side-cart-header h3 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 500; color: var(--lavender-dark); letter-spacing: 2px;
}
.side-cart-header button {
  font-size: 1.1rem; color: var(--gray-500);
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  transition: all 0.35s ease; border-radius: 50%;
}
.side-cart-header button:hover { color: var(--white); background: var(--lavender); }
.side-cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; text-align: center; gap: 16px;
}
.cart-empty i { font-size: 3rem; color: var(--lavender-light); transition: var(--transition); }
.cart-empty:hover i { transform: scale(1.1); color: var(--lavender); }
.cart-empty p { color: var(--gray-500); font-family: var(--font-ui); font-size: 0.85rem; }
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--gray-100); transition: var(--transition-fast); }
.cart-item:hover { background: var(--lavender-mist); margin: 0 -24px; padding: 16px 24px; }
.cart-item-image { width: 80px; height: 100px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--font-heading); font-size: 0.95rem; margin-bottom: 4px; }
.cart-item-price { font-family: var(--font-ui); font-size: 0.8rem; color: var(--lavender-dark); }
.cart-item-actions { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.cart-item-qty { display: flex; align-items: center; border: 1px solid var(--gray-200); }
.cart-item-qty:focus-within { border-color: var(--lavender); }
.cart-item-qty button { width: 28px; height: 28px; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; color: var(--gray-500); transition: all 0.3s ease; }
.cart-item-qty button:hover { background: var(--lavender-mist); color: var(--lavender-dark); }
.cart-item-qty span { width: 32px; text-align: center; font-family: var(--font-ui); font-size: 0.8rem; }
.cart-item-remove { color: var(--gray-400); font-size: 0.85rem; margin-left: auto; transition: all 0.35s ease; }
.cart-item-remove:hover { color: var(--rose-gold); transform: scale(1.1); }
.side-cart-footer { padding: 20px 24px; border-top: 1px solid var(--gray-200); }
.cart-total { display: flex; justify-content: space-between; font-family: var(--font-ui); font-size: 0.85rem; margin-bottom: 16px; }
.cart-total span:last-child { font-weight: 600; font-size: 1rem; color: var(--lavender-dark); }
.side-cart-footer .btn-primary { width: 100%; justify-content: center; }

/* ─── Toast ─── */
.toast-container { position: fixed; top: 100px; right: 24px; z-index: 7000; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: linear-gradient(135deg, var(--black), var(--obsidian-light));
  color: var(--white); padding: 14px 24px; display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem; font-family: var(--font-ui);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  animation: toastIn 0.5s ease, toastOut 0.5s 2.6s ease forwards;
  min-width: 280px; border: 1px solid rgba(155,142,196,0.12);
}
.toast i { color: var(--gold); font-size: 1rem; }
@keyframes toastIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } }

/* ─── Animations ─── */
.fade-up { opacity: 0; transform: translateY(50px); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--lavender-light); border-radius: 4px; transition: var(--transition-fast); }
::-webkit-scrollbar-thumb:hover { background: var(--lavender); }

/* ─── Mega Menu ─── */
.nav-links .has-mega { position: relative; }
.mega-trigger { cursor: pointer; }
.mega-menu {
  position: absolute; top: 100%; left: -100px;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(24px);
  min-width: 780px; padding: 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all 0.5s ease;
  z-index: 2000;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  border-top: 2px solid var(--gold);
}
.mega-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--lavender-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}
.mega-col ul { list-style: none; padding: 0; }
.mega-col ul li { margin-bottom: 8px; }
.mega-col ul li a {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: all 0.35s ease;
  display: block;
  padding: 4px 0;
}
.mega-col ul li a:hover { color: var(--lavender); padding-left: 8px; }
.mega-col .mega-featured {
  display: block;
  margin-top: 12px;
  padding: 16px;
  background: linear-gradient(135deg, var(--lavender-mist), var(--white));
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lavender-dark);
  transition: all 0.4s ease;
  border-left: 2px solid var(--gold);
}
.mega-col .mega-featured:hover { background: var(--lavender-light); padding-left: 20px; color: var(--black); }
.mega-mobile-toggle { display: none; }

/* ─── Collection Page ─── */
.collection-top { padding: 60px 0 0; }
.collection-intro { text-align: center; max-width: 700px; margin: 0 auto 36px; }
.collection-intro p { font-size: 1.1rem; line-height: 1.8; color: var(--gray-400); }
.collection-controls { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }
.cat-filter { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-btn {
  padding: 8px 18px;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  color: var(--gray-400);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.4s ease;
}
.cat-btn:hover { border-color: var(--gold); color: var(--gold); }
.cat-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.collection-active { font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-500); }
.collection-active span { color: var(--gold); }

/* ─── Category Sections ─── */
.cat-section { margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.cat-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.cat-section-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: var(--white);
  position: relative;
}
.cat-section-header h3::after {
  content: '';
  position: absolute; bottom: -6px; left: 0;
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ─── Promo Banner ─── */
.collection-promo {
  margin-top: 80px;
  padding: 60px;
  text-align: center;
  background: linear-gradient(135deg, rgba(201,169,78,0.06), rgba(155,142,196,0.06));
  border: 1px solid rgba(201,169,78,0.1);
}
.collection-promo h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}
.collection-promo p {
  font-size: 1rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

/* ─── Product Detail Page ─── */
.breadcrumb {
  padding: 20px 0;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.breadcrumb span { color: var(--gray-400); }
.breadcrumb a { color: var(--gold); transition: var(--transition-fast); }
.breadcrumb a:hover { color: var(--lavender); }
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-detail-gallery { position: sticky; top: 100px; }
.product-detail-main { aspect-ratio: 1; overflow: hidden; background: var(--gray-100); }
.product-detail-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.product-detail-main:hover img { transform: scale(1.04); }
.product-detail-category {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-detail-name { font-family: var(--font-display); font-size: 2.2rem; font-weight: 500; letter-spacing: 2px; margin-bottom: 8px; }
.product-detail-material { color: var(--gray-500); font-size: 1rem; margin-bottom: 16px; }
.product-detail-price { font-family: var(--font-ui); font-size: 1.8rem; font-weight: 500; color: var(--lavender-dark); margin-bottom: 20px; }
.product-detail-divider { height: 1px; background: var(--gray-200); margin: 20px 0; }
.product-detail-desc { color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; }
.product-detail-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.product-detail-specs > div { display: flex; justify-content: space-between; padding: 8px 12px; background: var(--gray-100); font-size: 0.8rem; }
.product-detail-specs > div span:first-child { font-family: var(--font-ui); font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-500); }
.product-detail-specs > div span:last-child { color: var(--black); font-weight: 500; }
.product-detail-actions { display: flex; gap: 16px; align-items: center; }
.product-detail-actions .btn-primary { flex: 1; justify-content: center; }

/* ─── Mega Menu + Collection Responsive ─── */
@media (max-width: 1024px) {
  .mega-menu { min-width: auto; left: 0; right: 0; grid-template-columns: repeat(2, 1fr); }
  .product-detail-layout { gap: 40px; }
}
@media (max-width: 768px) {
  .mega-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; grid-template-columns: 1fr 1fr; max-height: 70vh; overflow-y: auto; padding: 24px; }
  .mega-menu.active { display: grid; }
  .mega-mobile-toggle { display: block; }
  .cat-section-header { flex-direction: column; align-items: flex-start; }
  .collection-controls { flex-direction: column; align-items: stretch; }
  .cat-filter { justify-content: center; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .product-detail-gallery { position: static; }
  .product-detail-name { font-size: 1.6rem; }
  .product-detail-price { font-size: 1.3rem; }
  .product-detail-specs { grid-template-columns: 1fr; }
  .collection-promo { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .mega-menu { grid-template-columns: 1fr; }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 3.5rem; }
}
@media (max-width: 768px) {
  .header-top { font-size: 0.55rem; gap: 12px; flex-direction: column; }
  .nav-links { position: fixed; top: 72px; left: 0; right: 0; background: white; flex-direction: column; padding: 24px; gap: 18px; border-bottom: 2px solid var(--lavender-light); display: none; z-index: 100; animation: slideDown 0.3s ease; }
  .nav-links.active { display: flex; }
  .nav-toggle { display: block; }
  .nav-logo { font-size: 1.3rem; letter-spacing: 6px; }
  .nav-actions { gap: 14px; }
  #hero { height: 70vh; min-height: 500px; }
  .hero-content { padding: 0 24px; }
  .hero-content h1 { font-size: 2.8rem; letter-spacing: 2px; }
  .hero-desc { font-size: 1rem; }
  .hero-controls { left: 24px; bottom: 24px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 2rem; letter-spacing: 2px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .quick-view-modal { width: 95%; }
  .qv-content { grid-template-columns: 1fr; }
  .qv-image { aspect-ratio: 4/3; }
  .qv-details { padding: 24px; }
  .side-cart, .side-wishlist { width: 100vw; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { text-align: center; }
  .newsletter-form button { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: 1fr; }
  .nav-logo { font-size: 1.1rem; letter-spacing: 4px; }
  .hero-content h1 { font-size: 2rem; }
  .section-title { font-size: 1.5rem; }
}
