/* ═══════════════════════════════════════════════════════════
   N&H BEAUTY — style.css
   Luxury Cinematic Dark Theme
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --black:       #080808;
  --dark:        #111111;
  --dark2:       #161216;
  --card:        #1a1619;
  --card2:       #201c20;
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(201,168,76,0.3);

  --rose:        #b76e79;
  --rose-light:  #d4a0a7;
  --rose-dark:   #8f4e58;
  --gold:        #c9a84c;
  --gold-light:  #e8c96e;
  --gold-dim:    rgba(201,168,76,0.15);
  --cream:       #f5ede8;

  --txt:         #e8e0da;
  --txt-muted:   #847a7a;
  --txt-dim:     #5a5254;

  --ff-head:     'Playfair Display', Georgia, serif;
  --ff-sub:      'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Inter', system-ui, sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;

  --shadow-gold: 0 0 40px rgba(201,168,76,0.18);
  --shadow-rose: 0 0 30px rgba(183,110,121,0.25);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);
  --shadow-deep: 0 20px 80px rgba(0,0,0,0.8);

  --trans:       all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --trans-fast:  all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--txt);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

body.menu-open { overflow: hidden; }

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--ff-body);
}

/* ─── Utility: Container ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ─── Section Spacing ─── */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

.section-dark {
  background: var(--dark2);
}

/* ─── Section Header ─── */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--rose-light);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--txt-muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

/* ─── Scroll reveal classes ─── */
.reveal-up,
.reveal-fade,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  transition-delay: var(--d, 0s);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-fade  { transform: none; }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ──────────────────────────────────────────────────────────
   COOKIE BANNER
──────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(600px, calc(100vw - 32px));
  background: var(--card2);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(20px);
  transition: var(--trans);
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-content i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.cookie-content p {
  flex: 1;
  font-size: 0.85rem;
  color: var(--txt-muted);
  min-width: 200px;
}
.cookie-content p a { color: var(--rose-light); }
.cookie-btns {
  display: flex;
  gap: 10px;
}
.btn-cookie-accept {
  background: var(--gold);
  color: #000;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 50px;
  transition: var(--trans-fast);
}
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-decline {
  font-size: 0.82rem;
  color: var(--txt-dim);
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: var(--trans-fast);
}
.btn-cookie-decline:hover { color: var(--txt); border-color: var(--txt-muted); }

/* ──────────────────────────────────────────────────────────
   NAVBAR
──────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.5s ease, box-shadow 0.5s ease, padding 0.4s ease;
  padding: 24px 0;
}
#navbar.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.6);
  padding: 14px 0;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
}
.logo-nh {
  font-family: var(--ff-head);
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-amp {
  color: var(--gold);
  font-style: italic;
}
.logo-word {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold);
  align-self: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: var(--trans-fast);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-cta-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #000;
  background: var(--gold);
  padding: 9px 20px;
  border-radius: 50px;
  transition: var(--trans-fast);
  white-space: nowrap;
}
.nav-cta-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: var(--trans);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ──────────────────────────────────────────────────────────
   MOBILE OVERLAY
──────────────────────────────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
}
.mobile-overlay.open { transform: translateX(0); }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--txt-muted);
  transition: var(--trans-fast);
  padding: 8px;
}
.mobile-close:hover { color: #fff; }

.mobile-logo-big {
  font-family: var(--ff-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.mobile-logo-big span { color: var(--gold); font-style: italic; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mobile-link {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: var(--trans-fast);
  padding: 4px 0;
}
.mobile-link:hover { color: #fff; }
.mobile-cta {
  margin-top: 16px;
  font-size: 0.85rem;
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: #000;
  padding: 14px 36px;
  border-radius: 50px;
  transition: var(--trans-fast);
}
.mobile-cta:hover { background: var(--gold-light); color: #000; }

.mobile-social-row {
  display: flex;
  gap: 24px;
}
.mobile-social-row a {
  font-size: 1.3rem;
  color: var(--txt-muted);
  transition: var(--trans-fast);
}
.mobile-social-row a:hover { color: var(--gold); }

/* ──────────────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Media layer */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.45) saturate(0.8);
}

