/* ============================================================
   PERFUME STORE TEMPLATE — Main Stylesheet
   Glass · Luxury · French · Modern
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ---- VARIABLES ---- */
:root {
  --gold:         #C9A84C;
  --gold-light:   #E8D5A3;
  --gold-dark:    #A07830;
  --black:        #0A0A0A;
  --white:        #FFFFFF;
  --cream:        #FAF8F5;
  --glass-bg:     rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.18);
  --glass-shadow: rgba(0,0,0,0.25);
  --dark-glass:   rgba(10,10,10,0.65);
  --text-light:   rgba(255,255,255,0.85);
  --text-muted:   rgba(255,255,255,0.5);
  --text-dark:    #1a1a1a;
  --text-grey:    #6b6b6b;
  --nav-h:        80px;
  --radius:       12px;
  --radius-lg:    20px;
  --trans:        all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}
.serif { font-family: 'Cormorant Garamond', serif; }
.display-serif { font-family: 'Playfair Display', serif; }

/* ---- GLASSMORPHISM CARD ---- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.glass-dark {
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}

/* ---- GOLD DIVIDER ---- */
.gold-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 12px auto;
}

/* ---- SECTION HEADING ---- */
.section-head {
  text-align: center;
  margin-bottom: 50px;
}
.section-head .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
}
.section-head p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  margin-top: 8px;
  letter-spacing: 1px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.1);
  transition: left 0.4s ease;
}
.btn:hover::before { left: 100%; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-dark:hover {
  background: #1a1a1a;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-glass {
  background: var(--glass-bg);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm { padding: 10px 22px; font-size: 10px; letter-spacing: 2px; }
.btn-lg { padding: 18px 48px; font-size: 12px; }

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: var(--trans);
}

#navbar.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: 65px;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--white);
  text-transform: uppercase;
}
.nav-logo span { color: var(--gold); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 18px;
  height: var(--nav-h);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: var(--trans);
  white-space: nowrap;
}

#navbar.scrolled .nav-link { height: 65px; }

.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link .chevron { font-size: 8px; transition: transform 0.25s; }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Mega / Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--gold);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  transform: translateX(-50%) translateY(-6px);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  transition: var(--trans);
}
.nav-dropdown a:hover { color: var(--gold); padding-left: 26px; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-icon-btn {
  position: relative;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  border-radius: 50%;
  transition: var(--trans);
  cursor: pointer;
}
.nav-icon-btn:hover { color: var(--gold); background: rgba(255,255,255,0.06); }

.nav-badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Search bar expand */
.nav-search-wrap {
  position: relative;
}
.nav-search-input {
  width: 0;
  opacity: 0;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  padding: 6px 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
  outline: none;
}
.nav-search-wrap.active .nav-search-input {
  width: 200px;
  opacity: 1;
  border-bottom-color: var(--gold);
  padding: 6px 8px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--trans);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,5,5,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 3px;
  transition: var(--trans);
}
.nav-mobile a:hover { color: var(--gold); }

/* ---- HERO / SLIDER ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active .hero-bg { transform: scale(1); }

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.3) 60%,
    rgba(0,0,0,0.1) 100%
  );
}

/* Subtle noise texture overlay */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.2s;
}
.hero-slide.active .hero-eyebrow { opacity: 1; transform: translateY(0); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 16px 0;
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease 0.4s;
  max-width: 700px;
}
.hero-slide.active .hero-title { opacity: 1; transform: translateY(0); }

.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: 450px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.6s;
}
.hero-slide.active .hero-subtitle { opacity: 1; transform: translateY(0); }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.8s;
}
.hero-slide.active .hero-btns { opacity: 1; transform: translateY(0); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 20px; height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--trans);
}
.hero-dot.active {
  width: 40px;
  background: var(--gold);
}

/* ---- MARQUEE ---- */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 32px;
}
.marquee-track span::before {
  content: '✦';
  margin-right: 32px;
  opacity: 0.6;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- SECTION BASE ---- */
.section {
  padding: 100px 0;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ---- PRODUCT CARD ---- */
.product-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--trans);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.1);
}

.product-card-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #111;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
}
.product-card-img .img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.product-card-img .img-hover img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-card:hover .img-main { opacity: 0; transform: scale(1.08); }
.product-card:hover .img-hover { opacity: 1; }
.product-card:hover .img-main img { transform: scale(1.08); }

/* Product badges */
.product-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}
.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.badge-new    { background: var(--gold); color: var(--black); }
.badge-sale   { background: #e53e3e; color: var(--white); }
.badge-best   { background: rgba(255,255,255,0.9); color: var(--black); }

/* Product quick actions */
.product-actions {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) translateX(50px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s ease;
}
.product-card:hover .product-actions {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.action-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  cursor: pointer;
}
.action-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: scale(1.1); }
.action-btn.wishlisted { background: rgba(229,62,62,0.9); border-color: #e53e3e; }

/* Quick add overlay */
.product-quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  padding: 14px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  text-align: center;
  z-index: 2;
}
.product-card:hover .product-quick-add { transform: translateY(0); }
.product-quick-add button {
  width: 100%;
  padding: 10px;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans);
}
.product-quick-add button:hover { background: var(--gold-dark); }

/* Product info */
.product-info {
  padding: 18px;
}
.product-brand {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-stars { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.star { color: var(--gold); font-size: 13px; }
.star-count { font-size: 11px; color: var(--text-muted); }

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-current {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}
.price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-save {
  font-size: 10px;
  font-weight: 700;
  color: #fc8181;
  letter-spacing: 1px;
}

/* ---- PRODUCTS GRID ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ---- FEATURED PRODUCTS GRID (larger) ---- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.featured-grid .product-card:first-child {
  grid-row: span 2;
}
.featured-grid .product-card:first-child .product-card-img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 500px;
}

/* ---- CAROUSEL ---- */
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.carousel-track .product-card { flex: 0 0 280px; }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  z-index: 5;
}
.carousel-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.carousel-btn.prev { left: -24px; }
.carousel-btn.next { right: -24px; }

/* ---- NEW ARRIVALS ---- */
.new-arrivals-section {
  background: linear-gradient(135deg, #080808 0%, #111009 50%, #080808 100%);
  position: relative;
  overflow: hidden;
}

.new-arrivals-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.new-arrival-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.new-arrival-hero-img {
  position: relative;
  overflow: hidden;
}
.new-arrival-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.new-arrival-hero-content {
  padding: 60px 50px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.new-arrival-hero-content .launch-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
}
.new-arrival-hero-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 16px;
}
.new-arrival-hero-content .notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}


