﻿/* ================================================================
   DUHN FRAGRANCES — Main Stylesheet
   Dark luxury fragrance brand: #1A1A1A primary, #CBBA9C gold accent
   ================================================================ */

/* ── Google Font Import ──────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* ── CSS Variables ───────────────────────────────────────────── */
:root {
  --primary:      #1A1A1A;
  --primary-light:#252525;
  --surface-dark: #2A2A2A;
  --accent:       #CBBA9C;
  --accent-dark:  #B8A07A;
  --surface:      #FFFFFF;
  --text-light:   #FFFFFF;
  --text-dark:    #1A1A1A;
  --text-muted:   #888888;
  --error:        #DC3545;
  --success:      #28A745;
  --divider:      #2A2A2A;
  --overlay:      rgba(0,0,0,0.75);
  --font:         'Jost', sans-serif;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow:       0 4px 20px rgba(0,0,0,0.15);
  --transition:   all 0.25s ease;
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--primary);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; outline: none; }
input, textarea, select { font-family: var(--font); outline: none; }

/* ── Announcement Bar — Luxury Edition ──────────────────────── */
.announcement-bar {
  background: #0C0C0C;
  border-top: 2px solid #CBBA9C;
  border-bottom: 1px solid rgba(203,186,156,0.18);
  height: 44px;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Sweeping gold shimmer */
.announcement-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(203,186,156,0.09), transparent);
  animation: ann-shimmer 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes ann-shimmer {
  0%   { left: -60%; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { left: 160%; opacity: 0; }
}

/* Left gold arrow badge */
.ann-badge {
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  background: #CBBA9C;
  color: #000;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 16px 5px 12px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Scrolling text wrapper */
.ann-marquee-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  z-index: 1;
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.ann-marquee-inner {
  display: flex;
  width: max-content;
  animation: ann-scroll 32s linear infinite;
}

.ann-track {
  display: block;
  white-space: nowrap;
  color: #CBBA9C;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  flex-shrink: 0;
  padding: 0 6px;
}

.ann-sep {
  color: rgba(248,196,23,0.4);
  font-size: 7px;
  vertical-align: middle;
}

@keyframes ann-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



/* Legacy marquee classes kept for promo strip */
.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track {
  display: block;
  white-space: nowrap;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announcement-bar .marquee {
  display: flex;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Header / Navigation ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  border-bottom: 1px solid var(--surface-dark);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  flex-shrink: 0;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555555;
  transition: var(--transition);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active { color: #1A1A1A; border-bottom-color: #1A1A1A; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.nav-icon-btn {
  background: none;
  color: var(--text-light);
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  position: relative;
}

.nav-icon-btn:hover { background: var(--surface-dark); color: var(--accent); }

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Mobile Menu Toggle ──────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition);
}

/* ── Container ───────────────────────────────────────────────── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section ─────────────────────────────────────────────────── */
.section {
  padding: 64px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-light);
}

.section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.section-link:hover { border-bottom-color: var(--accent); }

/* ── Hero Slider ─────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 520px;
  background: var(--surface-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ── Promo Marquee ───────────────────────────────────────────── */
.promo-marquee {
  background: var(--accent);
  padding: 10px 0;
  overflow: hidden;
  width: 100%;
}

/* Promo track inherits marquee-track but needs dark color */
.promo-track {
  color: var(--text-dark) !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
}

.promo-marquee .marquee {
  display: flex;
  animation: marquee 12s linear infinite;
  white-space: nowrap;
}

.promo-marquee .marquee span {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 2rem;
}

/* ── Product Card ────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}

.product-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f0eeeb;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.product-card__badge.new { background: var(--accent); }
.product-card__badge.sale { background: var(--error); color: #fff; }

.product-card__body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__inspired {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stars {
  display: flex;
  gap: 1px;
  color: var(--accent);
  font-size: 12px;
}

.stars .empty { color: #ddd; }

.review-count {
  font-size: 11px;
  color: var(--text-muted);
}

.product-card__price {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: auto;
}

.product-card__price .currency {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.btn-add-cart {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.btn-add-cart:hover { background: var(--accent-dark); transform: none; }

/* ── Horizontal Scroll Product Row ──────────────────────────── */
.product-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.product-row::-webkit-scrollbar { height: 4px; }
.product-row::-webkit-scrollbar-track { background: var(--surface-dark); }
.product-row::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

.product-row .product-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
}

/* ── Collection Card ─────────────────────────────────────────── */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px)  { .collection-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .collection-grid { grid-template-columns: repeat(3, 1fr); } }

.collection-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
  display: block;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.collection-card:hover img { transform: scale(1.06); }

.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  transition: var(--transition);
}

.collection-card:hover::after { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%); }

.collection-card__name {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--accent);
  color: var(--text-dark);
}
.btn-gold:hover  { background: var(--accent-dark); }
.btn-gold:active { transform: scale(0.97); background: var(--accent-dark); }

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--text-light);
}
.btn-outline:hover  { border-color: var(--accent); color: var(--accent); }
.btn-outline:active { transform: scale(0.97); }

.btn-outline-gold {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline-gold:hover  { background: var(--accent); color: var(--text-dark); }
.btn-outline-gold:active { transform: scale(0.97); }

.btn-full { width: 100%; }
.btn-lg { padding: 16px 36px; font-size: 14px; }

/* Press feel on ALL interactive buttons sitewide */
.btn:active,
.btn-add-cart:active,
button:not(.sort-arrow):not(.hero-dot):not(.nav-icon-btn):not(.nav-toggle):active {
  transform: scale(0.97) !important;
  transition: transform 0.08s ease !important;
}

/* ── Search Bar ──────────────────────────────────────────────── */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  padding: 80px 24px 24px;
  flex-direction: column;
}

.search-overlay.open { display: flex; }

.search-input-wrapper {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

.search-input {
  width: 100%;
  background: var(--surface-dark);
  border: 1.5px solid var(--divider);
  border-radius: var(--radius);
  padding: 16px 56px 16px 20px;
  color: var(--text-light);
  font-size: 16px;
  transition: var(--transition);
}

.search-input:focus { border-color: var(--accent); }
.search-input::placeholder { color: var(--text-muted); }

.search-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: var(--text-muted);
  font-size: 20px;
}

.search-results {
  max-width: 680px;
  margin: 16px auto 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--surface-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.search-result-item:hover { background: #333; }

.search-result-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  background: #f0f0f0;
}

.search-result-item .name { font-size: 14px; font-weight: 600; }
.search-result-item .price { font-size: 13px; color: var(--accent); margin-left: auto; }

/* ── Cart Sidebar ────────────────────────────────────────────── */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.cart-overlay.open { display: block; }

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.cart-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: var(--primary-light);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.4);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--divider);
}

.cart-header h3 {
  font-size: 18px;
  font-weight: 700;
}

.cart-close {
  background: none;
  color: var(--text-muted);
  font-size: 22px;
  transition: var(--transition);
}
.cart-close:hover { color: var(--text-light); }

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  background: #f0f0f0;
  flex-shrink: 0;
}

.cart-item__info { flex: 1; }
.cart-item__name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item__price { font-size: 13px; color: var(--accent); }

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--surface-dark);
  color: var(--text-light);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--accent); color: var(--text-dark); }

.qty-value { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }

.cart-item__remove {
  background: none;
  color: var(--text-muted);
  font-size: 16px;
  transition: var(--transition);
}
.cart-item__remove:hover { color: var(--error); }

.cart-promo-banner {
  margin: 0 24px;
  padding: 12px 16px;
  background: rgba(203,186,156,0.15);
  border: 1px solid rgba(203,186,156,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--divider);
}

.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.cart-totals .row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.cart-totals .row.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  padding-top: 8px;
  border-top: 1px solid var(--divider);
}

.cart-totals .row.discount { color: var(--success); }

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  padding: 40px;
  text-align: center;
}

.cart-empty i { font-size: 48px; opacity: 0.3; }
.cart-empty p { font-size: 15px; }

/* ── Product Detail Page ─────────────────────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 48px 0;
}

.product-gallery {
  position: sticky;
  top: 88px;
}

.gallery-main {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 12px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.gallery-thumb {
  flex: 0 0 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  background: #f0f0f0;
}

.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--accent); }

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info .breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.product-info .breadcrumb a:hover { color: var(--accent); }
.product-info .breadcrumb span { color: var(--text-muted); }

.product-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.product-inspired {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.product-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.product-size-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-dark);
  border: 1px solid var(--divider);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 24px;
}

.product-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

/* Fragrance Notes */
.notes-section {
  background: var(--surface-dark);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 28px;
}

.notes-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.notes-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.notes-group { }
.notes-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.notes-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.note-tag {
  background: rgba(203,186,156,0.12);
  border: 1px solid rgba(203,186,156,0.25);
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 20px;
}

/* Qty + CTA */
.offer-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFBEA;
  border: 1px solid #F5E4A0;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 4px;
}
.offer-banner__icon { font-size: 20px; flex-shrink: 0; }
.offer-banner__text { font-size: 13px; color: #7A5F00; line-height: 1.4; }
.offer-banner__text strong { color: #5A4200; font-weight: 700; }

/* ── Product view counter ────────────────────────────────────── */
@keyframes vcPulse {
  0%,100% { transform: scale(1);   opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,0.5); }
  50%     { transform: scale(1.25); opacity: 0.8; box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}
@keyframes vcFlameSpin {
  0%,100% { transform: scaleY(1) rotate(-4deg); }
  50%     { transform: scaleY(1.15) rotate(4deg); }
}
@keyframes vcCountUp {
  from { opacity:0; transform: translateY(6px); }
  to   { opacity:1; transform: translateY(0); }
}

.pd-view-count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: -10px;
  margin-bottom: 14px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #fff8f8 0%, #fff3e0 100%);
  border: 1px solid rgba(239,68,68,0.18);
  border-radius: 50px;
  animation: vcCountUp 0.5s ease both;
}

/* Live pulsing red dot */
.pd-view-count__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: vcPulse 1.6s ease-in-out infinite;
}