/* Static hero background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1503236823255-94609f598e71?auto=format&fit=crop&w=1920&q=70');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.4) saturate(0.85);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0%   { transform: scale(1) translateY(0); }
  100% { transform: scale(1.06) translateY(-12px); }
}

/* Cinematic CSS atmosphere (always present, blends over video) */
.hero-atmo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(183,110,121,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(201,168,76,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 0%, rgba(0,0,0,0.6) 0%, transparent 50%),
    linear-gradient(180deg, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.7) 100%);
  animation: atmoShift 12s ease-in-out infinite alternate;
}
@keyframes atmoShift {
  0%   { opacity: 0.9; filter: hue-rotate(0deg); }
  50%  { opacity: 1; }
  100% { opacity: 0.85; filter: hue-rotate(8deg); }
}

/* Vignette */
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(8,8,8,0.85) 100%);
  z-index: 1;
}

/* Film grain */
.film-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Letterbox bars */
.letterbox-top,
.letterbox-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  background: var(--black);
  z-index: 3;
  transition: height 1.2s cubic-bezier(0.77,0,0.175,1);
}
.letterbox-top    { top: 0; height: 0; }
.letterbox-bottom { bottom: 0; height: 0; }
.letterbox-open .letterbox-top,
.letterbox-open .letterbox-bottom { height: 40px; }

/* Particle canvas */
#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 clamp(20px, 6vw, 80px);
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  background: rgba(201,168,76,0.06);
  backdrop-filter: blur(10px);
}

.hero-logo-big {
  font-family: var(--ff-head);
  font-size: clamp(5rem, 16vw, 11rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  position: relative;
}
.hero-n, .hero-h {
  color: #fff;
  display: inline-block;
  text-shadow: 0 0 80px rgba(255,255,255,0.1);
}
.hero-amp {
  color: var(--gold);
  font-style: italic;
  display: inline-block;
  animation: ampGlow 3s ease-in-out infinite alternate;
  text-shadow: 0 0 40px rgba(201,168,76,0.6);
}
@keyframes ampGlow {
  0%   { text-shadow: 0 0 30px rgba(201,168,76,0.5); }
  100% { text-shadow: 0 0 80px rgba(201,168,76,0.9), 0 0 120px rgba(201,168,76,0.4); }
}

.hero-brand-word {
  font-family: var(--ff-body);
  font-size: clamp(0.7rem, 2vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.6em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.hero-tagline {
  font-family: var(--ff-sub);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero-tagline em {
  color: var(--rose-light);
  font-style: italic;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 50px;
  transition: var(--trans);
  box-shadow: 0 6px 30px rgba(201,168,76,0.35);
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 50px rgba(201,168,76,0.55);
  transform: translateY(-2px);
}
.btn-hero-primary i { transition: transform 0.3s ease; }
.btn-hero-primary:hover i { transform: translateX(4px); }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: var(--trans);
}
.btn-hero-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}
.hero-trust i { color: var(--gold); margin-right: 4px; }
.trust-divider { opacity: 0.3; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue-text {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}
.scroll-cue-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(0.6); opacity: 0.2; }
}

/* ──────────────────────────────────────────────────────────
   TICKER
──────────────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  display: inline-block;
  padding: 0 48px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #000;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

/* ──────────────────────────────────────────────────────────
   CATEGORIES
──────────────────────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) repeat(1, 1fr) repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 14px;
}
/* Fragrance card spans 2 rows */
.cat-tall {
  grid-row: span 2;
  grid-column: 3;
}
/* Reorder on the grid */
.cat-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.cat-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.cat-card.cat-tall    { grid-column: 3; grid-row: 1 / span 2; }
.cat-card:nth-child(4) { grid-column: 4; grid-row: 1; }
.cat-card:nth-child(5) { grid-column: 5; grid-row: 1; }

/* Two lower cards span cols 1-2 and 4-5 */
@media (min-width: 900px) {
  .cat-card:nth-child(4) { grid-column: 4; grid-row: 1; }
  .cat-card:nth-child(5) { grid-column: 5; grid-row: 1; }
}

.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  display: block;
  aspect-ratio: 3/4;
}
.cat-tall { aspect-ratio: unset; }