.new-arrivals-page-hero {
  position: relative;
  padding: 120px 0 48px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(201,168,76,0.12) 0%, transparent 48%),
    linear-gradient(135deg, #080808 0%, #111009 50%, #080808 100%);
  overflow: hidden;
}
.new-arrivals-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,0.16) 0%, rgba(8,8,8,0.02) 100%);
  pointer-events: none;
}
.new-arrivals-page-hero .container {
  position: relative;
  z-index: 1;
}
.new-arrivals-page-kicker {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.new-arrivals-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,5vw,3.5rem);
  font-weight: 300;
  color: var(--white);
}
.new-arrivals-page-main {
  padding-top: 40px;
  padding-bottom: 60px;
}
.new-arrivals-empty-state {
  text-align: center;
  padding: 60px;
  color: rgba(255,255,255,0.5);
}
.new-arrivals-empty-cta {
  margin-top: 1rem;
}
.new-arrivals-pagination {
  margin-top: 3rem;
}
.note-chip {
  padding: 5px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 10px;
  letter-spacing: 1px;
  border-radius: 20px;
  color: var(--text-muted);
}

/* ---- CATEGORIES GRID ---- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.category-card:first-child {
  grid-row: span 2;
  aspect-ratio: unset;
}
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.category-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 4px;
}
.category-count { font-size: 11px; color: var(--gold); letter-spacing: 2px; }

/* ---- STORY SECTION ---- */
.story-section {
  background: var(--cream);
  color: var(--text-dark);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-img {
  position: relative;
}
.story-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}
.story-img::before {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.story-content .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.story-content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 300;
}
.story-content p {
  color: var(--text-grey);
  line-height: 1.9;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
}
.story-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold-dark);
  display: block;
}
.stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-grey); }

/* ---- REVIEWS ---- */
.reviews-section { background: linear-gradient(135deg, #060606 0%, #0d0b08 100%); }

.reviews-carousel {
  position: relative;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.review-card {
  flex: 0 0 380px;
  margin: 0 12px;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: rgba(201,168,76,0.06);
  line-height: 1;
}
.review-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}

.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-stars .star { color: var(--gold); font-size: 14px; }
.review-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-style: italic;
}
.review-body {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.3);
}
.review-avatar-placeholder {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--black);
  font-weight: 600;
  flex-shrink: 0;
}
.review-name { font-size: 0.85rem; font-weight: 600; }
.review-meta { font-size: 10px; color: var(--text-muted); letter-spacing: 1px; }
.review-verified {
  font-size: 10px;
  color: #68d391;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Reviews controls */
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.rev-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
}
.rev-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.reviews-dots {
  display: flex;
  gap: 6px;
}
.reviews-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--trans);
}
.reviews-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ---- DEALS ---- */
.deals-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.deal-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  cursor: pointer;
}
.deal-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.deal-card:hover img { transform: scale(1.04); }
.deal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.deal-badge {
  display: inline-block;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  width: fit-content;
}
.deal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 6px;
}
.deal-desc { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.deal-timer {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.timer-unit {
  text-align: center;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 10px;
  border-radius: 4px;
}
.timer-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1;
}
.timer-label { font-size: 9px; letter-spacing: 1px; color: var(--text-muted); }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--trans);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.2);
}
.blog-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--white);
}
.blog-excerpt { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-muted); letter-spacing: 1px; }

/* ---- NEWSLETTER ---- */
.newsletter-section {
  background: linear-gradient(135deg, #0f0d08 0%, #1a160a 50%, #0f0d08 100%);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.newsletter-inner {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-inner .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.newsletter-inner h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 12px;
}
.newsletter-inner p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 36px; }

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 13px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
  padding: 16px 28px;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans);
}
.newsletter-form button:hover { background: var(--gold-dark); }

/* ---- FOOTER ---- */
#footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand-logo span { color: var(--gold); }
.footer-about {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--trans);
  text-decoration: none;
}
.social-icon:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: var(--trans);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-contact-item .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.25); transition: var(--trans); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---- NOTIFICATION POPUP ---- */
.notif-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  max-width: 300px;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.notif-popup.show { transform: translateX(0); }
.notif-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.notif-text { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.notif-time { font-size: 10px; color: var(--text-muted); margin-top: 3px; }

/* ---- CART SIDEBAR ---- */
.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  background: #0a0a0a;
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.cart-sidebar-overlay.open { opacity: 1; pointer-events: all; }

.cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 { font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase; }
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}
.cart-close:hover { background: rgba(255,255,255,0.12); }

.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-item-img {
  width: 80px; height: 100px;
  object-fit: cover;
  border-radius: 6px;
  background: #111;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; margin-bottom: 4px; }
.cart-item-variant { font-size: 11px; color: var(--text-muted); margin-bottom: 10px; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}
.qty-btn:hover { background: var(--gold); color: var(--black); }
.qty-num { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-top: 8px;
}
.cart-item-remove {
  background: none; border: none; color: rgba(255,255,255,0.3); cursor: pointer; font-size: 16px; align-self: flex-start; transition: var(--trans);
}
.cart-item-remove:hover { color: #fc8181; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.6);
}
.cart-total-main {
  display: flex;
  justify-content: space-between;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  margin-top: 8px;
}
.cart-actions { display: flex; flex-direction: column; gap: 10px; }
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.cart-empty .empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; }
.cart-empty p { font-size: 0.85rem; margin-bottom: 20px; }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-close { position: absolute; top: 16px; right: 16px; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  transition: var(--trans);
  outline: none;
}
.form-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.07); }
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-error { font-size: 11px; color: #fc8181; margin-top: 5px; }
.form-success { font-size: 11px; color: #68d391; margin-top: 5px; }

/* ---- PRODUCT PAGE ---- */
.product-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 44px;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.gallery-main {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.07);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.gallery-thumbs .product-thumb.active {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 1px rgba(201,168,76,0.22);
}
.product-detail > .product-info {
  padding: 10px 0 0;
}
.tab-nav .tab-btn {
  padding: 10px 0;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}
.tab-content {
  min-height: 160px;
}
.product-main-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 12px;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 10px; }
.product-thumb {
  width: 72px; height: 90px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  background: #111;
}
.product-thumb.active { border-color: var(--gold); }

.product-detail-info { padding: 10px 0; }
.product-detail-brand { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.product-detail-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 300; margin-bottom: 12px; line-height: 1.1; }
.product-detail-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.product-detail-price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-bottom: 24px; }
.product-detail-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.9; margin-bottom: 28px; }

