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

/* ── Google Font Import ──────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── CSS Variables ───────────────────────────────────────────── */
:root {
  --primary:      #1A1A1A;
  --primary-light:#252525;
  --surface-dark: #2A2A2A;
  --accent:       #F8C417;
  --accent-dark:  #E0AA00;
  --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:         'Barlow', 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 #F8C417;
  border-bottom: 1px solid rgba(248,196,23,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(248,196,23,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: #F8C417;
  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: #F8C417;
  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: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.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(248,196,23,0.15);
  border: 1px solid rgba(248,196,23,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(248,196,23,0.12);
  border: 1px solid rgba(248,196,23,0.25);
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 20px;
}

/* Qty + CTA */
.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: #FAF9F7;
  color: #1A1A1A;
}
main { background: #FAF9F7; }

/* Cards and form areas stay pure white for contrast */
.product-card,
.auth-card,
.review-card,
.order-card,
.cart-sidebar,
.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: #333333; }
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.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 — dark (matches live site) */
.btn-add-cart {
  background: #1A1A1A;
  color: #FFFFFF;
}
.btn-add-cart:hover { background: #333333; }

/* 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(248,196,23,0.08);
  border-color: rgba(248,196,23,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 — ensure text inside remains white */
.cart-header h3           { color: #FFFFFF; }
.cart-item__name          { color: #FFFFFF; }
.qty-value                { color: #FFFFFF; }
.cart-totals .row         { color: #CCCCCC; }
.cart-totals .row.total   { color: #FFFFFF; }
.cart-totals .row.discount { color: #28A745; }

/* 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: 'Playfair Display', Georgia, 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: 50% !important;
  transform: translate(-50%, -50%) !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 700px !important;
  padding: 0 24px !important;
}

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

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

.hero-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(42px, 7vw, 80px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.01em !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 ─────────────────────────────────────── */
.why-section {
  background: #0F0F0F;
  padding: 72px 0;
}

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

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

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

.why-card:hover { background: #1A1A1A; }

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

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

.why-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

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

/* ── Section headings: serif upgrade ─────────────────────────── */
.section-title {
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-size: 28px !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 — gold accent bar ───────────────────── */
.collection-card__name {
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-size: 16px !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: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  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: serif touch ────────────────────────────────────── */
.nav-logo {
  font-family: var(--font-serif) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  font-style: italic !important;
  letter-spacing: 0.05em !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: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  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);
}
