/* ============================================================
   HAMDAN PERFUMES — Landing Page Styles
   Black + gold, luxury/modern. Mobile-first.
   ============================================================ */

:root {
  --black-primary: #0A0A0A;
  --black-secondary: #141414;
  --gold-primary: #C9A24B;
  --gold-bright: #E8C874;
  --gold-deep: #8A6D2F;
  --text-primary: #EDEDED;
  --text-muted: #9A9A9A;
  --gold-gradient: linear-gradient(135deg, #8A6D2F, #C9A24B, #E8C874);

  --line: rgba(201, 162, 75, 0.18);
  --line-soft: rgba(255, 255, 255, 0.06);

  --font-display: "Cinzel", "Trajan Pro", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --nav-h: 72px;
  --maxw: 1400px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--black-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0; line-height: 1.15; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }

/* Gradient gold — for LARGE headings only (>40px), hero, buttons-on-hover */
.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gold-flat { color: var(--gold-primary); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin: 0 0 18px;
}

/* ---------- Diamond divider (logo motif) ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 28px auto;
}
.divider .line {
  height: 1px;
  width: min(120px, 22vw);
  background: linear-gradient(90deg, transparent, var(--gold-primary));
}
.divider .line:last-child {
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}
.divider .diamond {
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  background: var(--gold-gradient);
  box-shadow: 0 0 14px rgba(201, 162, 75, 0.5);
  flex: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), background 0.4s var(--ease),
    color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

/* Primary — solid gold gradient on hover */
.btn-primary {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid var(--gold-primary);
}
.btn-primary:hover {
  background: var(--gold-gradient);
  color: #1a1206;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(201, 162, 75, 0.25);
}

/* Ghost — subtle */
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--line-soft);
}
.btn-ghost:hover {
  border-color: var(--gold-primary);
  color: var(--gold-bright);
}

.btn-block { width: 100%; }
.btn-sm { padding: 12px 18px; font-size: 11px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo .wordmark {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.28em;
  color: var(--gold-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--gold-gradient);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after { width: 100%; }

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

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: color 0.3s var(--ease);
}
.cart-btn:hover { color: var(--gold-bright); }
.cart-btn svg { width: 24px; height: 24px; }
.cart-badge {
  position: absolute;
  top: -8px; right: -10px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold-gradient);
  color: #1a1206;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s var(--ease);
}
.cart-badge.show { transform: scale(1); }

.menu-toggle { display: none; color: var(--text-primary); }
.menu-toggle svg { width: 26px; height: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 24px) 24px 60px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 38%, rgba(201, 162, 75, 0.16), transparent 70%),
    radial-gradient(ellipse 90% 60% at 50% 120%, rgba(138, 109, 47, 0.14), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--black-primary));
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero-logo {
  height: 190px;
  width: auto;
  margin: 0 auto 8px;
  object-fit: contain;
  filter: drop-shadow(0 8px 40px rgba(201, 162, 75, 0.18));
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.hero p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 30ch;
  margin: 0 auto 36px;
}
.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-hint span {
  width: 3px; height: 8px;
  border-radius: 2px;
  background: var(--gold-primary);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 0; }
}

/* ============================================================
   BRAND STATEMENT
   ============================================================ */
.brand-statement { text-align: center; }
.brand-statement .wrap { max-width: 820px; }
.brand-statement h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.brand-statement p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 62ch;
  margin: 0 auto;
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  letter-spacing: 0.03em;
}
.section-head p {
  color: var(--text-muted);
  margin-top: 12px;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.products { background: var(--black-primary); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.card {
  position: relative;
  background: var(--black-secondary);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
}
.card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0d0d0d;
}
.media-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel-link {
  display: block;
  width: 100%;
  height: 100%;
}
.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
}
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.card:hover .carousel-slide img { transform: scale(1.05); }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(201, 162, 75, 0.22);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 3;
}
.media-carousel:hover .carousel-btn,
.media-carousel:focus-within .carousel-btn {
  opacity: 1;
  pointer-events: auto;
}
.carousel-btn:hover { transform: translateY(-50%) scale(1.04); }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.carousel-dot.active {
  background: var(--gold-primary);
  transform: scale(1.2);
}
.card-cat {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(4px);
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-name {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.card-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 2.7em;
}
.card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid var(--line-soft);
}
.card-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-primary);
}
.card-price .cur { font-size: 0.9rem; opacity: 0.8; }
.card-size { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.1em; }
.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