.size-selector { margin-bottom: 24px; }
.size-selector label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 12px; }
.size-options { display: flex; flex-wrap: wrap; gap: 10px; }
.size-opt {
  padding: 10px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--trans);
  color: rgba(255,255,255,0.7);
}
.size-opt:hover { border-color: var(--gold); color: var(--gold); }
.size-opt.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.size-opt.out-of-stock { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

.product-buy-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 12px;
}
.qty-selector button { width: 44px; height: 44px; background: rgba(255,255,255,0.04); border: none; color: var(--white); font-size: 18px; cursor: pointer; transition: var(--trans); }
.qty-selector button:hover { background: rgba(255,255,255,0.1); }
.qty-selector input { width: 50px; height: 44px; background: transparent; border: none; border-left: 1px solid rgba(255,255,255,0.1); border-right: 1px solid rgba(255,255,255,0.1); color: var(--white); text-align: center; font-size: 15px; font-family: inherit; outline: none; }

.fragrance-notes { margin-top: 28px; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; }
.fragrance-notes h4 { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.notes-pyramid { display: flex; gap: 12px; }
.note-level { flex: 1; text-align: center; padding: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; }
.note-type { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.note-items { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ---- STORE PAGE ---- */
.store-header {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(201,168,76,0.04) 0%, transparent 100%);
}
.store-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; }
.store-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  max-height: calc(100vh - var(--nav-h) - 40px);
  overflow-y: auto;
  padding-right: 10px;
}
.filter-group { margin-bottom: 32px; }
.filter-group h4 { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.filter-option { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; cursor: pointer; }
.filter-option input[type="checkbox"] { display: none; }
.filter-checkbox { width: 18px; height: 18px; border: 1px solid rgba(255,255,255,0.2); border-radius: 3px; display: flex; align-items: center; justify-content: center; transition: var(--trans); flex-shrink: 0; }
.filter-option input:checked ~ .filter-checkbox { background: var(--gold); border-color: var(--gold); }
.filter-option input:checked ~ .filter-checkbox::after { content: '✓'; font-size: 11px; color: var(--black); font-weight: 700; }
.filter-label { font-size: 13px; color: rgba(255,255,255,0.6); transition: var(--trans); }
.filter-option:hover .filter-label { color: var(--white); }
.filter-count { font-size: 10px; color: var(--text-muted); margin-left: auto; }

.store-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.store-count { font-size: 13px; color: var(--text-muted); }
.store-sort { display: flex; align-items: center; gap: 10px; }
.store-sort select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.store-view-btns { display: flex; gap: 4px; }
.view-btn { width: 34px; height: 34px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--trans); border-radius: 4px; }
.view-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.page-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ---- WISHLIST PAGE ---- */
.wishlist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.page-title-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(201,168,76,0.04) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-title-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; }
.page-title-hero .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 11px; color: var(--text-muted); letter-spacing: 2px; margin-top: 12px; }
.page-title-hero .breadcrumb a:hover { color: var(--gold); }

/* ---- ACCOUNT ---- */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; }
.account-menu { position: sticky; top: calc(var(--nav-h) + 20px); }
.account-menu-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; font-size: 12px; letter-spacing: 1px; color: rgba(255,255,255,0.55); transition: var(--trans); cursor: pointer; border-radius: 6px; text-decoration: none; }
.account-menu-item:hover, .account-menu-item.active { background: rgba(255,255,255,0.06); color: var(--white); }
.account-menu-item.active { border-left: 2px solid var(--gold); padding-left: 14px; }

/* ---- AUTH PAGES ---- */
.auth-page {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 20px 60px;
  background:
    radial-gradient(circle at top, rgba(201,168,76,0.14), transparent 38%),
    linear-gradient(180deg, #090909 0%, #111111 100%);
}
.auth-container {
  width: 100%;
  max-width: 520px;
  padding: 36px;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.32);
}

/* ---- STORE POLISH ---- */
.page-hero {
  background:
    radial-gradient(circle at top, rgba(201,168,76,0.14), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.result-count {
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
}
.sort-select {
  min-width: 150px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}
.filter-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.filter-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.filter-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.02);
  border: 1px solid transparent;
  transition: var(--trans);
}
.filter-list a:hover,
.filter-list a.active {
  color: var(--white);
  border-color: rgba(201,168,76,0.22);
  background: rgba(201,168,76,0.08);
}
.store-products-grid .product-card {
  min-height: 100%;
}
.store-products-grid .product-info {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ---- TOAST ---- */
#toast-container {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--white);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 320px;
  animation: toastIn 0.4s ease, toastOut 0.4s ease 3.5s forwards;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast-success { background: rgba(56,178,99,0.9); }
.toast-error   { background: rgba(229,62,62,0.9); }
.toast-info    { background: rgba(66,153,225,0.9); }
.toast-warn    { background: rgba(237,137,54,0.9); }

@keyframes toastIn  { from { opacity:0; transform: translateX(30px); } to { opacity:1; transform: translateX(0); } }
@keyframes toastOut { from { opacity:1; } to { opacity:0; transform: translateX(30px); } }

/* ---- RANGE SLIDER ---- */
.range-slider { position: relative; padding: 10px 0; }
.range-slider input[type="range"] { width: 100%; accent-color: var(--gold); }

/* ---- SEARCH RESULTS ---- */
.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: none;
  z-index: 500;
  max-height: 400px;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  transition: var(--trans);
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
}
.search-result-item:hover { background: rgba(255,255,255,0.05); }
.search-result-img { width: 50px; height: 60px; object-fit: cover; border-radius: 4px; background: #111; }
.search-result-name { font-size: 13px; margin-bottom: 3px; }
.search-result-price { font-size: 12px; color: var(--gold); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-grid .product-card:first-child { grid-row: span 1; }
  .featured-grid .product-card:first-child .product-card-img { aspect-ratio: 4/5; height: auto; min-height: unset; }
  .deals-grid { grid-template-columns: 1fr 1fr; }
  .deals-grid .deal-card:first-child { grid-column: span 2; }
}

@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-img::before { display: none; }
  .store-layout { grid-template-columns: 1fr; }
  .store-sidebar { position: static; max-height: none; }
  .account-layout { grid-template-columns: 1fr; }
  .product-page-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 28px; }
  .product-gallery { position: static; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid .category-card:first-child { grid-row: span 1; aspect-ratio: 3/4; }
  .auth-container { max-width: 100%; }
}