.cat-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: brightness(0.65) saturate(0.9);
}
.cat-card:hover .cat-img-wrap img {
  transform: scale(1.08);
  filter: brightness(0.5) saturate(1.1);
}
.cat-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.3) 50%,
    transparent 100%
  );
}

.cat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  z-index: 2;
}
.cat-icon {
  display: block;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--trans);
}
.cat-card:hover .cat-icon { opacity: 1; transform: none; }

.cat-info h3 {
  font-family: var(--ff-head);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.cat-info p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.cat-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--trans);
}
.cat-card:hover .cat-arrow {
  opacity: 1;
  transform: none;
}
.cat-card:hover .cat-arrow:hover {
  background: var(--gold);
  color: #000;
}

/* ──────────────────────────────────────────────────────────
   CAROUSEL
──────────────────────────────────────────────────────────── */
.carousel-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--r-md);
  flex: 1;
}
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  background: rgba(201,168,76,0.05);
  z-index: 2;
}
.carousel-arrow:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.carousel-arrow:disabled {
  opacity: 0.2;
  pointer-events: none;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.cdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--trans);
}
.cdot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

/* ─── Product Card (Carousel) ─── */
.prod-card {
  flex: 0 0 calc((100% - 3 * 20px) / 4);
  min-width: 0;
  background: var(--card);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: var(--trans);
}
.prod-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(201,168,76,0.92);
  color: #000;
  letter-spacing: 0.04em;
}
.badge-new  { background: rgba(183,110,121,0.92); color: #fff; }
.badge-sale { background: rgba(22,22,22,0.92); color: var(--gold); border: 1px solid var(--gold); }
.badge-pop  { background: rgba(255,255,255,0.1); color: #fff; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); }

.prod-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.92);
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }

.prod-hover-layer {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--trans);
}
.prod-card:hover .prod-hover-layer { opacity: 1; }
.prod-quick {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--trans-fast);
  transform: translateY(8px);
  transition: transform 0.3s ease, background 0.2s ease;
}
.prod-card:hover .prod-quick { transform: none; }
.prod-quick:hover { background: var(--gold-light); }

.prod-body {
  padding: 18px;
}
.prod-brand {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.prod-name {
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}
.prod-stars {
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.prod-stars span {
  color: var(--txt-dim);
  font-size: 0.68rem;
  margin-left: 4px;
}
.prod-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.prod-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.prod-was {
  font-size: 0.82rem;
  color: var(--txt-dim);
  text-decoration: line-through;
}
.prod-save {
  font-size: 0.7rem;
  font-weight: 700;
  color: #2ecc71;
  background: rgba(46,204,113,0.1);
  padding: 2px 7px;
  border-radius: 4px;
}
.prod-ctas {
  display: flex;
  gap: 8px;
}
.btn-amz {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  border-radius: var(--r-sm);
  font-size: 0.72rem;
  font-weight: 600;
  background: #ff9900;
  color: #000;
  transition: var(--trans-fast);
  letter-spacing: 0.03em;
}
.btn-amz:hover { background: #ffad33; }
.btn-ebay {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border-radius: var(--r-sm);
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--txt-muted);
  background: var(--card2);
  transition: var(--trans-fast);
}
.btn-ebay:hover { border-color: var(--gold); color: var(--gold); }

/* ──────────────────────────────────────────────────────────
   EDITORIAL
──────────────────────────────────────────────────────────── */
.editorial-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.ed-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
}
.ed-large {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 500px;
}
.ed-small {
  grid-column: 2;
  min-height: 240px;
}
.ed-img-wrap {
  position: absolute;
  inset: 0;
}
.ed-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.6) saturate(0.9);
}
.ed-card:hover .ed-img-wrap img {
  transform: scale(1.05);
  filter: brightness(0.5) saturate(1.1);
}
.ed-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.95) 0%,
    rgba(8,8,8,0.4) 40%,
    transparent 70%
  );
}
.ed-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(20px,3vw,36px);
  z-index: 2;
}
.ed-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.ed-text h3 {
  font-family: var(--ff-head);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}
