/* ===== CSS VARIABLES ===== */
:root {
  --purple: #7B2FBE;
  --purple-light: #9D4EDD;
  --purple-glow: #B57BEE;
  --purple-dark: #4A0E8F;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F0DFA0;
  --silver: #C0C8D8;
  --black: #06030D;
  --dark: #0D0618;
  --dark2: #140A22;
  --dark3: #1C1030;
  --glass: rgba(123, 47, 190, 0.08);
  --glass-border: rgba(201, 168, 76, 0.2);
  --text: #E8E0F0;
  --text-muted: #9A8FB0;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-purple: 0 0 40px rgba(123, 47, 190, 0.4);
  --shadow-gold: 0 0 20px rgba(201, 168, 76, 0.3);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  cursor: default;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
input { font-family: var(--font-sans); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 2px; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.loader-f {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-light);
  font-style: italic;
  z-index: 1;
}
.loader-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--purple);
  border-top-color: var(--gold);
  animation: spin 1.2s linear infinite;
}
.loader-brand {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.loader-bar {
  width: 200px; height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  animation: loadFill 2s ease forwards;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(6, 3, 13, 0.9);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.nav-logo a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold-light); }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
  position: relative;
}
.nav-icon:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
}
.badge {
  position: absolute; top: -6px; right: -6px;
  width: 18px; height: 18px;
  background: var(--purple);
  border-radius: 50%;
  font-size: 0.6rem;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 500;
}
.hamburger { display: none; flex-direction: column; gap: 5px; }
.hamburger span {
  width: 22px; height: 1px;
  background: var(--text);
  transition: var(--transition);
  display: block;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  border: 1px solid var(--purple-light);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary { z-index: 1; }
.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(123, 47, 190, 0.5);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-block;
  padding: 13px 36px;
  background: transparent;
  color: var(--text);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.05);
}
.full-width { width: 100%; text-align: center; }

/* ===== CONTAINERS ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
section { padding: 120px 0; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { color: var(--purple-glow); font-style: italic; }
.section-sub { color: var(--text-muted); font-weight: 300; font-size: 1rem; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg { position: absolute; inset: 0; }
.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(74, 14, 143, 0.5) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(123, 47, 190, 0.2) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 100%, rgba(30, 10, 60, 0.8) 0%, transparent 60%),
              linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}
.hero-particles { position: absolute; inset: 0; }
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px;
  max-width: 680px;
  margin-top: 80px;
}
.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--purple-glow);
  display: block;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-bottle {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 380px;
}
.bottle-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(123, 47, 190, 0.4) 0%, transparent 70%);
  filter: blur(30px);
}
.bottle-img {
  position: relative; z-index: 1;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(123, 47, 190, 0.5));
  border-radius: 12px;
}
.bottle-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 3s ease-in-out infinite;
}
.ring-1 { width: 320px; height: 320px; animation-delay: 0s; }
.ring-2 { width: 420px; height: 420px; animation-delay: 0.6s; border-color: rgba(123, 47, 190, 0.1); }
.ring-3 { width: 520px; height: 520px; animation-delay: 1.2s; border-color: rgba(201, 168, 76, 0.07); }
.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 60px;
  display: flex; align-items: center; gap: 16px;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.scroll-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: linear-gradient(90deg, var(--purple-dark), var(--purple), var(--purple-dark));
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  padding: 0 40px;
  white-space: nowrap;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 24px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 2px;
  color: var(--text-muted);
  background: transparent;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: linear-gradient(135deg, rgba(20, 10, 34, 0.9), rgba(28, 16, 48, 0.9));
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(123, 47, 190, 0.3);
}
.product-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-actions {
  position: absolute;
  top: 16px; right: 16px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(10px);
  transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(6, 3, 13, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--text-muted);
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.product-action-btn:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.product-action-btn.wishlisted { color: #e74c3c; border-color: #e74c3c; }
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 4px 12px;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 1px;
}
.badge-new { background: var(--purple); color: #fff; }
.badge-bestseller { background: var(--gold); color: var(--black); }
.badge-limited { background: rgba(201, 168, 76, 0.15); color: var(--gold-light); border: 1px solid var(--gold); }
.product-info { padding: 20px 22px 24px; }
.product-category {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.product-notes {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 300;
}
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.stars { color: var(--gold); font-size: 0.75rem; }
.rating-count { font-size: 0.7rem; color: var(--text-muted); }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-light);
}
.product-price .old-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 6px;
  font-family: var(--font-sans);
}
.add-to-cart {
  padding: 9px 18px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  border-radius: 2px;
  border: 1px solid var(--purple-light);
  transition: var(--transition);
}
.add-to-cart:hover {
  background: linear-gradient(135deg, var(--gold), var(--purple));
  box-shadow: 0 5px 20px rgba(123, 47, 190, 0.4);
}

/* ===== ABOUT ===== */
#about {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.about-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(123, 47, 190, 0.12) 0%, transparent 60%);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}
.about-img-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 560px;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
}
.about-img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(123, 47, 190, 0.3));
  z-index: 1;
}
.about-badge {
  position: absolute;
  bottom: 32px; right: -20px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border: 1px solid var(--gold);
  padding: 20px 24px;
  text-align: center;
  z-index: 2;
  border-radius: 2px;
}
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-light);
  font-weight: 600;
}
.badge-txt {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}
.about-text p {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.about-stats {
  display: flex;
  gap: 36px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--purple-glow);
  font-weight: 600;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== BESTSELLERS ===== */
#bestsellers { background: var(--black); }
.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bestseller-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  transition: var(--transition);
}
.bestseller-card:hover { transform: scale(1.02); }
.bestseller-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.bestseller-card:hover img { transform: scale(1.1); }
.bestseller-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6, 3, 13, 0.95) 0%, rgba(6, 3, 13, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.bestseller-rank {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.12);
  font-weight: 700;
  position: absolute;
  top: 20px; right: 20px;
  line-height: 1;
}
.bestseller-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.bestseller-sub { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 16px; }
.bestseller-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