/* Fire emoji animation */
.pd-view-count__fire {
  font-size: 16px;
  display: inline-block;
  flex-shrink: 0;
  animation: vcFlameSpin 1.2s ease-in-out infinite;
  line-height: 1;
}

/* Main text */
.pd-view-count__text {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.pd-view-count__text strong {
  font-size: 15px;
  font-weight: 700;
  color: #e53e3e;
  margin: 0 2px;
}
.pd-view-count__text em {
  font-style: normal;
  color: #888;
  font-size: 12px;
}

.product-actions { display: flex; flex-direction: column; gap: 12px; }

.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-control button {
  width: 40px;
  height: 48px;
  background: var(--surface-dark);
  color: var(--text-light);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.qty-control button:hover { background: var(--accent); color: var(--text-dark); }

.qty-control input {
  width: 56px;
  height: 48px;
  background: var(--surface-dark);
  border: none;
  border-left: 1px solid var(--divider);
  border-right: 1px solid var(--divider);
  color: var(--text-light);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

/* ── Reviews Section ─────────────────────────────────────────── */
.reviews-section { padding: 48px 0; }

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px;
  background: var(--surface-dark);
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.reviews-avg {
  text-align: center;
  flex-shrink: 0;
}

.avg-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
}

.avg-stars { justify-content: center; margin: 8px 0; }
.avg-count { font-size: 13px; color: var(--text-muted); }

.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.rating-bar-track {
  flex: 1;
  height: 6px;
  background: var(--divider);
  border-radius: 3px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.8s ease;
}

.reviews-list { display: flex; flex-direction: column; gap: 20px; }

.review-card {
  background: var(--surface-dark);
  border-radius: var(--radius);
  padding: 20px;
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.reviewer-name { font-size: 14px; font-weight: 700; }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-body { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.8); }

/* ── Forms ───────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.form-control {
  background: var(--surface-dark);
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-light);
  font-size: 15px;
  transition: var(--transition);
  width: 100%;
}

.form-control:focus { border-color: var(--accent); }
.form-control::placeholder { color: var(--text-muted); }
.form-control.error { border-color: var(--error); }

.form-error { font-size: 12px; color: var(--error); }

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: #0F0F0F;
  border-top: 1px solid var(--surface-dark);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 12px;
}

.footer-brand .logo span { color: var(--accent); }
.footer-tagline { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: var(--transition);
}

.social-link:hover { border-color: var(--accent); color: var(--accent); }

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--accent); }

.footer-newsletter { display: flex; gap: 8px; }
.footer-newsletter input {
  flex: 1;
  background: var(--surface-dark);
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-light);
  font-size: 13px;
}
.footer-newsletter input::placeholder { color: var(--text-muted); }
.footer-newsletter input:focus { border-color: var(--accent); outline: none; }

.footer-bottom {
  border-top: 1px solid var(--surface-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Toast Notifications ─────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--surface-dark);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: slideIn 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
}

.toast.success { border-color: var(--success); }
.toast.error   { border-color: var(--error); }

@keyframes slideIn {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* ── Shimmer Loading ─────────────────────────────────────────── */
.shimmer {
  background: linear-gradient(90deg, var(--surface-dark) 25%, #333 50%, var(--surface-dark) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* ── Utility ─────────────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.d-flex { display: flex; }
.gap-2  { gap: 8px; }
.align-center { align-items: center; }
.hidden { display: none !important; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .notes-row { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .reviews-summary { flex-direction: column; gap: 24px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-slider { height: 380px; }
  .hero-title { font-size: 32px; }
  .hero-content { padding: 0 24px; }
  .section { padding: 40px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .nav-container { padding: 0 16px; }
  .container { padding: 0 16px; }
  .hero-title { font-size: 26px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ═══════════════════════════════════════════════════════════════
   LIGHT THEME — White-first design matching duhnfragrances.com
   Dark sections (announcement bar, hero, promo strip, footer,
   cart sidebar, search overlay) keep their dark backgrounds.
   Everything else: white background, #1A1A1A text.
   ═══════════════════════════════════════════════════════════════ */

/* 1 ── Page foundation — warm off-white, instantly more premium */
body {
  background: #FFFFFF;
  color: #1A1A1A;
}
main { background: #FFFFFF; }

/* Cards and form areas stay pure white for contrast */
.product-card,
.auth-card,
.review-card,
.order-card,
.form-control,
.auth-inp,
.checkout-summary { background: #FFFFFF; }

/* 2 ── Header — white with light border */
.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid #EBEBEB;
}

.nav-logo          { color: #1A1A1A; }
.nav-logo span     { color: var(--accent); }
.nav-links a       { color: #555555; }
.nav-links a:hover,
.nav-links a.active { color: #1A1A1A; border-bottom-color: #1A1A1A; }
.nav-icon-btn      { color: #1A1A1A; }
.nav-icon-btn:hover { background: #F5F5F5; color: #1A1A1A; }
.nav-toggle span   { background: #1A1A1A; }

/* Social icons in header */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 4px;
  padding-left: 16px;
  border-left: 1px solid #EBEBEB;
}
.nav-social-icon {
  color: #888888;
  font-size: 17px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-social-icon:hover { color: #1A1A1A; }

/* 3 ── Announcement bar — STAYS DARK with gold text ✓ */

/* 4 ── Section headings */
.section-title { color: #1A1A1A; }

/* 5 ── Product card Add-to-Cart — Catier style: champagne gold */
.btn-add-cart {
  background: #1A1A1A;
  color: #FFFFFF;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 500;
}
.btn-add-cart:hover {
  background: var(--accent);
  color: #1A1A1A;
}

/* 6 ── Product detail */
.product-title       { color: #1A1A1A; }
.product-description { color: #555555; }
.product-price       { color: #1A1A1A; }
.product-size-badge  {
  background: #F5F5F5;
  border-color: #E0E0E0;
  color: #1A1A1A;
}

/* 7 ── Fragrance notes card — light gray on white */
.notes-section  { background: #F7F7F7; }
.notes-title    { color: #888888; }
.note-tag {
  background: rgba(203,186,156,0.08);
  border-color: rgba(203,186,156,0.3);
  color: #444444;
}

/* 8 ── Qty control — light */
.qty-control              { border-color: #DEDEDE; }
.qty-control button       { background: #F5F5F5; color: #1A1A1A; }
.qty-control button:hover { background: var(--accent); color: #1A1A1A; }
.qty-control input        {
  background: #FFFFFF;
  color: #1A1A1A;
  border-left-color:  #DEDEDE;
  border-right-color: #DEDEDE;
}

/* 9 ── Reviews — light cards */
.reviews-summary { background: #F7F7F7; }
.avg-number      { color: #1A1A1A; }
.rating-bar-track { background: #E5E5E5; }
.review-card     { background: #F7F7F7; }
.review-body     { color: #444444; }
.reviewer-name   { color: #1A1A1A; }

/* 10 ── Forms */
.form-control {
  background: #FFFFFF;
  border-color: #DEDEDE;
  color: #1A1A1A;
}
.form-control::placeholder { color: #AAAAAA; }
.form-label { color: #666666; }

/* 11 ── Outline button on white bg */
.btn-outline {
  color: #1A1A1A;
  border-color: #1A1A1A;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* 12 ── Product row scrollbar on white bg */
.product-row::-webkit-scrollbar-track { background: #F0F0F0; }

/* 13 ── Shimmer on white bg */
.shimmer {
  background: linear-gradient(90deg, #F0F0F0 25%, #E5E5E5 50%, #F0F0F0 75%);
  background-size: 200% 100%;
}

/* 14 ── Cart sidebar stays DARK — full dark panel */
.cart-sidebar             { background: #1E1E1E; color: #FFFFFF; }
.cart-header              { border-bottom-color: #2A2A2A; }
.cart-header h3           { color: #FFFFFF; }
.cart-close               { color: #888888; }
.cart-close:hover         { color: #FFFFFF; }
.cart-items-list          { background: #1E1E1E; }
.cart-item__name          { color: #FFFFFF; }
.cart-item__price         { color: var(--accent); }
.qty-btn                  { background: #2A2A2A; color: #FFFFFF; }
.qty-value                { color: #FFFFFF; }
.cart-item__remove        { color: #555555; }
.cart-footer              { background: #1E1E1E; border-top-color: #2A2A2A; }
.cart-totals .row         { color: #CCCCCC; }
.cart-totals .row.total   { color: #FFFFFF; border-top-color: #2A2A2A; }
.cart-totals .row.discount { color: #28A745; }
.cart-empty               { color: #888888; }

/* 15 ── Separator visible on white */
hr { border-color: #EBEBEB; }

/* 16 ── Mobile nav drawer on white bg */
@media (max-width: 768px) {
  #nav-links.open {
    background: #FFFFFF;
    border-bottom: 1px solid #EBEBEB;
  }
  #nav-links.open li a { color: #1A1A1A; }
  .nav-socials { display: none; }
}

/* 17 ── Product card — white on warm body, refined shadow */
.product-card {
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #EEECE9;
}
.product-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.11);
  border-color: #E0DDD8;
}

/* 18 ── Collections page sidebar on white bg */
.collections-sidebar {
  border-right-color: #EBEBEB;
}
.collection-filter-link { color: #444444; }
.collection-filter-link:hover,
.collection-filter-link.active { color: #1A1A1A; background: #F5F5F5; }

/* 19 ── Checkout on white bg */
.checkout-section-title { color: #1A1A1A; }

/* 20 ── Policy / about pages — text on white */
.policy-card {
  background: #F7F7F7;
  border-color: #EBEBEB;
  color: #1A1A1A;
}
.policy-card h3 { color: #1A1A1A; }
.policy-card p, .policy-card li { color: #555555; }

/* ══════════════════════════════════════════════════════════════
   ROUND 2 VISUAL FIXES — Match live duhnfragrances.com pixel-perfect
   ══════════════════════════════════════════════════════════════ */

/* 21 ── Sharp corners everywhere (live site: --rounded-button: 0rem) */
.btn,
.btn-gold,
.btn-outline,
.btn-outline-gold,
.btn-add-cart,
.btn-full {
  border-radius: 0 !important;
}

/* 22 ── Product cards: square corners (live site: border-radius: 0rem) */
.product-card {
  border-radius: 0 !important;
  border: none !important;
  box-shadow: 0 5px 15px rgba(26,26,26,0.1) !important;
}
.product-card:hover {
  box-shadow: 0 8px 24px rgba(26,26,26,0.18) !important;
}

/* 23 ── Collection cards: square corners */
.collection-card {
  border-radius: 0 !important;
}

/* 24 ── Header: NOT sticky on live site */
.site-header {
  position: relative !important;
  top: auto !important;
}

/* 25 ── Star rating color: #FFB74A (live site uses Judge.me amber, not gold) */
.stars {
  color: #FFB74A !important;
}
.stars .empty { color: #DDDDDD !important; }

/* 26 ── Product grid: max 3 columns on desktop (live site never goes to 4) */
@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* 27 ── Product card badge: square corners */
.product-card__badge {
  border-radius: 0 !important;
}

/* 28 ── Section title color fix (inherits from light bg override) */
.section-title { color: #1A1A1A; }

/* 29 ── Offer badge on product cards */
.product-card__badge.offer {
  background: #FF4444 !important;
  color: #fff !important;
  font-size: 9px !important;
  max-width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ══════════════════════════════════════════════════════════════
   SIGNATURE REDESIGN — DUHN FRAGRANCES Custom Identity
   ══════════════════════════════════════════════════════════════ */

/* ── Luxury font variables ───────────────────────────────────── */
:root {
  --font-serif: 'Montserrat', sans-serif;
}

/* ── Hero: full-screen centered redesign ─────────────────────── */
.hero-slider {
  height: 100vh !important;
  min-height: 600px;
  max-height: 900px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
}

.hero-content--center {
  position: absolute !important;
  top: 50% !important;
  left: 60px !important;
  transform: translateY(-50%) !important;
  text-align: left !important;
  width: 100% !important;
  max-width: 640px !important;
  padding: 0 24px !important;
}
@media (max-width: 700px) {
  .hero-content--center {
    left: 0 !important;
    padding: 0 20px !important;
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: 'Jost', sans-serif !important;
  font-size: clamp(42px, 7vw, 80px) !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Pill buttons */
.btn-pill {
  border-radius: 100px !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.btn-ghost {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.55) !important;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: #fff !important;
}

.btn-dark {
  background: #1A1A1A !important;
  color: #fff !important;
}
.btn-dark:hover {
  background: #333 !important;
}

/* Scroll hint — centered, sits above the dots */
.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.hero-scroll-hint i {
  font-size: 18px;
  opacity: 0.8;
}

/* Thin line above the word SCROLL */
.hero-scroll-hint::before {
  content: '';
  display: block;
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.35);
  margin-bottom: 2px;
}

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

/* ── Promo marquee: gold text on dark strip ──────────────────── */
.promo-marquee .marquee span {
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
}

/* ── WHY DUHN FRAGRANCES section — Light Catier style ────────── */
.why-section {
  background: #FAFAF9;
  padding: 72px 0;
  border-top: 1px solid #E8E3DC;
  border-bottom: 1px solid #E8E3DC;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: #E8E3DC;
  border: 1px solid #E8E3DC;
}

@media (min-width: 900px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.why-card {
  background: #FFFFFF;
  padding: 40px 28px;
  text-align: center;
  transition: background 0.3s ease;
}

.why-card:hover { background: #FAFAF9; }

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(203,186,156,0.12);
  border: 1px solid rgba(203,186,156,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 22px;
  color: var(--accent);
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.why-title {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 13px;
  color: #888888;
  line-height: 1.65;
}

/* ── Section headings: clean Jost uppercase ───────────────────── */
.section-title {
  font-family: 'Jost', sans-serif !important;
  font-style: normal !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-size: 22px !important;
  color: #1A1A1A !important;
}

/* ── Product card hover: dark overlay reveal ─────────────────── */
.product-card {
  position: relative;
}

.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.35s ease;
  z-index: 1;
}

.product-card:hover .product-card__image::after {
  background: rgba(0,0,0,0.18);
}

/* ── Collection card name — clean Jost uppercase ──────────────── */
.collection-card__name {
  font-family: 'Jost', sans-serif !important;
  font-style: normal !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  font-size: 14px !important;
}

.collection-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  z-index: 3;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.collection-card:hover::before { transform: scaleX(1); }

/* ── Brand Banner: full redesign ─────────────────────────────── */
.brand-banner {
  position: relative;
  background: var(--accent);
  padding: 90px 0;
  text-align: center;
  overflow: hidden;
}

.brand-banner__bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,0.04) 0px,
    rgba(0,0,0,0.04) 1px,
    transparent 1px,
    transparent 12px
  );
  pointer-events: none;
}

.brand-banner__inner { position: relative; z-index: 1; }

.brand-banner__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 16px;
}

.brand-banner__title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A1A1A;
  line-height: 1.2;
  margin-bottom: 16px;
}

.brand-banner__title em {
  font-style: italic;
}

.brand-banner__sub {
  font-size: 15px;
  color: rgba(0,0,0,0.55);
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Review section: dark card treatment ─────────────────────── */
.review-header { align-items: flex-start; }
.review-date   { font-size: 11px; color: #888; }

/* ── Sticky header: glass blur on scroll (JS adds .scrolled) ─── */
.site-header {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  position: sticky !important;
  top: 0 !important;
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
}

/* ── Nav logo: clean Jost uppercase ──────────────────────────── */
.nav-logo {
  font-family: 'Jost', sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  font-style: normal !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #1A1A1A !important;
}

.nav-logo span {
  color: var(--accent) !important;
  font-style: normal !important;
}

/* ── WhatsApp float: keep it polished ───────────────────────────*/
@media (max-width: 700px) {
  .hero-title { font-size: 40px !important; }
  .hero-content--center { padding: 0 20px !important; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   DESIGN IMPROVEMENTS — ROUND 3
   ─────────────────────────────────────────────────────────────
   1. Featured products: desktop 4-column grid
   2. Collection cards: no-image gradient placeholder
   3. Social icons: larger, platform-colored hover
   4. Footer quote line
   5. Add-to-cart: button feedback handled in JS
   6. Gallery: zoom cursor (inline on img)
═══════════════════════════════════════════════════════════════ */

/* 1 ── Featured products: horizontal scroll on mobile, 4-col grid on desktop */
.featured-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.featured-grid::-webkit-scrollbar { height: 4px; }
.featured-grid::-webkit-scrollbar-track { background: #F0F0F0; }
.featured-grid::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.featured-grid .product-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
    gap: 20px;
  }
  .featured-grid .product-card { flex: unset; }
}
@media (min-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(4, 1fr); }
}

/* 2 ── Collection card: gradient placeholder when no image */
.collection-card--no-img {
  background: linear-gradient(135deg, #1c1c1c 0%, #2e2a20 50%, #1a1a1a 100%);
}
.collection-card--no-img::before {
  content: none;
}
.collection-card--no-img .collection-card__name {
  color: var(--accent) !important;
  bottom: 50%;
  transform: translateY(50%);
  text-align: center;
  left: 16px;
  right: 16px;
  font-size: 18px !important;
}

/* 3 ── Social icons: larger, richer hover colours */
.social-link {
  width: 44px !important;
  height: 44px !important;
  font-size: 20px !important;
}
.social-link[aria-label="Facebook"]:hover  { border-color: #1877F2 !important; color: #1877F2 !important; }
.social-link[aria-label="Instagram"]:hover { border-color: #E1306C !important; color: #E1306C !important; }
.social-link[aria-label="TikTok"]:hover    { border-color: #69C9D0 !important; color: #69C9D0 !important; }
.social-link[aria-label="WhatsApp"]:hover  { border-color: #25D366 !important; color: #25D366 !important; }

/* 4 ── Footer poetic quote */
.footer-quote {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
  line-height: 1.5;
}

/* 5 ── Add-to-cart button: success state (JS sets text, CSS adds color) */
.btn-add-cart[disabled] {
  background: #28A745 !important;
  color: #fff !important;
  opacity: 1 !important;
  cursor: default !important;
}

/* 6 ── Gallery main image: subtle zoom-in cursor already set inline */
.gallery-main img {
  transition: transform 0.3s ease;
}
.gallery-main img:hover {
  transform: scale(1.02);
}

/* ══════════════════════════════════════════════════════════════
   FULL-SCREEN HERO — HIDDEN HEADER UNTIL SCROLL
   Homepage: hero image fills 100dvh from the very top (y=0).
   Header + announcement bar are FULLY INVISIBLE on load.
   They fade in smoothly when the user scrolls down.
   ══════════════════════════════════════════════════════════════ */

/* ── 1. Hide announcement bar completely on homepage load ─────── */
body.page-home .announcement-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1001 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.38s ease;
}
body.page-home .announcement-bar.header-visible {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* ── 2. Header: FULLY INVISIBLE on homepage load ──────────────── */
body.page-home .site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.45s ease, background 0.38s ease,
              border-color 0.38s ease, box-shadow 0.38s ease,
              top 0.38s ease;
}

/* ── 3. On scroll: fade in white header below announcement bar ── */
body.page-home .site-header.header-visible {
  opacity: 1 !important;
  pointer-events: auto !important;
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid #ebebeb !important;
  box-shadow: 0 1px 14px rgba(0,0,0,0.06) !important;
  top: 44px !important;
}

/* ── 4. Hero: fills entire viewport from y=0, no top gap ─────── */
body.page-home .hero-slider {
  height: 100dvh !important;
  min-height: 600px !important;
  max-height: none !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body.page-home main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
body.page-home {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ══════════════════════════════════════════════════════════════
   CATIER-STYLE REDESIGN
   Hero left-aligned · Collection portrait cards · BEST SELLER
   heading · Product circle-button hover · Section eyebrow text
   ══════════════════════════════════════════════════════════════ */

/* ── HERO: LEFT-ALIGNED LAYOUT ─────────────────────────────── */
.hero-content--left {
  text-align: left;
  max-width: 580px;
  padding: 0 24px;
}

.hero-content--left .hero-eyebrow {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  display: block;
}

.hero-content--left .hero-title {
  font-family: var(--font);
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-content--left .hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-content--left .hero-subtitle {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 420px;
  line-height: 1.7;
}

/* Hero CTA buttons — sharp Catier style */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: #ffffff;
  color: #0C0C0C;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn-hero-primary:hover {
  background: var(--accent);
  color: #0C0C0C;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 15px 36px;
  background: transparent;
  color: #ffffff;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 0;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #ffffff;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Position hero content in left column on large screens */
.hero-slide .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 0;
  pointer-events: none; /* let image be clickable below */
}
.hero-slide .container > * {
  pointer-events: all;
}

/* ── SECTION HEADER: CATIER EYEBROW STYLE ──────────────────── */
.section-header--catier {
  display: block !important;   /* override base flex layout */
  text-align: center !important;
  margin-bottom: 56px;
}

/* Eyebrow: hidden — title-first design */
.section-eyebrow {
  display: none;
}

/* Section title: bold, dark, uppercase */
.section-header--catier .section-title {
  font-family: var(--font);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 0;
}

/* Gold divider line centered directly below title */
.section-header--catier .section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  background: var(--accent);
  margin: 14px auto 0;
}

/* Subtitle: light, spaced, below the line */
.section-subtitle {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.12em;
  max-width: 440px;
  margin: 18px auto 0;
  line-height: 1.7;
}

.section-header--catier .section-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1A1A1A;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.section-header--catier .section-link:hover {
  color: var(--accent);
}

/* ── PRODUCT CARD: CIRCLE HOVER BUTTON ─────────────────────── */
.product-card {
  position: relative;
}

.product-card__image {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-card__hover-actions {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2;
}

.product-card:hover .product-card__hover-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-action-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #0C0C0C;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.product-action-circle:hover {
  background: var(--accent);
  color: #0C0C0C;
  transform: scale(1.1);
}

/* ── COLLECTION GRID V2: PORTRAIT CARDS ────────────────────── */
.collection-grid-v2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.collection-grid-v2 .collection-item {
  flex: 0 0 calc(50% - 12px);
  max-width: calc(50% - 12px);
}

@media (min-width: 768px) {
  .collection-grid-v2 {
    gap: 28px;
  }
  .collection-grid-v2 .collection-item {
    flex: 0 0 calc(33.333% - 19px);
    max-width: calc(33.333% - 19px);
  }
}

@media (min-width: 1200px) {
  .collection-grid-v2 {
    gap: 32px;
  }
  .collection-grid-v2 .collection-item {
    flex: 0 0 calc(25% - 24px);
    max-width: calc(25% - 24px);
  }
}

.collection-item {
  display: flex;
  flex-direction: column;
}

.collection-item__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #F2EDE7;
  position: relative;
}

.collection-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.collection-item:hover .collection-item__media img {
  transform: scale(1.04);
}

.collection-item__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E8E3DC 0%, #D5CBBD 100%);
}

.collection-item__body {
  padding: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.collection-item__name {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.collection-item__count {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.collection-item__btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.2s;
}
.collection-item__btn:hover {
  color: var(--accent);
}

/* No-image fallback for new collection items */
.collection-item--no-img .collection-item__media {
  background: linear-gradient(135deg, #1c1c1c 0%, #2e2a20 50%, #1a1a1a 100%);
}
.collection-item--no-img .collection-item__name {
  color: var(--accent);
}

/* ── PRODUCT CARD: CLEAN BODY (remove old add to cart btn) ─── */
.product-card__body {
  padding: 16px 4px 8px;
}

.product-card__body .btn-add-cart {
  display: none; /* Replaced by hover circle action */
}

/* ── SECTION SPACING TWEAKS ─────────────────────────────────── */
.section--products,
.section--collections {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ── RESPONSIVE: HERO LEFT TEXT ─────────────────────────────── */
@media (max-width: 767px) {
  .hero-content--left {
    max-width: 100%;
    padding: 0 20px;
  }
  .hero-content--left .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 13px 28px;
    font-size: 10px;
  }
  .collection-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .section-header--catier {
    margin-bottom: 36px;
  }
}

/* ══════════════════════════════════════════════════════════════
   NEWSLETTER POPUP
   ══════════════════════════════════════════════════════════════ */
.nl-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.nl-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.38s ease;
}

.nl-popup.nl-active .nl-popup__backdrop {
  opacity: 1;
}

.nl-popup__modal {
  position: relative;
  z-index: 1;
  background: #ffffff;
  width: 100%;
  max-width: 560px;
  padding: 52px 48px 44px;
  text-align: center;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.38s ease;
}

.nl-popup.nl-active .nl-popup__modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.nl-popup__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.nl-popup__close:hover { color: #111; }

.nl-popup__eyebrow {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 14px;
}

.nl-popup__divider {
  width: 40px;
  height: 2px;
  background: #111;
  margin: 0 auto 28px;
}

.nl-popup__title {
  font-family: var(--font);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111;
  line-height: 1.2;
  margin-bottom: 16px;
}

.nl-popup__desc {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto 28px;
}

.nl-popup__form {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}

.nl-popup__input {
  flex: 1;
  height: 52px;
  border: 1px solid #ddd;
  border-right: none;
  padding: 0 18px;
  font-size: 13px;
  font-family: var(--font);
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.nl-popup__input:focus { border-color: #999; }
.nl-popup__input::placeholder { color: #aaa; }

.nl-popup__btn {
  height: 52px;
  padding: 0 28px;
  background: #111;
  color: #fff;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  border-radius: 0;
}
.nl-popup__btn:hover { background: var(--accent); color: #111; }

.nl-popup__skip {
  background: none;
  border: none;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color 0.2s;
}
.nl-popup__skip:hover { color: #111; }

@media (max-width: 540px) {
  .nl-popup__modal { padding: 44px 24px 36px; }
  .nl-popup__form { flex-direction: column; }
  .nl-popup__input { border-right: 1px solid #ddd; border-bottom: none; }
  .nl-popup__btn { width: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   WHITE HEADER (non-homepage always visible)
   ══════════════════════════════════════════════════════════════ */
body:not(.page-home) .site-header {
  background: #ffffff !important;
  border-bottom: 1px solid #efefef !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  box-shadow: none !important;
}
body:not(.page-home) .site-header .nav-logo { color: #111 !important; }
body:not(.page-home) .site-header .nav-logo span { color: var(--accent) !important; }
body:not(.page-home) .site-header .nav-links a { color: #555 !important; }
body:not(.page-home) .site-header .nav-links a:hover { color: #111 !important; }
body:not(.page-home) .site-header .nav-icon-btn { color: #333 !important; }

/* ══════════════════════════════════════════════════════════════
   CART REDESIGN — WHITE PANEL
   ══════════════════════════════════════════════════════════════ */
.cart-sidebar {
  background: #ffffff !important;
  color: #111 !important;
}

.cart-header {
  border-bottom: 1px solid #efefef !important;
  background: #ffffff !important;
}

.cart-header h3 {
  font-family: var(--font) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  color: #111 !important;
  text-transform: none !important;
}

.cart-close {
  color: #666 !important;
  font-size: 18px !important;
}
.cart-close:hover { color: #111 !important; }

/* Empty cart redesign */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 52px 32px;
  gap: 0;
}
.cart-empty[style*="display: none"],
.cart-empty[style*="display:none"] { display: none !important; }

.cart-empty__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cart-empty__icon i {
  font-size: 56px;
  color: #ccc;
}

.cart-empty__title {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 10px;
  text-align: center;
}

.cart-empty__desc {
  font-size: 13px;
  color: #888;
  text-align: center;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 0 28px;
}

.cart-empty__btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: #111;
  color: #fff;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-empty__btn:hover { background: var(--accent); color: #111; }

/* Cart items list + footer — must be WHITE to match sidebar */
.cart-items-list          { background: #ffffff !important; }
.cart-footer              { background: #ffffff !important; border-top-color: #efefef !important; }
.cart-promo-banner        { margin: 0 24px; }

/* Cart item text in white sidebar */
.cart-item__name  { color: #111 !important; }
.cart-item__price { color: var(--accent) !important; }
.cart-item__remove { color: #999 !important; }
.cart-item__remove:hover { color: #111 !important; }
.cart-totals .row span { color: #333 !important; }
.cart-totals .row.total span { color: #111 !important; font-weight: 700 !important; }
.cart-totals .row.discount span { color: #28A745 !important; }
.qty-btn { background: #f5f5f5 !important; color: #111 !important; }
.qty-btn:hover { background: var(--accent) !important; color: #111 !important; }
.qty-value { color: #111 !important; }

/* Cart footer checkout button */
.cart-footer .btn-gold {
  background: #111 !important;
  color: #fff !important;
  border-radius: 0 !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
}
.cart-footer .btn-gold:hover { background: var(--accent) !important; color: #111 !important; }

/* ══════════════════════════════════════════════════════════════
   BEST SELLER — SALE RIBBON BADGE
   ══════════════════════════════════════════════════════════════ */
.product-card__badge.offer,
.product-card__badge.sale-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  left: auto !important;
  background: #e02020 !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 4px 6px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  border-radius: 0 !important;
  letter-spacing: 0.05em;
}

/* BEST SELLER section — square images, centered text, clean cards */
.section--products .product-card {
  border: none;
  box-shadow: none;
  background: transparent;
}
.section--products .product-card:hover {
  transform: none;
  box-shadow: none;
}
.section--products .product-card__image {
  aspect-ratio: 1 / 1;
  background: #f5f3f0;
  border-radius: 0;
}
.section--products .product-card__name {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}
.section--products .product-card__inspired {
  text-align: center;
  font-size: 12px;
}
.section--products .product-card__rating {
  justify-content: center;
}
.section--products .product-card__price {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
}
.section--products .product-card__body {
  padding: 16px 8px 8px;
  background: transparent;
}

/* ══════════════════════════════════════════════════════════════
   COLLECTION EDITORIAL BANNER (Image #40)
   ══════════════════════════════════════════════════════════════ */
.coll-editorial {
  margin: 0;
  overflow: hidden;
}

.coll-editorial__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

@media (max-width: 767px) {
  .coll-editorial__grid {
    grid-template-columns: 1fr;
  }
}

.coll-ed-main {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 600px;
  background: #111;
}

.coll-ed-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.6s ease;
}
.coll-ed-main:hover img { transform: scale(1.04); }

.coll-ed-main__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2820 100%);
}

.coll-ed-main__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.coll-ed-main__content {
  position: absolute;
  z-index: 2;
  bottom: 60px;
  left: 48px;
  right: 48px;
}

.coll-ed-main__title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}

.coll-ed-main__link {
  display: inline-block;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.coll-ed-main:hover .coll-ed-main__link { border-color: #fff; }

/* Right stacked panels */
.coll-ed-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.coll-ed-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: #222;
}

.coll-ed-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: transform 0.6s ease;
}
.coll-ed-item:hover img { transform: scale(1.04); }

.coll-ed-item__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1c1c1c 0%, #2a2520 100%);
}

.coll-ed-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.coll-ed-item__content {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 32px;
  right: 32px;
}

.coll-ed-item__title {
  font-family: var(--font);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.coll-ed-item__link {
  display: inline-block;
  font-family: var(--font);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
}
.coll-ed-item:hover .coll-ed-item__link { border-color: #fff; }

/* ══════════════════════════════════════════════════════════════
   3-COLUMN PRODUCT LIST  — matches Image #5 exactly
   ══════════════════════════════════════════════════════════════ */
.section--product-cols {
  background: #ffffff;
  padding-top: 72px;
  padding-bottom: 72px;
}

/* 3 equal columns with spacing between them */
.product-cols-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;  /* vertical: 0, horizontal: 40px gap between columns */
  border: none;
}

@media (max-width: 767px) {
  .product-cols-grid { grid-template-columns: 1fr; gap: 40px 0; }
}

.product-col-list {
  padding: 0;
  border-right: none;
}

/* Column heading: all-caps, thin separator line */
.product-col-list__heading {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1A1A1A;
  padding: 0 0 14px;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 0;
}

/* Each product row: WHITE card with 1px border, large thumbnail fills height */
.product-col-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 12px;
  background: transparent;
  border: none;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.2s;
}
.product-col-row:hover {
  background: #fafafa;
}

/* Large thumbnail: fixed square, light gray bg — all cards identical height */
.product-col-row__thumb {
  width: 170px;
  height: 170px;
  flex-shrink: 0;
  background: #f3f3f3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-col-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 14px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-col-row:hover .product-col-row__thumb img {
  transform: scale(1.08);
}

/* Info: centered vertically, left-padded */
.product-col-row__info {
  flex: 1;
  min-width: 0;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Product name: regular weight, larger */
.product-col-row__name {
  font-family: var(--font);
  font-size: 19px;
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 12px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Price row: bold current + small gray strikethrough */
.product-col-row__price {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.price-sale {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
}

.price-original {
  font-size: 14px;
  font-weight: 400;
  color: #aaa;
  text-decoration: line-through;
}

/* ══════════════════════════════════════════════════════════════
   OUR TESTIMONIAL (redesigned from reviews)
   ══════════════════════════════════════════════════════════════ */
.section--testimonials {
  background: #fafaf9;
  padding-top: 80px;
  padding-bottom: 80px;
}

.testimonial-heading {
  text-align: center;
  margin-bottom: 56px;
}

.testimonial-heading__title {
  font-family: var(--font);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 0;
}

.testimonial-heading__line {
  width: 56px;
  height: 2px;
  background: var(--accent);
  margin: 14px auto 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 767px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #efefef;
  padding: 40px 28px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: box-shadow 0.25s;
}
.testimonial-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.08); }

.testimonial-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid #efefef;
}

.testimonial-card__initials {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 600;
  color: #111;
  line-height: 1;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  font-size: 14px;
}
.star-filled { color: var(--accent); }
.star-empty  { color: #ddd; }

.testimonial-card__text {
  font-size: 13px;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.testimonial-card__name {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
}

.testimonial-card__role {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ══════════════════════════════════════════════════════════════
   INSPIRATION SECTION — matches Image #7 exactly
   Centered bold heading · 3-col tall images · text centered below
   ══════════════════════════════════════════════════════════════ */
.section--inspiration {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff;
}

.inspiration-heading {
  font-family: var(--font);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 0;
}

/* Gold line below heading */
.inspiration-heading::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  background: var(--accent);
  margin: 14px auto 56px;
}

/* 3 equal columns, small gap between like Image #7 */
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
  .inspiration-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .inspiration-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Card: image on top, text centered below */
.inspiration-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
}

/* Image wrapper: tall rectangle like Image #7 */
.inspiration-card__img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #f0ece6;
  margin-bottom: 20px;
}

.inspiration-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.inspiration-card:hover .inspiration-card__img-wrap img {
  transform: scale(1.04);
}

/* Title: centered, normal weight like Image #7 */
.inspiration-card__title {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.4;
  margin: 0 0 10px;
  text-align: center;
}

.inspiration-card__desc {
  font-size: 13px;
  font-weight: 400;
  color: #777;
  line-height: 1.7;
  margin: 0 0 12px;
  text-align: center;
}

.inspiration-card__link {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
  width: fit-content;
  margin: 0 auto;
  transition: color 0.2s, border-color 0.2s;
}
.inspiration-card__link:hover { color: var(--accent); border-color: var(--accent); }

/* ══════════════════════════════════════════════════════════════
   SCROLL-TO-TOP BUTTON
   ══════════════════════════════════════════════════════════════ */
.scroll-top-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 990;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  transition: background 0.2s, transform 0.2s;
}
.scroll-top-btn:hover { background: var(--accent); color: #111; transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════════
   ADMIN RICH TEXT EDITOR (RTE)
   ══════════════════════════════════════════════════════════════ */
.rte-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  background: #0D0D0D;
  border: 1px solid var(--admin-border);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}
.rte-toolbar button {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--admin-border);
  color: #ccc;
  border-radius: 4px;
  padding: 3px 9px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Barlow', sans-serif;
  line-height: 1.4;
}
.rte-toolbar button:hover { background: rgba(255,255,255,0.12); color: #fff; }
.rte-toolbar button.rte-active { background: rgba(248,196,23,0.2); border-color: rgba(248,196,23,0.5); color: var(--accent); }
.rte-toolbar select {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--admin-border);
  color: #ccc;
  border-radius: 4px;
  padding: 3px 6px;
  font-size: 11px;
  cursor: pointer;
  height: 26px;
}
.rte-toolbar input[type=color] {
  width: 26px;
  height: 26px;
  border: 1px solid var(--admin-border);
  border-radius: 4px;
  padding: 1px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
}
.rte-toolbar .rte-sep {
  width: 1px;
  height: 18px;
  background: var(--admin-border);
  margin: 0 2px;
}
.admin-rte {
  background: #111;
  border: 1px solid var(--admin-border);
  border-radius: 0 0 6px 6px;
  padding: 10px 14px;
  color: #fff;
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  min-height: 42px;
  outline: none;
  transition: border-color 0.2s;
  line-height: 1.5;
  word-break: break-word;
}
.admin-rte:focus { border-color: var(--accent); }
.admin-rte:empty::before { content: attr(data-placeholder); color: var(--text-muted); pointer-events: none; }
.rte-hint { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* ══════════════════════════════════════════════════════════════
   HERO 9-POSITION SYSTEM
   Controls where the text/button block sits on each slide.
   ══════════════════════════════════════════════════════════════ */
.hero-pos {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  padding: 130px 64px 130px;
  box-sizing: border-box;
  pointer-events: none;
}
.hero-pos > .hero-content { pointer-events: all; }

/* ── Vertical (rows) ── */
.hero-pos--top-left,
.hero-pos--top-center,
.hero-pos--top-right   { align-items: flex-start; }

.hero-pos--mid-left,
.hero-pos--mid-center,
.hero-pos--mid-right   { align-items: center; }

.hero-pos--bot-left,
.hero-pos--bot-center,
.hero-pos--bot-right   { align-items: flex-end; }

/* ── Horizontal (columns) ── */
.hero-pos--top-left,
.hero-pos--mid-left,
.hero-pos--bot-left    { justify-content: flex-start; }

.hero-pos--top-center,
.hero-pos--mid-center,
.hero-pos--bot-center  { justify-content: center; }

.hero-pos--top-right,
.hero-pos--mid-right,
.hero-pos--bot-right   { justify-content: flex-end; }

/* ── Content block ── */
.hero-pos .hero-content {
  max-width: 580px;
  width: 100%;
  position: static !important;
  transform: none !important;
  top: auto !important; left: auto !important;
}

/* ── Text alignment by column ── */
.hero-pos--top-left  .hero-content,
.hero-pos--mid-left  .hero-content,
.hero-pos--bot-left  .hero-content  { text-align: left; }

.hero-pos--top-center .hero-content,
.hero-pos--mid-center .hero-content,
.hero-pos--bot-center .hero-content { text-align: center; }

.hero-pos--top-right .hero-content,
.hero-pos--mid-right .hero-content,
.hero-pos--bot-right .hero-content  { text-align: right; }

/* ── CTA group alignment ── */
.hero-pos--top-left  .hero-cta-group,
.hero-pos--mid-left  .hero-cta-group,
.hero-pos--bot-left  .hero-cta-group  { justify-content: flex-start; align-items: flex-start; flex-direction: column; }

.hero-pos--top-center .hero-cta-group,
.hero-pos--mid-center .hero-cta-group,
.hero-pos--bot-center .hero-cta-group { justify-content: center; align-items: center; flex-direction: row; }

.hero-pos--top-right .hero-cta-group,
.hero-pos--mid-right .hero-cta-group,
.hero-pos--bot-right .hero-cta-group  { justify-content: flex-end; align-items: flex-end; flex-direction: row; }

/* ── Eyebrow alignment ── */
.hero-pos--top-center .hero-eyebrow,
.hero-pos--mid-center .hero-eyebrow,
.hero-pos--bot-center .hero-eyebrow { justify-content: center; }

.hero-pos--top-right .hero-eyebrow,
.hero-pos--mid-right .hero-eyebrow,
.hero-pos--bot-right .hero-eyebrow  { justify-content: flex-end; }

/* ── Above-button text alignment ── */
.hero-pos--top-center .hero-btn-above-text,
.hero-pos--mid-center .hero-btn-above-text,
.hero-pos--bot-center .hero-btn-above-text { text-align: center; display: block; }

.hero-pos--top-right .hero-btn-above-text,
.hero-pos--mid-right .hero-btn-above-text,
.hero-pos--bot-right .hero-btn-above-text  { text-align: right; display: block; }

@media (max-width: 767px) {
  .hero-pos { padding: 100px 20px 110px; }
  .hero-pos .hero-content { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   HERO BUTTONS — text above button group
   ══════════════════════════════════════════════════════════════ */
.hero-btn-above-text {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 10px;
  line-height: 1;
}

.hero-content--left .hero-cta-group {
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 600px) {
  .hero-btn-above-text { font-size: 10px; }
}

/* ═══════════════════════════════════════════════════
   PRODUCT DETAIL PAGE — REDESIGN
═══════════════════════════════════════════════════ */

/* Breadcrumb */
.pd-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #999; padding: 18px 0 14px;
}
.pd-breadcrumb a { color: #555; text-decoration: none; }
.pd-breadcrumb a:hover { color: #1A1A1A; }
.pd-breadcrumb span { color: #bbb; }

/* 2-col layout */
.pd-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  padding-bottom: 60px;
}
@media (max-width: 860px) {
  .pd-wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* Gallery */
.pd-gallery__main {
  position: relative;
  background: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
}
.pd-gallery__main img {
  width: 100%; display: block;
  aspect-ratio: 3/4; object-fit: contain;
}
.pd-gallery__sale-badge {
  position: absolute; top: 16px; left: 0;
  background: #e02020; color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; padding: 5px 14px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.pd-gallery__thumbs {
  display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap;
}
.pd-thumb {
  width: 70px; height: 70px; border-radius: 4px; overflow: hidden;
  border: 2px solid #ddd; cursor: pointer; flex-shrink: 0;
  background: #f5f5f5;
  transition: border-color 0.18s;
}
.pd-thumb.active, .pd-thumb:hover { border-color: #1A1A1A; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Info panel */
.pd-info { padding-top: 8px; }
.pd-title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600; color: #1A1A1A; margin: 0 0 6px; line-height: 1.2;
}
.pd-inspired { font-size: 13px; color: #888; margin: 0 0 12px; }

/* Stars */
.pd-rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.pd-stars { display: flex; gap: 2px; }
.pd-stars .star-on  { color: #F5A623; font-size: 17px; }
.pd-stars .star-half{ color: #F5A623; font-size: 17px; opacity: 0.5; }
.pd-stars .star-off { color: #ddd; font-size: 17px; }
.pd-review-link { font-size: 13px; color: #888; text-decoration: none; }
.pd-review-link:hover { text-decoration: underline; }

/* Price */
.pd-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.pd-price-current {
  font-family: 'Jost', sans-serif;
  font-size: 28px; font-weight: 700; color: #1A1A1A;
}
.pd-price-original {
  font-size: 16px; color: #aaa; text-decoration: line-through;
}
.pd-save-badge {
  background: #e02020; color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 4px;
}
.pd-divider { border: none; border-top: 1px solid #eee; margin: 0 0 18px; }

/* Short description */
.pd-short-desc { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 18px; }

/* Qty + ATC inline */
.pd-atc-row { display: flex; gap: 12px; margin-bottom: 12px; }
.pd-qty {
  display: flex; align-items: center;
  border: 1px solid #ddd; border-radius: 4px; overflow: hidden;
  flex-shrink: 0;
}
.pd-qty button {
  width: 40px; height: 48px;
  background: none; border: none; font-size: 18px;
  cursor: pointer; color: #555; transition: background 0.15s;
}
.pd-qty button:hover { background: #f5f5f5; }
.pd-qty input {
  width: 48px; height: 48px; text-align: center;
  border: none; border-left: 1px solid #ddd; border-right: 1px solid #ddd;
  font-size: 16px; font-weight: 600; color: #1A1A1A;
  -moz-appearance: textfield;
}
.pd-qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.pd-btn-atc {
  flex: 1; height: 48px; padding: 0 20px;
  background: #fff; color: #1A1A1A;
  border: 2px solid #1A1A1A; border-radius: 4px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  cursor: pointer; transition: background 0.18s, color 0.18s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.pd-btn-atc:hover:not(:disabled) { background: #1A1A1A; color: #fff; }
.pd-btn-atc:disabled { opacity: 0.4; cursor: not-allowed; }

/* Buy It Now */
.pd-btn-buy-now {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px;
  background: #1A1A1A; color: #fff;
  border-radius: 4px; text-decoration: none;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  margin-bottom: 20px;
  transition: background 0.18s;
}
.pd-btn-buy-now:hover { background: #333; }

/* Delivery info */
.pd-delivery-info { display: flex; flex-direction: column; gap: 12px; padding-top: 4px; }
.pd-delivery-row { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: #555; line-height: 1.6; }
.pd-delivery-row i { font-size: 22px; color: #888; flex-shrink: 0; margin-top: 1px; }
.pd-delivery-row strong { color: #1A1A1A; }

/* ── Tabs ── */
.pd-tabs-outer { margin: 20px 0 0; border-bottom: 1px solid #e8e8e8; }
.pd-tabs { }
.pd-tabs__nav {
  display: flex; justify-content: center; gap: 0;
}
.pd-tab-btn {
  padding: 16px 32px; background: none; border: none;
  font-family: 'Jost', sans-serif;
  font-size: 16px; font-weight: 400; color: #999;
  cursor: pointer; position: relative;
  transition: color 0.18s; letter-spacing: 0.01em;
}
.pd-tab-btn::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: #1A1A1A; transform: scaleX(0);
  transition: transform 0.22s;
}
.pd-tab-btn.active { color: #1A1A1A; font-weight: 700; }
.pd-tab-btn.active::after { transform: scaleX(1); }

.pd-tabs__content { padding: 40px 0 60px; }
.pd-tab-panel { display: none; }
.pd-tab-panel.active { display: block; }

.pd-description-body {
  font-size: 15px; color: #555; line-height: 1.9;
}
.pd-description-body strong, .pd-description-body b { color: #1A1A1A; }
.pd-description-body h3 { font-size: 18px; font-weight: 700; color: #1A1A1A; margin: 28px 0 10px; }
.pd-description-body ul { padding-left: 20px; }
.pd-description-body ul li { margin-bottom: 6px; }

/* ── Content block rendering ── */
.cb-render {
  display: grid;
  gap: 40px;
  margin: 40px 0;
  align-items: center;
}
/* Image LEFT — text right */
.cb-render--left { grid-template-columns: 1fr 1fr; }
/* Image RIGHT — text left */
.cb-render--right { grid-template-columns: 1fr 1fr; }
/* Image TOP — text below */
.cb-render--top  { grid-template-columns: 1fr; }
/* Image BOTTOM — text above */
.cb-render--bottom { grid-template-columns: 1fr; }

.cb-render__img img {
  width: 100%; border-radius: 4px; display: block;
  object-fit: cover; max-height: 440px;
}
.cb-render__heading {
  font-family: 'Jost', sans-serif;
  font-size: 20px; font-weight: 700; color: #1A1A1A; margin: 0 0 14px;
}
.cb-render__body {
  font-size: 15px; color: #555; line-height: 1.85;
}

@media (max-width: 700px) {
  .cb-render--left,
  .cb-render--right { grid-template-columns: 1fr; }
  /* On mobile, image always goes above text */
  .cb-render--right .cb-render__text { order: 2; }
  .cb-render--right .cb-render__img  { order: 1; }
}

/* ── Related products slider ── */
.pd-related { padding-bottom: 60px; }
.pd-related__title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500; text-align: center;
  color: #1A1A1A; margin-bottom: 32px;
}
.pd-rel-slider-wrap {
  position: relative; overflow: hidden;
  padding: 0 40px;
}
.pd-rel-slider {
  display: flex;
  transition: transform 0.38s cubic-bezier(0.25,0.46,0.45,0.94);
}
.pd-rel-card { flex: 0 0 25%; padding: 0 8px; }
@media (max-width: 900px) { .pd-rel-card { flex: 0 0 50%; } }
@media (max-width: 480px) { .pd-rel-card { flex: 0 0 100%; } }
.pd-rel-card__img {
  display: block; position: relative;
  background: #f5f5f5; border-radius: 4px; overflow: hidden;
  aspect-ratio: 3/4; margin-bottom: 12px;
}
.pd-rel-card__img img { width: 100%; height: 100%; object-fit: cover; }
.pd-rel-sale-ribbon {
  position: absolute; top: 14px; right: -22px;
  background: #e02020; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 5px 30px; transform: rotate(45deg); width: 80px;
  text-align: center; transform-origin: center;
  transform: rotate(45deg) translate(16%, -60%);
}
.pd-rel-card__body { text-align: center; }
.pd-rel-card__name {
  display: block; font-size: 14px; font-weight: 600; color: #1A1A1A;
  text-decoration: none; margin-bottom: 6px;
}
.pd-rel-card__name:hover { text-decoration: underline; }
.pd-rel-card__prices { display: flex; align-items: center; justify-content: center; gap: 8px; }
.pd-rel-price-now { font-size: 14px; font-weight: 700; color: #1A1A1A; }
.pd-rel-price-old { font-size: 13px; color: #aaa; text-decoration: line-through; }

.pd-rel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 1px solid #ddd;
  font-size: 22px; line-height: 1; color: #555;
  cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: border-color 0.18s;
}
.pd-rel-arrow:hover { border-color: #1A1A1A; color: #1A1A1A; }
.pd-rel-arrow--prev { left: 0; }
.pd-rel-arrow--next { right: 0; }

.pd-rel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.pd-rel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ddd; border: none; cursor: pointer; padding: 0;
  transition: background 0.18s;
}
.pd-rel-dot.active { background: #1A1A1A; }

/* ── Sticky bottom bar ── */
.pd-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid #eee;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 500; padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.28s ease;
}
.pd-sticky-bar.visible { transform: translateY(0); }
.pd-sticky-bar__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.pd-sticky-bar__product { display: flex; align-items: center; gap: 14px; min-width: 0; }
.pd-sticky-bar__img {
  width: 52px; height: 52px; object-fit: cover;
  border-radius: 4px; border: 1px solid #eee; flex-shrink: 0;
}
.pd-sticky-bar__name { font-size: 14px; font-weight: 700; color: #1A1A1A; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px; }
.pd-sticky-bar__prices { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.pd-sticky-price-now { font-size: 14px; font-weight: 700; color: #1A1A1A; }
.pd-sticky-price-old { font-size: 13px; color: #aaa; text-decoration: line-through; }
.pd-sticky-bar__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.pd-qty--sm { border: 1px solid #ddd; border-radius: 4px; }
.pd-qty--sm button { width: 34px; height: 38px; font-size: 16px; background: none; border: none; cursor: pointer; color: #555; }
.pd-qty--sm span { width: 36px; text-align: center; font-size: 15px; font-weight: 600; display: inline-block; }

.pd-btn-atc--sm {
  height: 40px; padding: 0 20px; flex: none;
  background: #1A1A1A; color: #fff; border: 2px solid #1A1A1A;
  font-size: 12px; letter-spacing: 0.1em;
}
.pd-btn-atc--sm:hover:not(:disabled) { background: #333; border-color: #333; }

@media (max-width: 520px) {
  .pd-sticky-bar__product { display: none; }
  .pd-sticky-bar__actions { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE DESIGN
   Works on every screen: mobile (320px+), tablet (768px+),
   laptop (1024px+), desktop (1280px+)
   ══════════════════════════════════════════════════════════════ */

/* ── Mobile nav open state ─────────────────────────────────── */
@media (max-width: 768px) {
  /* Hamburger → show */
  .nav-toggle { display: flex !important; }

  /* Nav links: hidden by default, shown as vertical dropdown below header */
  #nav-links {
    display: none;
    position: fixed;
    top: 64px;           /* default: below normal header */
    left: 0; right: 0;
    background: #ffffff;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 8px 0 16px;
    border-bottom: 1px solid #ebebeb;
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
    z-index: 999;
  }
  /* When header has scrolled (homepage with ann-bar): nav drops below header at 44+64=108px */
  body.page-home .site-header.header-visible ~ * #nav-links.open,
  body.page-home #nav-links.open {
    top: 102px; /* mobile: ann-bar (38) + header (64) */
  }
  body.page-home .site-header:not(.header-visible) #nav-links.open {
    top: 64px; /* no ann-bar, just header height */
  }
  #nav-links.open { display: flex !important; }
  #nav-links li    { width: 100%; }
  #nav-links li a  {
    display: block;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #333 !important;
    border-bottom: 1px solid #f5f5f5;
    letter-spacing: 0.06em;
  }
  #nav-links li:last-child a { border-bottom: none; }
  #nav-links li a:hover { color: var(--accent) !important; background: #fafafa; }

  /* Homepage: when header is transparent, mobile nav overlay also uses dark bg */
  body.page-home .site-header:not(.header-visible) #nav-links.open {
    background: rgba(10,10,10,0.96);
    border-bottom-color: rgba(255,255,255,0.1);
  }
  body.page-home .site-header:not(.header-visible) #nav-links.open li a {
    color: #ffffff !important;
    border-bottom-color: rgba(255,255,255,0.08);
  }
  body.page-home .site-header:not(.header-visible) #nav-links.open li a:hover {
    color: var(--accent) !important;
    background: rgba(255,255,255,0.05);
  }

  /* Announcement bar: smaller on mobile */
  .announcement-bar { height: 38px; }
  .ann-track        { font-size: 9.5px; }

  /* Nav socials: hide in desktop header on mobile (inside mobile menu instead) */
  .nav-socials { display: none; }

  /* Container padding */
  .container { padding: 0 16px; }

  /* Sections */
  .section { padding: 48px 0; }
  .section--products,
  .section--collections { padding-top: 48px; padding-bottom: 48px; }

  /* Hero content */
  .hero-pos { padding: 80px 20px 100px; }
  .hero-pos .hero-content { max-width: 100%; }
  .hero-title {
    font-size: clamp(2rem, 9vw, 3.2rem) !important;
    line-height: 1.1 !important;
  }
  .hero-subtitle  { font-size: 14px; margin-bottom: 24px; }
  .btn-hero-primary,
  .btn-hero-secondary { padding: 12px 24px; font-size: 10px; }
  .hero-cta-group { gap: 10px; }

  /* Why section: 2 columns on mobile, 1 on tiny screens */
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card { padding: 28px 16px; }
  .why-title { font-size: 12px; }
  .why-desc  { font-size: 12px; }

  /* Section headings */
  .section-header--catier { margin-bottom: 28px; }
  .section-header--catier .section-title { font-size: 1.2rem !important; }
  .testimonial-heading__title { font-size: 1.2rem !important; }
  .inspiration-heading { font-size: 1.2rem !important; }

  /* Featured grid: 2-col on mobile */
  .featured-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    overflow-x: visible !important;
  }

  /* Collection grid v2: 2 columns */
  .collection-grid-v2 { gap: 16px; }
  .collection-grid-v2 .collection-item {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }

  /* Collection editorial: stacked */
  .coll-editorial__grid { grid-template-columns: 1fr; }
  .coll-ed-main         { min-height: 320px; }
  .coll-ed-main__content { bottom: 32px; left: 24px; right: 24px; }
  .coll-ed-main__title  { font-size: 1.4rem; }
  .coll-ed-stack        { grid-template-rows: 1fr 1fr; }
  .coll-ed-item         { min-height: 180px; }

  /* Product cols grid: stacked */
  .product-cols-grid { grid-template-columns: 1fr; }
  .product-col-list  { border-right: none; border-bottom: 1px solid #efefef; padding: 0 0 24px; margin-bottom: 24px; }
  .product-col-list:last-child { border-bottom: none; margin-bottom: 0; }

  /* Brand banner */
  .brand-banner { padding: 60px 0; }
  .brand-banner__title { font-size: clamp(1.4rem, 6vw, 2rem) !important; }

  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 28px 20px 24px; }

  /* Inspiration */
  .inspiration-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-newsletter { flex-direction: column; gap: 8px; }

  /* Product detail */
  .pd-wrap { grid-template-columns: 1fr; gap: 24px; }
  .pd-atc-row { gap: 8px; }
  .pd-tabs__nav { gap: 0; }
  .pd-tab-btn { padding: 14px 16px; font-size: 14px; }

  /* Related slider cards */
  .pd-rel-card { flex: 0 0 60%; }

  /* Checkout */
  .checkout-grid-2col { grid-template-columns: 1fr !important; gap: 0 !important; }
}

/* ── Tiny screens (≤ 480px) ────────────────────────────────── */
@media (max-width: 480px) {
  .nav-container { padding: 0 14px; }
  .container     { padding: 0 14px; }
  .nav-logo      { font-size: 15px !important; }

  /* Nav icon spacing */
  .nav-actions { gap: 12px; }

  /* Why section: single column */
  .why-grid { grid-template-columns: 1fr; }

  /* Hero text */
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.6rem) !important; }

  /* Product grid */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }

  /* Collection grid: still 2-col but tighter */
  .collection-grid-v2 .collection-item {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
  }
  .collection-grid-v2 { gap: 12px; }

  /* Collection editorial */
  .coll-ed-main { min-height: 260px; }

  /* Hero scroll hint: hide on tiny screens */
  .hero-scroll-hint { display: none; }

  /* Brand banner */
  .brand-banner { padding: 48px 0; }

  /* Cart sidebar: full width on tiny screens */
  .cart-sidebar { width: 100% !important; }

  /* Newsletter popup */
  .nl-popup__modal { padding: 40px 18px 32px; }
}

/* ── Tablet (768px – 1023px) ────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1023px) {
  .container { padding: 0 20px; }

  /* Featured grid: 2 columns on tablet */
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Collection grid v2: 3 columns */
  .collection-grid-v2 .collection-item {
    flex: 0 0 calc(33.333% - 13px);
    max-width: calc(33.333% - 13px);
  }

  /* Why section: 2 columns on small tablet, 4 on larger tablet */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Product cols: 2 columns */
  .product-cols-grid { grid-template-columns: 1fr 1fr; }
  .product-col-list:last-child { display: none; } /* hide 3rd column on tablet */

  /* Testimonials: 2 columns */
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }

  /* Inspiration: 2 columns */
  .inspiration-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer: 2 columns */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Hero content */
  .hero-pos { padding: 100px 40px 120px; }
  .hero-title { font-size: clamp(2.6rem, 6vw, 5rem) !important; }

  /* Product detail */
  .pd-wrap { gap: 32px; }
}

/* ── Checkout page responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

/* ── Non-homepage: sticky header with announcement bar ────── */
body:not(.page-home) .site-header {
  /* Already sticky from earlier rule — ensure z-index is correct */
  z-index: 1000 !important;
}

/* ── Scroll-top button: keep above bottom bar on mobile ────── */
@media (max-width: 768px) {
  .scroll-top-btn { bottom: 80px; right: 16px; }
  .toast-container { right: 12px; bottom: 12px; }
  .toast { min-width: auto; font-size: 13px; padding: 12px 14px; }
}

/* ── Product detail: mobile tab scrolling ──────────────────── */
@media (max-width: 600px) {
  .pd-tabs__nav { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .pd-tab-btn   { white-space: nowrap; flex-shrink: 0; }
  .pd-rel-card  { flex: 0 0 75%; }
  .pd-rel-card:last-child { margin-right: 20px; }
}

/* ── Image sizing fixes across the site ────────────────────── */
img { max-width: 100%; height: auto; }
.product-card__image img { height: 100%; width: 100%; object-fit: cover; }

/* ── Promo marquee on mobile: smaller text ─────────────────── */
@media (max-width: 480px) {
  .promo-marquee { padding: 8px 0; }
  .promo-track   { font-size: 10px !important; }
}

/* ══════════════════════════════════════════════════════════════
   PAGE LOADER — Perfume Bottle Animation
══════════════════════════════════════════════════════════════ */

/* ── Keyframes ────────────────────────────────────────────── */
@keyframes ldrFadeOut {
  0%   { opacity: 1; pointer-events: auto; }
  85%  { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}

@keyframes ldrBottleRise {
  0%   { opacity: 0; transform: translateY(60px) scale(0.82); }
  60%  { opacity: 1; transform: translateY(-8px) scale(1.02); }
  80%  { transform: translateY(4px) scale(0.99); }
  100% { opacity: 1; transform: translateY(0)   scale(1); }
}

@keyframes ldrBottleSway {
  0%,100% { transform: rotate(0deg); }
  20%     { transform: rotate(-3deg); }
  50%     { transform: rotate(2deg); }
  75%     { transform: rotate(-1.5deg); }
}

@keyframes ldrShimmerSweep {
  0%   { transform: translateX(-160px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(160px);  opacity: 0; }
}

@keyframes ldrBrandIn {
  0%   { opacity: 0; letter-spacing: 0.5em; }
  100% { opacity: 1; letter-spacing: 0.22em; }
}

@keyframes ldrSubIn {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes ldrDot {
  0%,80%,100% { transform: scale(0.6); opacity: 0.3; }
  40%         { transform: scale(1.15); opacity: 1; }
}

@keyframes ldrGlowPulse {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50%     { opacity: 0.8; transform: scale(1.15); }
}

/* Spray particle keyframes — each flies in a unique direction */
@keyframes ldrP1  { 0%{opacity:0;transform:translate(0,0) scale(0)} 10%{opacity:1} 100%{opacity:0;transform:translate(-68px,-52px) scale(0.3)} }
@keyframes ldrP2  { 0%{opacity:0;transform:translate(0,0) scale(0)} 15%{opacity:0.9} 100%{opacity:0;transform:translate(-42px,-75px) scale(0.2)} }
@keyframes ldrP3  { 0%{opacity:0;transform:translate(0,0) scale(0)} 12%{opacity:0.8} 100%{opacity:0;transform:translate(-88px,-30px) scale(0.25)} }
@keyframes ldrP4  { 0%{opacity:0;transform:translate(0,0) scale(0)} 8%{opacity:0.7} 100%{opacity:0;transform:translate(-55px,-90px) scale(0.15)} }
@keyframes ldrP5  { 0%{opacity:0;transform:translate(0,0) scale(0)} 20%{opacity:1} 100%{opacity:0;transform:translate(-30px,-65px) scale(0.35)} }
@keyframes ldrP6  { 0%{opacity:0;transform:translate(0,0) scale(0)} 10%{opacity:0.6} 100%{opacity:0;transform:translate(-75px,-18px) scale(0.2)} }
@keyframes ldrP7  { 0%{opacity:0;transform:translate(0,0) scale(0)} 18%{opacity:0.8} 100%{opacity:0;transform:translate(-48px,-105px) scale(0.1)} }
@keyframes ldrP8  { 0%{opacity:0;transform:translate(0,0) scale(0)} 14%{opacity:0.9} 100%{opacity:0;transform:translate(-20px,-80px) scale(0.28)} }
@keyframes ldrP9  { 0%{opacity:0;transform:translate(0,0) scale(0)} 16%{opacity:0.7} 100%{opacity:0;transform:translate(-95px,-45px) scale(0.18)} }
@keyframes ldrP10 { 0%{opacity:0;transform:translate(0,0) scale(0)} 12%{opacity:1} 100%{opacity:0;transform:translate(-62px,-118px) scale(0.12)} }
@keyframes ldrP11 { 0%{opacity:0;transform:translate(0,0) scale(0)} 20%{opacity:0.65} 100%{opacity:0;transform:translate(-35px,-40px) scale(0.3)} }
@keyframes ldrP12 { 0%{opacity:0;transform:translate(0,0) scale(0)} 10%{opacity:0.85} 100%{opacity:0;transform:translate(-80px,-70px) scale(0.22)} }

/* ── Loader shell ─────────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #07090f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: opacity;
}

/* Background subtle radial glow */
#page-loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 48%, rgba(26, 65, 120, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

/* Fade-out class added by JS */
#page-loader.ldr-hide {
  animation: ldrFadeOut 0.75s ease forwards;
}
#page-loader.ldr-gone {
  display: none;
}

/* ── Spray particles ──────────────────────────────────────── */
.ldr-particles {
  position: absolute;
  /* Position origin at atomizer nozzle tip (approx center of bottle, upper portion) */
  top: calc(50% - 118px);
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
}
.ldr-p {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,160,48,0.95) 0%, rgba(200,160,48,0.3) 60%, transparent 100%);
  opacity: 0;
  will-change: transform, opacity;
}

/* Sizes vary for organic feel */
.ldr-p1  { width:12px; height:12px; animation: ldrP1  1.6s 0.85s ease-out infinite; }
.ldr-p2  { width: 8px; height: 8px; animation: ldrP2  1.8s 0.95s ease-out infinite; }
.ldr-p3  { width:10px; height:10px; animation: ldrP3  1.5s 0.90s ease-out infinite; }
.ldr-p4  { width: 6px; height: 6px; animation: ldrP4  2.0s 1.05s ease-out infinite; }
.ldr-p5  { width:14px; height:14px; animation: ldrP5  1.7s 0.80s ease-out infinite; }
.ldr-p6  { width: 7px; height: 7px; animation: ldrP6  1.4s 1.10s ease-out infinite; }
.ldr-p7  { width: 5px; height: 5px; animation: ldrP7  2.1s 0.92s ease-out infinite; }
.ldr-p8  { width: 9px; height: 9px; animation: ldrP8  1.9s 0.88s ease-out infinite; }
.ldr-p9  { width: 6px; height: 6px; animation: ldrP9  1.6s 1.00s ease-out infinite; }
.ldr-p10 { width: 5px; height: 5px; animation: ldrP10 2.2s 0.97s ease-out infinite; }
.ldr-p11 { width:11px; height:11px; animation: ldrP11 1.5s 0.83s ease-out infinite; }
.ldr-p12 { width: 7px; height: 7px; animation: ldrP12 1.8s 1.02s ease-out infinite; }

/* ── Glow aura (on SVG element) ───────────────────────────── */
.ldr-glow-aura {
  animation: ldrGlowPulse 2.4s 0.6s ease-in-out infinite;
  transform-origin: 80px 200px;
}

/* ── Bottle wrapper ──────────────────────────────────────── */
.ldr-bottle-wrap {
  position: relative;
  animation: ldrBottleRise 0.9s cubic-bezier(0.34,1.56,0.64,1) 0.15s both;
  transform-origin: bottom center;
}

.ldr-bottle {
  width: 160px;
  height: auto;
  animation: ldrBottleSway 3.8s 1.2s ease-in-out infinite;
  transform-origin: bottom center;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)) drop-shadow(0 0 30px rgba(180,220,255,0.25)) drop-shadow(0 0 15px rgba(200,160,48,0.2));
}

/* ── Shimmer sweep (inside bottle body) ─────────────────── */
.ldr-shimmer {
  animation: ldrShimmerSweep 2.8s 1.0s ease-in-out infinite;
  transform-origin: center;
}

/* ── Brand text ──────────────────────────────────────────── */
.ldr-brand {
  margin-top: 32px;
  text-align: center;
  animation: ldrSubIn 0.7s 0.9s ease both;
}

.ldr-brand-name {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #f0d080;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 6px;
  animation: ldrBrandIn 1.1s 0.95s cubic-bezier(0.22,1,0.36,1) both;
}

.ldr-brand-sub {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(200,170,100,0.6);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
  animation: ldrSubIn 0.8s 1.3s ease both;
}

/* ── Loading dots ─────────────────────────────────────────── */
.ldr-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  animation: ldrSubIn 0.6s 1.5s ease both;
}

.ldr-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(200,160,48,0.7);
  animation: ldrDot 1.2s ease-in-out infinite;
}
.ldr-dots span:nth-child(2) { animation-delay: 0.18s; }
.ldr-dots span:nth-child(3) { animation-delay: 0.36s; }

/* ── Mobile adjustments ───────────────────────────────────── */
@media (max-width: 480px) {
  .ldr-bottle { width: 120px; }
  .ldr-brand-name { font-size: 12px; }
}