@media (max-width: 768px) {
  :root { --nav-h: 65px; }
  .section { padding: 70px 0; }
  .container { padding: 0 16px; }
  .hero-content { padding: 0 20px; padding-top: var(--nav-h); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .new-arrival-hero { grid-template-columns: 1fr; }
  .new-arrival-hero-img { min-height: 300px; aspect-ratio: 16/9; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .deals-grid { grid-template-columns: 1fr; }
  .deals-grid .deal-card:first-child { grid-column: span 1; }
  .cart-sidebar { width: 100vw; }
  .story-stats { flex-wrap: wrap; gap: 24px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { gap: 22px; }
  .gallery-thumbs { gap: 10px; }
  .gallery-thumbs .product-thumb { width: 72px !important; height: 72px !important; }
  .store-toolbar { align-items: stretch; }
  .store-toolbar > * { width: 100%; }
  .sort-select { width: 100%; }
  .auth-page { padding: calc(var(--nav-h) + 24px) 16px 40px; }
  .auth-container { padding: 24px 18px; border-radius: 22px; }
}

@media (max-width: 480px) {
  .featured-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 14px 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .notes-pyramid { flex-direction: column; }
}

/* ---- ANIMATIONS ---- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Parallax helper */
.parallax { will-change: transform; }

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
  border-radius: 4px;
}
@keyframes skeleton { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* Page loader */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s ease;
}
#page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--white);
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-logo span { color: var(--gold); }
.loader-bar {
  width: 120px; height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 60%;
  background: var(--gold);
  animation: loaderBar 1.2s ease-in-out infinite;
}
@keyframes loaderPulse { 0%,100% { opacity:0.6; } 50% { opacity:1; } }
@keyframes loaderBar { 0% { left: -60%; } 100% { left: 160%; } }


/* ============================================================
   WHITE LUXURY THEME OVERRIDES
   ============================================================ */
body.site-theme-light {
  --black: #ffffff;
  --white: #111827;
  --cream: #fbfaf7;
  --glass-bg: rgba(255,255,255,0.78);
  --glass-border: rgba(15,23,42,0.08);
  --glass-shadow: rgba(15,23,42,0.08);
  --dark-glass: rgba(255,255,255,0.9);
  --text-light: #111827;
  --text-muted: rgba(71,85,105,0.78);
  --text-dark: #111827;
  --text-grey: #64748b;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 55%, #ffffff 100%);
  color: var(--text-dark);
}

body.site-theme-light::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(201,168,76,0.08) 0%, transparent 28%),
    radial-gradient(circle at top left, rgba(226,232,240,0.55) 0%, transparent 34%);
  z-index: -1;
}

body.site-theme-light img {
  image-rendering: auto;
}

body.site-theme-light ::-webkit-scrollbar-track { background: #f5f1ea; }
body.site-theme-light ::-webkit-scrollbar-thumb { background: rgba(160,120,48,0.55); }
body.site-theme-light h1,
body.site-theme-light h2,
body.site-theme-light h3,
body.site-theme-light h4,
body.site-theme-light h5,
body.site-theme-light p,
body.site-theme-light li,
body.site-theme-light label,
body.site-theme-light strong,
body.site-theme-light span { color: inherit; }

body.site-theme-light #page-loader {
  background: linear-gradient(180deg, #ffffff 0%, #f7f1ea 100%);
}
body.site-theme-light .loader-logo { color: #111827; }
body.site-theme-light .loader-bar { background: rgba(15,23,42,0.08); }

body.site-theme-light .glass,
body.site-theme-light .glass-dark,
body.site-theme-light .product-card,
body.site-theme-light .blog-card,
body.site-theme-light .review-card,
body.site-theme-light .new-arrival-hero-content,
body.site-theme-light .note-level,
body.site-theme-light .modal,
body.site-theme-light .notif-popup,
body.site-theme-light .auth-container,
body.site-theme-light .cart-footer,
body.site-theme-light .cart-sidebar,
body.site-theme-light .search-dropdown {
  background: rgba(255,255,255,0.88);
  border-color: rgba(15,23,42,0.08);
  box-shadow: 0 18px 60px rgba(15,23,42,0.06);
}

body.site-theme-light .section-head h2,
body.site-theme-light .section-head p,
body.site-theme-light .product-name,
body.site-theme-light .price-current,
body.site-theme-light .blog-title,
body.site-theme-light .review-title,
body.site-theme-light .review-name,
body.site-theme-light .product-detail-name,
body.site-theme-light .product-detail-price,
body.site-theme-light .cart-header h3,
body.site-theme-light .footer-brand-logo,
body.site-theme-light .newsletter-inner h2 {
  color: #111827;
}

body.site-theme-light .section-head p,
body.site-theme-light .star-count,
body.site-theme-light .review-body,
body.site-theme-light .review-meta,
body.site-theme-light .blog-excerpt,
body.site-theme-light .story-content p,
body.site-theme-light .footer-about,
body.site-theme-light .footer-col ul li a,
body.site-theme-light .footer-contact-item,
body.site-theme-light .footer-bottom,
body.site-theme-light .footer-bottom-links a,
body.site-theme-light .product-detail-desc,
body.site-theme-light .note-items,
body.site-theme-light .cart-empty,
body.site-theme-light .store-count,
body.site-theme-light .result-count,
body.site-theme-light .filter-label,
body.site-theme-light .notif-text,
body.site-theme-light .notif-time,
body.site-theme-light .search-result-name,
body.site-theme-light .form-label {
  color: rgba(71,85,105,0.82);
}

body.site-theme-light .btn-primary,
body.site-theme-light .btn.btn-primary,
body.site-theme-light .btn-gold {
  background: var(--gold);
  color: #111827;
  border: 1px solid rgba(160,120,48,0.15);
}
body.site-theme-light .btn-primary:hover,
body.site-theme-light .btn.btn-primary:hover,
body.site-theme-light .btn-gold:hover {
  background: var(--gold-dark);
  color: #fff;
}
body.site-theme-light .btn-outline,
body.site-theme-light .btn-dark,
body.site-theme-light .btn-glass {
  background: rgba(255,255,255,0.88);
  color: #111827;
  border: 1px solid rgba(15,23,42,0.1);
}
body.site-theme-light .btn-outline:hover,
body.site-theme-light .btn-dark:hover,
body.site-theme-light .btn-glass:hover {
  background: rgba(201,168,76,0.08);
  color: var(--gold-dark);
  border-color: rgba(201,168,76,0.3);
}

body.site-theme-light #navbar {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.site-theme-light #navbar.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom-color: rgba(15,23,42,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(15,23,42,0.08);
}
body.site-theme-light .nav-logo a,
body.site-theme-light .nav-link,
body.site-theme-light .nav-icon-btn,
body.site-theme-light .nav-mobile a,
body.site-theme-light .nav-search-input {
  color: #111827;
}
body.site-theme-light .nav-link,
body.site-theme-light .nav-icon-btn { opacity: 0.95; }
body.site-theme-light .nav-link:hover,
body.site-theme-light .nav-link.active,
body.site-theme-light .nav-icon-btn:hover,
body.site-theme-light .nav-dropdown a:hover,
body.site-theme-light .page-title-hero .breadcrumb a:hover {
  color: var(--gold-dark);
}
body.site-theme-light .nav-dropdown,
body.site-theme-light .search-dropdown {
  background: rgba(255,255,255,0.97);
  border-color: rgba(15,23,42,0.08);
}
body.site-theme-light .nav-dropdown a {
  color: rgba(71,85,105,0.82);
}
body.site-theme-light .nav-search-wrap.active .nav-search-input {
  border-bottom-color: rgba(201,168,76,0.6);
}
body.site-theme-light .nav-icon-btn:hover {
  background: rgba(201,168,76,0.08);
}
body.site-theme-light .hamburger span { background: #111827; }
body.site-theme-light .nav-mobile {
  background: rgba(255,255,255,0.98);
}

body.site-theme-light .hero-bg:not([style*="url("]) {
  background: linear-gradient(135deg, #ffffff 0%, #f6eee5 100%) !important;
}
body.site-theme-light .hero-overlay {
  background: linear-gradient(to right, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.72) 60%, rgba(255,255,255,0.45) 100%);
}
body.site-theme-light .hero-title,
body.site-theme-light .hero-subtitle,
body.site-theme-light .hero-scroll,
body.site-theme-light .section-head h2,
body.site-theme-light .section-head p {
  color: #111827;
}
body.site-theme-light .hero-subtitle,
body.site-theme-light .hero-scroll { color: rgba(71,85,105,0.82); }
body.site-theme-light .hero-dot { background: rgba(15,23,42,0.18); }
body.site-theme-light .hero-scroll-line { background: linear-gradient(to bottom, var(--gold), transparent); }

body.site-theme-light .new-arrivals-section,
body.site-theme-light .reviews-section,
body.site-theme-light .newsletter-section,
body.site-theme-light .page-title-hero,
body.site-theme-light .store-header,
body.site-theme-light .page-hero,
body.site-theme-light .auth-page {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,245,239,0.92) 100%);
}
body.site-theme-light .newsletter-section::before,
body.site-theme-light .new-arrivals-section::before {
  background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%);
}