/* ===== WHY CHOOSE US ===== */
#why {
  background: var(--dark);
  position: relative;
}
#why::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(74, 14, 143, 0.12) 0%, transparent 70%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative; z-index: 1;
}
.why-card {
  padding: 40px 28px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(123, 47, 190, 0.1);
  transform: translateY(-6px);
  box-shadow: var(--shadow-purple);
}
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 500;
}
.why-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; font-weight: 300; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--black); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 36px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--purple);
  opacity: 0.3;
  line-height: 1;
}
.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; }
.testimonial-text {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 168, 76, 0.3);
}
.author-name {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 2px;
}
.author-location { font-size: 0.7rem; color: var(--text-muted); }

/* ===== GALLERY ===== */
#gallery { background: var(--dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  height: 200px;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85) saturate(0.9);
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(0.7); }
.gallery-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(123, 47, 190, 0.4);
  opacity: 0;
  transition: opacity 0.4s;
  font-size: 1.5rem;
  color: #fff;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gi-tall { grid-row: span 2; height: auto; min-height: 416px; }
.gi-wide { grid-column: span 2; }

/* ===== NEWSLETTER ===== */
#newsletter {
  background: linear-gradient(135deg, var(--dark2), var(--black));
  position: relative;
  overflow: hidden;
}
#newsletter::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(123, 47, 190, 0.2) 0%, transparent 70%);
}
.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
}
.newsletter-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.newsletter-inner p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 16px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 2px;
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: none;
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form .btn-primary { border-radius: 0; border: none; border-left: 1px solid rgba(201, 168, 76, 0.2); }
.newsletter-note { font-size: 0.7rem; color: var(--text-muted); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 80px 60px 60px;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand span { color: var(--gold-light); }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 300px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}
.footer-links h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
  display: flex; align-items: center; gap: 8px;
  font-weight: 300;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links li i { color: var(--purple-glow); font-size: 0.75rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-muted); transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold-light); }

/* ===== SEARCH OVERLAY ===== */
#searchOverlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(6, 3, 13, 0.96);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
#searchOverlay.active { opacity: 1; visibility: visible; }
#searchClose {
  position: absolute;
  top: 30px; right: 40px;
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: color 0.3s;
}
#searchClose:hover { color: var(--gold-light); }
.search-box {
  position: relative;
  width: 600px; max-width: 90vw;
  margin-bottom: 40px;
}
.search-box input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  padding: 16px 50px 16px 0;
  font-size: 1.8rem;
  color: var(--white);
  outline: none;
  font-family: var(--font-serif);
}
.search-box input::placeholder { color: var(--text-muted); }
.search-box i {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
}
#searchResults {
  width: 600px; max-width: 90vw;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

/* ===== SIDEBARS ===== */
#cartSidebar, #wishlistSidebar {
  position: fixed;
  top: 0; right: -480px;
  width: 420px;
  height: 100vh;
  z-index: 1050;
  background: var(--dark2);
  border-left: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#cartSidebar.open, #wishlistSidebar.open { right: 0; }
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.sidebar-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 400;
}
.sidebar-header button { color: var(--text-muted); font-size: 1rem; transition: color 0.3s; }
.sidebar-header button:hover { color: var(--gold-light); }
#cartItems, #wishItems { flex: 1; overflow-y: auto; padding: 20px 28px; }
.empty-msg { color: var(--text-muted); text-align: center; padding: 40px 0; font-size: 0.9rem; }
.cart-footer {
  padding: 20px 28px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.cart-total {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex; justify-content: space-between;
}
.cart-total span { color: var(--gold-light); font-family: var(--font-serif); font-size: 1.1rem; }
.cart-item {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 2px; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.9rem; color: var(--white); margin-bottom: 4px; }
.cart-item-price { font-size: 0.85rem; color: var(--gold); }
.cart-item-remove { color: var(--text-muted); font-size: 0.75rem; transition: color 0.3s; }
.cart-item-remove:hover { color: #e74c3c; }

/* ===== OVERLAY ===== */
#overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(6, 3, 13, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
#overlay.active { opacity: 1; visibility: visible; }

/* ===== TOAST ===== */
#toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 2px;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  z-index: 2000;
  transition: transform 0.4s ease;
  white-space: nowrap;
}
#toast.show { transform: translateX(-50%) translateY(0); }

/* ===== PARTICLE ===== */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat linear infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .bestsellers-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap img { height: 400px; }
  .about-badge { right: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  #navbar { padding: 16px 24px; }
  #navbar.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6, 3, 13, 0.97);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.5rem; letter-spacing: 0.2em; }
  .container { padding: 0 24px; }
  section { padding: 80px 0; }
  .hero-content { padding: 0 24px; }
  .hero-bottle { display: none; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
  .scroll-indicator { left: 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .bestsellers-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gi-tall { grid-row: span 1; height: 200px; min-height: unset; }
  .gi-wide { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr; padding: 48px 24px; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; padding: 20px 24px; }
  #cartSidebar, #wishlistSidebar { width: 100%; right: -100%; }
}
@media (max-width: 600px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn-primary { border-left: none; border-top: 1px solid rgba(201,168,76,0.2); }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .about-stats { flex-wrap: wrap; gap: 20px; }
}