.ed-small .ed-text h3 { font-size: clamp(1rem, 1.8vw, 1.25rem); }
.ed-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
  font-weight: 300;
  display: none;
}
.ed-large .ed-text p { display: block; }
.ed-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans-fast);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
}
.ed-link:hover { color: var(--gold-light); gap: 12px; }

/* ──────────────────────────────────────────────────────────
   BEST SELLERS GRID
──────────────────────────────────────────────────────────── */
.filter-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.ftab {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt-muted);
  padding: 9px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  transition: var(--trans);
}
.ftab:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.ftab.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pgrid-card {
  background: var(--card);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: var(--trans);
}
.pgrid-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.pgrid-card.hidden { display: none; }

.pgrid-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(201,168,76,0.92);
  color: #000;
}
.pgrid-badge.badge-staff { background: rgba(183,110,121,0.92); color: #fff; }
.pgrid-badge.badge-viral { background: rgba(255,80,0,0.9); color: #fff; }
.pgrid-badge.badge-deal  { background: #111; color: var(--gold); border: 1px solid var(--gold); }

.pgrid-img {
  aspect-ratio: 1;
  overflow: hidden;
}
.pgrid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.9);
}
.pgrid-card:hover .pgrid-img img { transform: scale(1.04); }

.pgrid-body {
  padding: 20px;
}
.pgrid-brand {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 7px;
}
.pgrid-body h3 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 8px;
}
.pgrid-stars {
  font-size: 0.78rem;
  color: #fbbf24;
  margin-bottom: 12px;
}
.pgrid-stars span {
  color: var(--txt-dim);
  font-size: 0.72rem;
  margin-left: 4px;
}
.pgrid-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.p-now {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.p-was {
  font-size: 0.83rem;
  color: var(--txt-dim);
  text-decoration: line-through;
}
.p-save {
  font-size: 0.7rem;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  padding: 2px 8px;
  border-radius: 4px;
}
.pgrid-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pgbtn-amz {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 700;
  background: #ff9900;
  color: #000;
  letter-spacing: 0.04em;
  transition: var(--trans-fast);
}
.pgbtn-amz:hover { background: #ffb733; box-shadow: 0 4px 20px rgba(255,153,0,0.4); }
.pgbtn-ebay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--txt-muted);
  background: var(--card2);
  transition: var(--trans-fast);
}
.pgbtn-ebay:hover { border-color: var(--gold); color: var(--gold); }

/* Affiliate Disclosure */
.aff-disclosure {
  margin-top: 48px;
  padding: 18px 22px;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--r-md);
  font-size: 0.8rem;
  color: var(--txt-dim);
  line-height: 1.6;
  text-align: center;
}
.aff-disclosure i { color: var(--gold); margin-right: 8px; }
.aff-disclosure strong { color: var(--txt-muted); }

/* ──────────────────────────────────────────────────────────
   ABOUT / BRAND STORY
──────────────────────────────────────────────────────────── */
.about-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) 0;
}
.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.7);
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.95) 0%,
    rgba(8,8,8,0.7) 50%,
    rgba(8,8,8,0.9) 100%
  );
}
.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-text .section-eyebrow { opacity: 1; animation: none; }
.about-text .section-title { text-align: left; }
.about-text p {
  font-size: 1rem;
  color: var(--txt-muted);
  margin-bottom: 18px;
  font-weight: 300;
  line-height: 1.8;
}
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--trans);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #000;
  box-shadow: var(--shadow-gold);
}
.btn-outline-gold i { transition: transform 0.3s ease; }
.btn-outline-gold:hover i { transform: translateX(4px); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--trans);
}
.stat-box:hover {
  background: var(--gold-dim);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
}
.stat-num {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--txt-muted);
  text-transform: uppercase;
}