body.site-theme-light .new-arrivals-page-hero {
  background:
    radial-gradient(circle at top center, rgba(201,168,76,0.12) 0%, transparent 48%),
    linear-gradient(135deg, #ffffff 0%, #f7f1e8 100%);
}
body.site-theme-light .new-arrivals-page-hero::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
}
body.site-theme-light .new-arrivals-page-title {
  color: #111827;
}
body.site-theme-light .new-arrivals-empty-state {
  color: rgba(71,85,105,0.78);
}
body.site-theme-light .newsletter-form {
  background: rgba(255,255,255,0.95);
  border-color: rgba(15,23,42,0.08);
}
body.site-theme-light .newsletter-form input,
body.site-theme-light .newsletter-form input::placeholder { color: #64748b; }
body.site-theme-light .note-chip {
  background: rgba(248,250,252,0.95);
  border-color: rgba(15,23,42,0.08);
  color: rgba(71,85,105,0.82);
}

body.site-theme-light .product-card:hover,
body.site-theme-light .blog-card:hover,
body.site-theme-light .review-card:hover {
  box-shadow: 0 24px 70px rgba(15,23,42,0.09), 0 0 0 1px rgba(201,168,76,0.08);
}
body.site-theme-light .product-card-img,
body.site-theme-light .product-main-img,
body.site-theme-light .gallery-main,
body.site-theme-light .product-thumb,
body.site-theme-light .search-result-img,
body.site-theme-light .cart-item-img {
  background: #f8fafc;
}
body.site-theme-light .product-actions .action-btn,
body.site-theme-light .carousel-btn,
body.site-theme-light .rev-btn,
body.site-theme-light .qty-btn,
body.site-theme-light .cart-close,
body.site-theme-light .page-btn,
body.site-theme-light .view-btn {
  background: rgba(255,255,255,0.94);
  color: #111827;
  border: 1px solid rgba(15,23,42,0.08);
}
body.site-theme-light .action-btn:hover,
body.site-theme-light .carousel-btn:hover,
body.site-theme-light .rev-btn:hover,
body.site-theme-light .qty-btn:hover,
body.site-theme-light .view-btn.active,
body.site-theme-light .page-btn.active,
body.site-theme-light .page-btn:hover {
  background: var(--gold);
  color: #111827;
  border-color: rgba(160,120,48,0.18);
}
body.site-theme-light .product-quick-add {
  background: rgba(255,255,255,0.95);
  border-top: 1px solid rgba(15,23,42,0.06);
}

body.site-theme-light .form-input,
body.site-theme-light .store-sort select,
body.site-theme-light .sort-select,
body.site-theme-light .filter-list a,
body.site-theme-light .qty-selector,
body.site-theme-light .size-opt,
body.site-theme-light .note-level,
body.site-theme-light .account-menu-item,
body.site-theme-light .cart-sidebar,
body.site-theme-light .modal,
body.site-theme-light .search-dropdown,
body.site-theme-light .store-sidebar,
body.site-theme-light .wishlist-grid .product-card {
  color: #111827;
  border-color: rgba(15,23,42,0.08);
}
body.site-theme-light .form-input,
body.site-theme-light .store-sort select,
body.site-theme-light .sort-select,
body.site-theme-light .size-opt,
body.site-theme-light .filter-list a,
body.site-theme-light .account-menu-item,
body.site-theme-light .filter-checkbox,
body.site-theme-light .qty-selector {
  background: rgba(255,255,255,0.92);
}
body.site-theme-light .form-input::placeholder { color: rgba(100,116,139,0.75); }
body.site-theme-light .form-input:focus,
body.site-theme-light .filter-list a.active,
body.site-theme-light .filter-list a:hover,
body.site-theme-light .account-menu-item.active,
body.site-theme-light .account-menu-item:hover,
body.site-theme-light .size-opt:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.24);
  color: #111827;
}
body.site-theme-light .size-opt.active,
body.site-theme-light .filter-option input:checked ~ .filter-checkbox,
body.site-theme-light .view-btn.active {
  background: var(--gold);
  color: #111827;
  border-color: var(--gold);
}
body.site-theme-light .qty-selector button,
body.site-theme-light .qty-selector input,
body.site-theme-light .tab-nav .tab-btn {
  color: #111827;
}
body.site-theme-light .qty-selector button:hover {
  background: rgba(201,168,76,0.08);
}
body.site-theme-light .tab-nav,
body.site-theme-light .fragrance-notes,
body.site-theme-light .store-main-header,
body.site-theme-light .cart-header,
body.site-theme-light .cart-footer,
body.site-theme-light .footer-bottom,
body.site-theme-light .footer-col ul li a,
body.site-theme-light .page-title-hero,
body.site-theme-light .page-title-hero .breadcrumb,
body.site-theme-light .store-header,
body.site-theme-light .filter-group h4,
body.site-theme-light .cart-item,
body.site-theme-light .cart-total-main {
  border-color: rgba(15,23,42,0.08);
}