/* ============================================================
   FEATURED (full-width split)
   ============================================================ */
.featured { background: var(--black-secondary); padding: 0; }
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.featured-media { position: relative; overflow: hidden; }
.featured-media .media-carousel {
  width: 100%;
  height: 100%;
}
.featured-media .carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.featured-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(20, 20, 20, 0.6));
}
.featured-text {
  padding: clamp(40px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-text h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.featured-text .lede {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 46ch;
}
.notes-list { display: grid; gap: 18px; margin-bottom: 32px; }
.note-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.note-row .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
}
.note-row .val { color: var(--text-primary); font-size: 0.98rem; }
.featured-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 26px;
}
.featured-price .amt {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-primary);
}
.featured-price .amt .cur { font-size: 1.2rem; }
.featured-price .size { color: var(--text-muted); letter-spacing: 0.14em; font-size: 0.85rem; }
.featured-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--black-primary); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi {
  position: relative;
  padding: 40px 32px 32px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: var(--black-secondary);
}
.testi .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 8px;
}
.testi p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 22px;
}
.testi .who { display: flex; flex-direction: column; gap: 2px; }
.testi .name {
  font-family: var(--font-display);
  color: var(--gold-primary);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.testi .role { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.08em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--black-secondary);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 84px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; max-width: 38ch; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin: 6px 0 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.footer-col a { color: var(--text-muted); font-size: 0.95rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-bright); }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.socials a:hover { color: var(--gold-bright); border-color: var(--gold-primary); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; margin: 0; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  z-index: 200;
}
.overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(440px, 100%);
  background: var(--black-secondary);
  border-left: 1px solid var(--line);
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 26px 20px;
  border-bottom: 1px solid var(--line-soft);
}
.cart-header h3 {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--gold-primary);
}
.cart-close { color: var(--text-muted); transition: color 0.3s var(--ease); }
.cart-close:hover { color: var(--gold-bright); }
.cart-close svg { width: 24px; height: 24px; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 26px;
}
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cart-item img {
  width: 64px; height: 80px;
  object-fit: cover;
  border-radius: 3px;
}
.ci-info { display: flex; flex-direction: column; gap: 4px; }
.ci-name { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.02em; }
.ci-size { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.1em; }
.ci-price { color: var(--gold-primary); font-size: 0.95rem; margin-top: 2px; }
.ci-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  overflow: hidden;
}
.qty button {
  width: 30px; height: 30px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.qty button:hover { color: var(--gold-bright); }
.qty span { min-width: 26px; text-align: center; font-size: 0.9rem; }
.ci-remove {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}
.ci-remove:hover { color: #d98a6a; }

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 8px;
  color: var(--text-muted);
}
.cart-empty svg { width: 48px; height: 48px; color: var(--gold-deep); margin-bottom: 8px; }
.cart-empty p { margin: 0; }

.cart-footer {
  padding: 22px 26px 26px;
  border-top: 1px solid var(--line);
}
.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cart-total .lbl { letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.8rem; color: var(--text-muted); }
.cart-total .amt { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold-primary); }
.cart-note {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 14px 0 0;
  text-align: center;
}
.cart-footer .clear {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}
.cart-footer .clear:hover { color: #d98a6a; }
.wa-icon { width: 18px; height: 18px; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(14px);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  gap: 8px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.3s var(--ease);
}
.mobile-menu a:hover { color: var(--gold-bright); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint span { animation: none; }
  .card:hover, .card:hover .card-media img { transform: none; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translate(-50%, 20px);
  z-index: 300;
  background: var(--black-secondary);
  border: 1px solid var(--gold-primary);
  color: var(--text-primary);
  padding: 14px 24px;
  border-radius: 3px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s var(--ease);
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast .tick { color: var(--gold-bright); margin-right: 8px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .featured-inner { grid-template-columns: 1fr; }
  .featured-media { min-height: 420px; }
  .featured-media::after { background: linear-gradient(180deg, transparent 60%, rgba(20,20,20,0.85)); }
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .product-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .nav-logo .wordmark { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .card-actions { grid-template-columns: 1fr; }
}

/* ============================================================
   ACCESSIBILITY — visible keyboard focus
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Card image + name become links to the product page */
.card-media { display: block; cursor: pointer; }
.card-name a { color: inherit; transition: color 0.3s var(--ease); }
.card:hover .card-name a { color: var(--gold-bright); }
.card-name a:hover { color: var(--gold-bright); }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.pdp { padding-top: var(--nav-h); }

/* ---------- Breadcrumb ---------- */
.pdp-crumb {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 30px 0 6px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pdp-crumb a { color: var(--text-muted); transition: color 0.3s var(--ease); }
.pdp-crumb a:hover { color: var(--gold-bright); }
.pdp-crumb .sep { color: var(--gold-deep); }
.pdp-crumb .current { color: var(--gold-primary); }

/* ---------- Main split ---------- */
.pdp-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 5vw, 76px);
  padding: 26px 0 40px;
  align-items: start;
}

/* ---------- Gallery ---------- */
.pdp-gallery {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 16px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.pdp-gallery:has(.pdp-stage:only-child) { grid-template-columns: 1fr; }

.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pdp-thumb {
  position: relative;
  width: 90px;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  overflow: hidden;
  background: #0d0d0d;
  padding: 0;
  opacity: 0.6;
  transition: opacity 0.35s var(--ease), border-color 0.35s var(--ease);
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb:hover { opacity: 1; border-color: var(--line); }
.pdp-thumb.active { opacity: 1; border-color: var(--gold-primary); }

.pdp-stage { position: relative; }
.pdp-stage-btn {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse 70% 60% at 50% 42%, rgba(201, 162, 75, 0.08), transparent 72%),
    #0d0d0d;
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  overflow: hidden;
  padding: clamp(18px, 4vw, 46px);
  cursor: zoom-in;
}
.pdp-stage-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
  transition: transform 0.6s var(--ease);
}
.pdp-stage-btn:hover img { transform: scale(1.03); }
.pdp-cat {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(4px);
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  pointer-events: none;
}
.pdp-zoom {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.pdp-zoom svg { width: 18px; height: 18px; }
.pdp-stage-btn:hover .pdp-zoom,
.pdp-stage-btn:focus-visible .pdp-zoom { opacity: 1; transform: translateY(0); }
.pdp-counter {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid var(--line-soft);
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* ---------- Info column ---------- */
.pdp-info { padding-top: 6px; }
.pdp-info .eyebrow { margin-bottom: 14px; }
.pdp-name {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  text-wrap: balance;
}
.pdp-lede {
  color: var(--text-primary);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  max-width: 46ch;
  margin: 0 0 30px;
}

.pdp-buy {
  padding: 26px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.pdp-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.pdp-price .amt {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.4rem);
  color: var(--gold-primary);
  line-height: 1;
}
.pdp-price .amt .cur { font-size: 0.7em; opacity: 0.8; margin-right: 1px; }
.pdp-spec {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pdp-actions {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
}

/* ---------- Facts strip ---------- */
.pdp-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 28px 0;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
}
.pdp-facts .fact {
  background: var(--black-primary);
  padding: 18px 16px;
  text-align: center;
}
.pdp-facts dt {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 7px;
}
.pdp-facts dd {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* ---------- Notes ---------- */
.pdp-notes { margin: 30px 0 26px; }
.pdp-notes-title {
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

/* ---------- Reassurance ---------- */
.pdp-reassure {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.pdp-reassure svg {
  width: 18px; height: 18px;
  color: var(--gold-primary);
  flex: none;
  margin-top: 2px;
}

/* ---------- Not found ---------- */
.pdp-missing {
  text-align: center;
  padding: clamp(60px, 12vw, 130px) 0;
  max-width: 560px;
  margin: 0 auto;
}
.pdp-missing h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}
.pdp-missing p { color: var(--text-muted); margin: 0 auto 30px; max-width: 44ch; }

/* ---------- Related ---------- */
.pdp-related { padding-top: 40px; }
.pdp-related .product-grid { grid-template-columns: repeat(3, 1fr); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(8px, 3vw, 32px);
  padding: clamp(20px, 5vw, 60px);
  background: rgba(6, 6, 6, 0.94);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.lb-img {
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  transform: scale(0.96);
  transition: transform 0.45s var(--ease);
}
.lightbox.open .lb-img { transform: scale(1); }
.lb-close {
  position: absolute;
  top: clamp(16px, 3vw, 30px);
  right: clamp(16px, 3vw, 30px);
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lb-close:hover { color: var(--gold-bright); border-color: var(--gold-primary); }
.lb-close svg { width: 22px; height: 22px; }
.lb-nav {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.4);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.lb-nav:hover { color: var(--gold-bright); border-color: var(--gold-primary); background: rgba(20, 20, 20, 0.8); }
.lb-nav svg { width: 24px; height: 24px; }
.lb-counter {
  position: absolute;
  bottom: clamp(16px, 3vw, 30px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

/* ============================================================
   PRODUCT PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .pdp-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pdp-gallery { position: static; top: auto; }
  .pdp-info { max-width: 640px; }
  .pdp-related .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  /* Thumbnails move below the stage as a horizontal strip */
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-thumbs {
    flex-direction: row;
    order: 2;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .pdp-thumb { width: 72px; flex: none; }
  .pdp-stage { order: 1; }
  .pdp-actions { grid-template-columns: 1fr; }
  .pdp-related .product-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .lightbox { grid-template-columns: 1fr; }
  .lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .lb-prev { left: 14px; }
  .lb-next { right: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .pdp-stage-btn:hover img { transform: none; }
  .lb-img { transition: none; transform: none; }
  .lightbox.open .lb-img { transform: none; }
}

/* ============================================================
   REVIEWS CAROUSEL
   ============================================================ */
.reviews-carousel {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 14px;
}
.reviews-viewport {
  --per: 3;
  --gap: 28px;
  flex: 1;
  min-width: 0;
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px;
  margin: -4px;
}
.reviews-viewport::-webkit-scrollbar { display: none; }

.reviews-viewport .testi {
  flex: 0 0 calc((100% - (var(--per) - 1) * var(--gap)) / var(--per));
  scroll-snap-align: start;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.reviews-viewport .testi .quote-mark { margin-top: 4px; }
.reviews-viewport .testi p { margin-bottom: 22px; }
.reviews-viewport .testi .who { margin-top: auto; }
.reviews-viewport .testi .role .on { color: var(--gold-primary); opacity: 0.85; }

/* Stars */
.testi-stars { display: flex; gap: 5px; margin-bottom: 18px; }
.testi-stars .star {
  width: 16px;
  height: 16px;
  fill: rgba(201, 162, 75, 0.2);
}
.testi-stars .star.on { fill: var(--gold-primary); }

/* Arrows */
.rev-arrow {
  flex: none;
  align-self: center;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--black-secondary);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.rev-arrow:hover {
  color: var(--gold-bright);
  border-color: var(--gold-primary);
  background: rgba(20, 20, 20, 0.9);
}
.rev-arrow svg { width: 22px; height: 22px; }
.reviews-carousel.no-controls .rev-arrow { display: none; }
.reviews-carousel.no-controls .reviews-viewport { justify-content: center; }

/* Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}
.rev-dot {
  position: relative;
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: var(--line);
  transition: width 0.4s var(--ease), background 0.4s var(--ease);
}
.rev-dot::before { content: ""; position: absolute; inset: -9px; }
.rev-dot.active { width: 24px; background: var(--gold-primary); }

@media (max-width: 900px) {
  .reviews-viewport { --per: 2; --gap: 20px; }
}
@media (max-width: 600px) {
  .reviews-viewport { --per: 1; }
  .rev-arrow { display: none; } /* swipe + dots on small screens */
}