/* ──────────────────────────────────────────────────────────
   NEWSLETTER
──────────────────────────────────────────────────────────── */
.newsletter-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(183,110,121,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(201,168,76,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.newsletter-box {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 60px);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
}
.nl-deco {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
  animation: spin 8s linear infinite;
  display: inline-block;
}
@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.nl-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin: 12px 0 16px;
  line-height: 1.2;
}
.nl-title em { color: var(--rose-light); font-style: italic; }
.nl-sub {
  font-size: 0.95rem;
  color: var(--txt-muted);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.7;
}
.nl-form { width: 100%; }
.nl-input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  transition: border-color 0.3s ease;
}
.nl-input-row:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.nl-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: #fff;
}
.nl-input::placeholder { color: var(--txt-dim); }
.nl-submit {
  background: var(--gold);
  color: #000;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 24px;
  border-radius: 50px;
  transition: var(--trans-fast);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nl-submit:hover { background: var(--gold-light); box-shadow: 0 4px 20px rgba(201,168,76,0.4); }
.nl-legal {
  font-size: 0.72rem;
  color: var(--txt-dim);
}
.nl-legal a { color: var(--rose-light); }
.nl-success {
  padding: 16px 20px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: var(--r-md);
  color: #4ade80;
  font-size: 0.9rem;
  margin-top: 16px;
}
.nl-success i { margin-right: 8px; }
.nl-social {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.nl-social p {
  font-size: 0.75rem;
  color: var(--txt-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.nl-social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.soc-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--txt-muted);
  transition: var(--trans);
}
.soc-icon:hover {
  border-color: var(--rose);
  color: var(--rose-light);
  background: rgba(183,110,121,0.1);
  transform: translateY(-3px);
}

/* ──────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────────── */
#footer {
  background: #060606;
  border-top: 1px solid var(--border);
}
.footer-main {
  padding: clamp(48px, 6vw, 80px) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
}
.footer-brand-col p {
  font-size: 0.85rem;
  color: var(--txt-dim);
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 260px;
}
.footer-logo {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-logo small {
  font-family: var(--ff-body);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  vertical-align: middle;
  margin-left: 6px;
}
.footer-social-row {
  display: flex;
  gap: 12px;
}
.footer-social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--txt-dim);
  transition: var(--trans-fast);
}
.footer-social-row a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.83rem;
  color: var(--txt-dim);
  transition: var(--trans-fast);
  display: inline-block;
}
.footer-col a:hover { color: var(--gold); transform: translateX(4px); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: var(--txt-dim);
  line-height: 1.6;
}
.footer-trust-badges {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.footer-trust-badges span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--txt-dim);
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-trust-badges i { color: var(--gold); }

/* ──────────────────────────────────────────────────────────
   KEYFRAMES (misc)
──────────────────────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────────────────── */

/* Tablet: ≤ 1100px */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta-btn { display: none; }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-tall {
    grid-column: 1 / span 2;
    grid-row: auto;
    aspect-ratio: 16/7;
  }
  .cat-card:nth-child(n) { grid-column: auto; grid-row: auto; }

  .prod-card {
    flex: 0 0 calc((100% - 2 * 20px) / 3);
  }

  .editorial-grid { grid-template-columns: 1fr; }
  .ed-large { min-height: 400px; }
  .ed-small { min-height: 220px; }

  .pgrid { grid-template-columns: repeat(2, 1fr); }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-text .section-title { text-align: center; }
  .about-text { text-align: center; }
  .about-text .btn-outline-gold { margin: 0 auto; }
  .about-stats { grid-template-columns: repeat(4, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand-col { grid-column: 1 / span 2; }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  .hero-logo-big { font-size: clamp(4rem, 20vw, 7rem); }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .cat-card { aspect-ratio: 3/4; }
  .cat-tall {
    grid-column: 1 / span 2;
    aspect-ratio: 16/9;
  }

  .carousel-arrow { display: none; }
  .prod-card { flex: 0 0 calc((100% - 20px) / 2); }

  .pgrid { grid-template-columns: 1fr; }

  .about-stats { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-trust-badges { justify-content: center; }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-ghost { justify-content: center; }
  .hero-trust { font-size: 0.68rem; gap: 6px; }
  .trust-divider { display: none; }

  .prod-card { flex: 0 0 calc(100% - 16px); }

  .nl-input-row { flex-direction: column; padding: 12px; border-radius: var(--r-md); }
  .nl-submit { border-radius: var(--r-md); width: 100%; justify-content: center; }

  .about-stats { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
}