body.site-theme-light #footer {
  background: rgba(255,255,255,0.98);
  border-top-color: rgba(15,23,42,0.08);
}
body.site-theme-light .social-icon {
  background: rgba(255,255,255,0.92);
  border-color: rgba(15,23,42,0.08);
  color: rgba(71,85,105,0.82);
}
body.site-theme-light .social-icon:hover {
  background: var(--gold);
  color: #111827;
}
body.site-theme-light .footer-col h4,
body.site-theme-light .footer-contact-item .icon,
body.site-theme-light .footer-brand-logo span {
  color: var(--gold-dark);
}
body.site-theme-light .footer-col ul li a:hover,
body.site-theme-light .footer-bottom-links a:hover {
  color: #111827;
}
body.site-theme-light .marquee-wrap { box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(15,23,42,0.06); }

body.site-theme-light .cart-sidebar-overlay,
body.site-theme-light .modal-overlay {
  background: rgba(248,250,252,0.68);
}
body.site-theme-light .toast {
  border-color: rgba(15,23,42,0.08);
  box-shadow: 0 14px 34px rgba(15,23,42,0.08);
}
body.site-theme-light .search-result-item {
  color: #111827;
}
body.site-theme-light .search-result-item:hover {
  background: rgba(201,168,76,0.08);
}
body.site-theme-light .page-title-hero,
body.site-theme-light .store-header,
body.site-theme-light .auth-page,
body.site-theme-light .section[style*="background:rgba(255,255,255,0.01)"] {
  border-bottom-color: rgba(15,23,42,0.05);
}

body.site-theme-light .blog-content,
body.site-theme-light .product-detail-desc,
body.site-theme-light .tab-content,
body.site-theme-light .story-quote,
body.site-theme-light .result-count strong {
  color: #111827;
}
body.site-theme-light .story-section {
  background: rgba(255,255,255,0.94);
}
body.site-theme-light .story-quote,
body.site-theme-light .stat-num { color: var(--gold-dark); }
body.site-theme-light .stat-label,
body.site-theme-light .category-count,
body.site-theme-light .product-brand,
body.site-theme-light .product-detail-brand,
body.site-theme-light .section-head .eyebrow,
body.site-theme-light .newsletter-inner .eyebrow,
body.site-theme-light .story-content .eyebrow,
body.site-theme-light .blog-cat,
body.site-theme-light .filter-title,
body.site-theme-light .filter-group h4 { color: var(--gold-dark); }

body.site-theme-light .category-card .category-name,
body.site-theme-light .deal-card .deal-title,
body.site-theme-light .deal-card .deal-desc,
body.site-theme-light .category-card .category-count,
body.site-theme-light .deal-card .timer-label,
body.site-theme-light .deal-card .timer-num {
  color: #fff;
}

@media (max-width: 768px) {
  body.site-theme-light #navbar {
    background: rgba(255,255,255,0.96);
  }
  body.site-theme-light .hero-overlay {
    background: linear-gradient(to bottom, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.68) 55%, rgba(255,255,255,0.48) 100%);
  }
}


/* ============================================================
   THEME SWITCHER + HERO LIGHT TUNING
   ============================================================ */
body.site-theme-dark {
  background: linear-gradient(180deg, #050505 0%, #0b0b0d 100%);
}

.theme-toggle-btn,
.nav-mobile-theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--trans);
}

.theme-toggle-btn {
  min-width: 44px;
}

.nav-mobile-theme {
  width: 100%;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  color: inherit;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-mobile-signout {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.4) !important;
}

body.site-theme-light .nav-mobile-theme {
  border-top-color: rgba(15,23,42,0.08);
  color: #111827;
}

body.site-theme-light .nav-mobile-signout {
  color: rgba(71,85,105,0.82) !important;
}

.theme-icon {
  font-size: 15px;
  line-height: 1;
}

body.site-theme-light .theme-icon-sun,
body.site-theme-dark .theme-icon-moon {
  display: inline-flex;
}

body.site-theme-light .theme-icon-moon,
body.site-theme-dark .theme-icon-sun {
  display: none;
}

body.site-theme-light .theme-toggle-btn,
body.site-theme-light .nav-mobile-theme {
  background: rgba(255,255,255,0.88);
  color: #111827;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 12px 34px rgba(15,23,42,0.06);
}

body.site-theme-dark .theme-toggle-btn,
body.site-theme-dark .nav-mobile-theme {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.08);
}

body.site-theme-dark .theme-toggle-btn:hover,
body.site-theme-dark .nav-mobile-theme:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.25);
  color: #f7e4b0;
}

body.site-theme-light .theme-toggle-btn:hover,
body.site-theme-light .nav-mobile-theme:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.24);
  color: var(--gold-dark);
}

body.site-theme-light .hero {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(248,244,237,0.84) 100%);
}

/* Keep light-mode slides visually aligned with dark mode */
body.site-theme-light .hero-slide.has-image .hero-bg {
  filter: none;
}

body.site-theme-light .hero-slide.has-image .hero-bg::after {
  content: none;
}

body.site-theme-light .hero-slide.has-image .hero-overlay,
body.site-theme-light .hero-slide.no-image .hero-overlay {
  opacity: 1 !important;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.3) 60%,
    rgba(0,0,0,0.1) 100%
  );
}

body.site-theme-light .hero-slide.has-image .hero-content,
body.site-theme-light .hero-slide.no-image .hero-content {
  width: auto;
  padding: 0 40px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.site-theme-light .hero-slide .hero-eyebrow {
  color: var(--gold);
}

body.site-theme-light .hero-slide .hero-title {
  color: var(--white);
}

body.site-theme-light .hero-slide .hero-subtitle,
body.site-theme-light .hero-slide .hero-scroll {
  color: rgba(255,255,255,0.7);
  text-shadow: none;
}

body.site-theme-light .hero-slide .hero-btns .btn-outline {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
}

body.site-theme-light .hero-slide .hero-btns .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
}

body.site-theme-light .hero-slide .hero-dot {
  background: rgba(255,255,255,0.28);
}

body.site-theme-light .hero-slide.active .hero-dot,
body.site-theme-light .hero-dot.active {
  background: var(--gold);
}

@media (max-width: 767px) {
  body.site-theme-light .hero-slide.has-image .hero-content,
  body.site-theme-light .hero-slide.no-image .hero-content {
    width: auto;
    padding: 0 20px;
  }

  .theme-toggle-btn {
    min-width: 40px;
  }
}

/* Patch: keep hero slide titles white in light mode */
body.site-theme-light .hero-slide .hero-title,
body.site-theme-light .hero-slide.has-image .hero-title,
body.site-theme-light .hero-slide.no-image .hero-title {
  color: #ffffff !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.26);
}


@media (max-width: 768px) {
  .new-arrivals-page-hero {
    padding: 108px 0 36px;
  }
}

/* ---- LIGHT THEME TRANSPARENT HEADER TEXT FIX ---- */
body.site-theme-light #navbar:not(.scrolled) .nav-logo a,
body.site-theme-light #navbar:not(.scrolled) .nav-link,
body.site-theme-light #navbar:not(.scrolled) .nav-icon-btn,
body.site-theme-light #navbar:not(.scrolled) .nav-search-input,
body.site-theme-light #navbar:not(.scrolled) [data-theme-toggle],
body.site-theme-light #navbar:not(.scrolled) [data-theme-toggle] * {
  color: rgba(255,255,255,0.92);
}

body.site-theme-light #navbar:not(.scrolled) .nav-link,
body.site-theme-light #navbar:not(.scrolled) .nav-icon-btn {
  opacity: 1;
}

body.site-theme-light #navbar:not(.scrolled) .nav-search-wrap.active .nav-search-input {
  border-bottom-color: rgba(255,255,255,0.68);
}

body.site-theme-light #navbar:not(.scrolled) .nav-search-input::placeholder {
  color: rgba(255,255,255,0.72);
}

body.site-theme-light #navbar:not(.scrolled) .hamburger span {
  background: rgba(255,255,255,0.92);
}

body.site-theme-light #navbar:not(.scrolled) .nav-link:hover,
body.site-theme-light #navbar:not(.scrolled) .nav-link.active,
body.site-theme-light #navbar:not(.scrolled) .nav-icon-btn:hover,
body.site-theme-light #navbar:not(.scrolled) .nav-logo a:hover,
body.site-theme-light #navbar:not(.scrolled) [data-theme-toggle]:hover,
body.site-theme-light #navbar:not(.scrolled) [data-theme-toggle]:hover * {
  color: var(--gold-light);
}

body.site-theme-light #navbar.scrolled .nav-search-input::placeholder {
  color: rgba(17,24,39,0.5);
}


/* ---- JOURNAL PAGE THEME FIX ---- */
.journal-page-hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 58px;
  text-align: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #171717 100%);
}
.journal-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(201,168,76,0.13) 0%, transparent 52%);
  pointer-events: none;
}
.journal-page-hero .container {
  position: relative;
  z-index: 1;
}
.journal-page-kicker {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.journal-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: #fff;
}
.journal-page-intro {
  color: rgba(255,255,255,0.56);
  max-width: 500px;
  margin: 0.75rem auto 0;
  font-size: 0.95rem;
  line-height: 1.7;
}
.journal-page-main {
  padding-top: 50px;
  padding-bottom: 60px;
}
.journal-featured-wrap {
  margin-bottom: 3rem;
}
.journal-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
  text-decoration: none;
  overflow: hidden;
}
.journal-featured-image {
  min-height: 300px;
  background-position: center;
  background-size: cover;
}
.journal-featured-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.journal-featured-label,
.journal-card-date {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.journal-card-date {
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.journal-featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: #fff;
  margin: 0.75rem 0 1rem;
  line-height: 1.3;
}
.journal-featured-excerpt,
.journal-card-excerpt {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
}
.journal-featured-excerpt {
  margin-bottom: 1.5rem;
}
.journal-featured-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
  flex-wrap: wrap;
}
.blog-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.06);
}
.blog-card__body {
  padding: 24px;
}
.journal-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.journal-card-link {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
body.site-theme-light .journal-page-hero {
  background:
    radial-gradient(circle at top center, rgba(201,168,76,0.12) 0%, transparent 48%),
    linear-gradient(135deg, #ffffff 0%, #f7f1e8 100%);
}
body.site-theme-light .journal-page-title,
body.site-theme-light .journal-featured-title,
body.site-theme-light .journal-card-title {
  color: #111827;
}
body.site-theme-light .journal-page-intro,
body.site-theme-light .journal-featured-excerpt,
body.site-theme-light .journal-featured-meta,
body.site-theme-light .journal-card-excerpt {
  color: rgba(71,85,105,0.82);
}
body.site-theme-light .blog-card__image {
  background: #f8fafc;
}
@media (max-width: 900px) {
  .journal-featured-card {
    grid-template-columns: 1fr;
  }

  .journal-featured-content {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .journal-page-hero {
    padding: 108px 0 36px;
  }
}


/* ---- AUTO HEADER CONTRAST ---- */
#navbar:not(.scrolled).header-contrast-light .nav-logo a,
#navbar:not(.scrolled).header-contrast-light .nav-link,
#navbar:not(.scrolled).header-contrast-light .nav-icon-btn,
#navbar:not(.scrolled).header-contrast-light .theme-toggle-btn,
#navbar:not(.scrolled).header-contrast-light .nav-search-input {
  color: rgba(255,255,255,0.96) !important;
  text-shadow: 0 2px 16px rgba(0,0,0,0.28);
}
#navbar:not(.scrolled).header-contrast-light .nav-search-input::placeholder {
  color: rgba(255,255,255,0.74) !important;
}
#navbar:not(.scrolled).header-contrast-light .hamburger span {
  background: rgba(255,255,255,0.96) !important;
  box-shadow: 0 1px 10px rgba(0,0,0,0.2);
}
#navbar:not(.scrolled).header-contrast-light .nav-link:hover,
#navbar:not(.scrolled).header-contrast-light .nav-link.active,
#navbar:not(.scrolled).header-contrast-light .nav-icon-btn:hover,
#navbar:not(.scrolled).header-contrast-light .theme-toggle-btn:hover {
  color: var(--gold) !important;
}
#navbar:not(.scrolled).header-contrast-light .nav-icon-btn:hover,
#navbar:not(.scrolled).header-contrast-light .theme-toggle-btn:hover {
  background: rgba(255,255,255,0.08) !important;
}

#navbar:not(.scrolled).header-contrast-dark .nav-logo a,
#navbar:not(.scrolled).header-contrast-dark .nav-link,
#navbar:not(.scrolled).header-contrast-dark .nav-icon-btn,
#navbar:not(.scrolled).header-contrast-dark .theme-toggle-btn,
#navbar:not(.scrolled).header-contrast-dark .nav-search-input {
  color: #0f172a !important;
  text-shadow: none !important;
}
#navbar:not(.scrolled).header-contrast-dark .nav-search-input::placeholder {
  color: rgba(15,23,42,0.56) !important;
}
#navbar:not(.scrolled).header-contrast-dark .hamburger span {
  background: #0f172a !important;
  box-shadow: none !important;
}
#navbar:not(.scrolled).header-contrast-dark .nav-link:hover,
#navbar:not(.scrolled).header-contrast-dark .nav-link.active,
#navbar:not(.scrolled).header-contrast-dark .nav-icon-btn:hover,
#navbar:not(.scrolled).header-contrast-dark .theme-toggle-btn:hover {
  color: var(--gold-dark, var(--gold)) !important;
}
#navbar:not(.scrolled).header-contrast-dark .nav-icon-btn:hover,
#navbar:not(.scrolled).header-contrast-dark .theme-toggle-btn:hover {
  background: rgba(15,23,42,0.06) !important;
}

body.site-theme-light #navbar:not(.scrolled).header-contrast-light {
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
body.site-theme-light #navbar:not(.scrolled).header-contrast-dark {
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (max-width: 1024px) {
  #navbar:not(.scrolled).header-contrast-light .nav-logo a,
  #navbar:not(.scrolled).header-contrast-light .nav-icon-btn,
  #navbar:not(.scrolled).header-contrast-light .theme-toggle-btn,
  #navbar:not(.scrolled).header-contrast-dark .nav-logo a,
  #navbar:not(.scrolled).header-contrast-dark .nav-icon-btn,
  #navbar:not(.scrolled).header-contrast-dark .theme-toggle-btn {
    text-shadow: none !important;
  }
}

/* ---- STORE HERO THEME READABILITY ---- */
.store-page-hero__title {
  color: #ffffff;
}
.store-page-hero__intro,
.store-page-empty-copy {
  color: rgba(255,255,255,0.62);
}
body.site-theme-light .store-page-hero__title {
  color: #111827;
}
body.site-theme-light .store-page-hero__intro,
body.site-theme-light .store-page-empty-copy {
  color: rgba(71,85,105,0.82);
}


/* ---- HEADER LOGO + SEARCH NATURAL ALIGNMENT FIX ---- */
.nav-logo a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.nav-logo img {
  display: block;
  width: auto;
  height: 40px;
  max-width: min(180px, 32vw);
  object-fit: contain;
  border-radius: 999px;
  padding: 5px 9px;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

body.site-theme-light .nav-logo img,
body.site-theme-light #navbar.header-contrast-dark .nav-logo img {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(243,244,246,0.96) 100%);
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 10px 24px rgba(15,23,42,0.08), inset 0 1px 0 rgba(255,255,255,0.82);
}

body.site-theme-light #navbar:not(.scrolled).header-contrast-light .nav-logo img {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.site-theme-dark .nav-logo img,
body.site-theme-dark #navbar .nav-logo img,
body.site-theme-light #navbar.header-contrast-light .nav-logo img {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 12px 28px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-logo a:hover img {
  transform: translateY(-1px);
}

.nav-search-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
}

.nav-search-wrap .nav-search-toggle,
.nav-search-wrap .nav-search-input {
  align-self: center;
}

.nav-search-toggle {
  flex: 0 0 42px;
}

.nav-search-input {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.nav-search-wrap.active .nav-search-input {
  width: 190px;
  padding: 0 8px;
}

.nav-search-toggle svg,
.nav-search-toggle i,
.nav-icon-btn svg,
.nav-icon-btn i {
  display: block;
}

.nav-search-toggle svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1024px) {
  .nav-logo img {
    max-width: min(150px, 38vw);
    height: 36px;
    padding: 4px 8px;
  }

  .nav-search-wrap.active .nav-search-input {
    width: 156px;
  }
}

@media (max-width: 767px) {
  .nav-logo img {
    max-width: 132px;
    height: 34px;
    padding: 4px 7px;
  }
}

/* ---- LIGHT MODE TOP HEADER THEME ICON SUN FIX ---- */
body.site-theme-light #navbar:not(.scrolled) [data-theme-toggle] .theme-icon-sun,
body.site-theme-light #navbar:not(.scrolled).header-contrast-light [data-theme-toggle] .theme-icon-sun,
body.site-theme-light #navbar:not(.scrolled).header-contrast-dark [data-theme-toggle] .theme-icon-sun {
  color: #111827 !important;
}

body.site-theme-light #navbar:not(.scrolled) [data-theme-toggle]:hover .theme-icon-sun,
body.site-theme-light #navbar:not(.scrolled).header-contrast-light [data-theme-toggle]:hover .theme-icon-sun,
body.site-theme-light #navbar:not(.scrolled).header-contrast-dark [data-theme-toggle]:hover .theme-icon-sun {
  color: var(--gold-dark) !important;
}


/* ---- FORCE DESKTOP LAYOUT ON SMALL SCREENS ---- */
html, body {
  min-width: 1280px;
}

body {
  overflow-x: auto;
}

#navbar,
#page-loader,
#toast-container,
#notif-popup,
#cart-sidebar,
#cart-overlay {
  min-width: 1280px;
}
