/* ═══════════════════════════════════════════════════
   MIEL DORADA — Ultra Modern Redesign
   ═══════════════════════════════════════════════════ */

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

/* ── TOKENS ── */
:root {
  /* Colors */
  --gold:        hsl(38, 90%, 55%);
  --gold-bright: hsl(45, 100%, 65%);
  --gold-deep:   hsl(30, 85%, 40%);
  --amber:       hsl(32, 92%, 48%);
  --cream:       hsl(40, 100%, 97%);
  --cream-2:     hsl(40, 80%, 93%);
  --dark:        hsl(30, 60%, 6%);
  --dark-2:      hsl(30, 50%, 10%);
  --dark-3:      hsl(30, 40%, 15%);
  --text:        hsl(30, 40%, 20%);
  --text-muted:  hsl(30, 25%, 45%);
  --white:       #FFFFFF;

  /* Glow */
  --glow-gold: 0 0 40px hsla(38,90%,55%,.35), 0 0 80px hsla(38,90%,55%,.15);
  --glow-sm:   0 0 20px hsla(38,90%,55%,.3);

  /* Radius */
  --r-sm: 12px;
  --r:    20px;
  --r-lg: 28px;
  --r-xl: 40px;

  /* Shadow */
  --shadow:    0 8px 32px rgba(0,0,0,.18);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.30);
  --shadow-xl: 0 40px 100px rgba(0,0,0,.40);

  /* Transition */
  --ease:  cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --t:     0.35s;
  --t-fast:0.2s;

  /* Typography */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
  cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ═══════════════════════════════════════════════════
   CANVAS (behind everything)
   ═══════════════════════════════════════════════════ */
#hexCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .55;
}

/* ═══════════════════════════════════════════════════
   CURSOR GLOW
   ═══════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(38,90%,55%,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.08s linear;
}

/* Custom cursor dot */
body::after {
  content: '';
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
  transition: transform 0.06s linear;
}

/* ═══════════════════════════════════════════════════
   FLYING BEES
   ═══════════════════════════════════════════════════ */
#beesContainer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}

.bee-svg {
  position: absolute;
  width: 36px;
  height: auto;
  filter: drop-shadow(0 0 6px hsla(45,100%,65%,.5));
  will-change: transform;
}

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY HELPERS
   ═══════════════════════════════════════════════════ */
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 20px;
}
.section-title em { color: var(--gold-bright); }
.section-title.dark-txt { color: var(--dark); }
.section-title.dark-txt em { color: var(--amber); }

.tag-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: hsla(38,90%,55%,.12);
  border: 1px solid hsla(38,90%,55%,.35);
  color: var(--gold-bright);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.tag-label.gold { color: var(--gold-bright); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub {
  color: hsla(40,100%,97%,.55);
  font-size: 1rem;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 700;
  font-size: .95rem;
  padding: 15px 34px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform var(--t) var(--ease-spring),
              box-shadow var(--t) var(--ease);
  box-shadow: 0 4px 24px hsla(38,90%,55%,.45);
  position: relative;
  overflow: hidden;
  letter-spacing: .3px;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.btn-primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--glow-gold); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: hsla(40,100%,97%,.08);
  color: var(--cream);
  font-weight: 600;
  font-size: .95rem;
  padding: 15px 34px;
  border-radius: 100px;
  border: 1.5px solid hsla(40,100%,97%,.25);
  cursor: pointer;
  transition: var(--t) var(--ease);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: hsla(40,100%,97%,.15);
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.navbar.scrolled {
  background: hsla(30,60%,6%,.88);
  backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 hsla(38,90%,55%,.2), 0 8px 32px rgba(0,0,0,.4);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--cream);
  flex-shrink: 0;
  transition: color var(--t);
}
.nav-logo em { color: var(--gold-bright); font-style: italic; }
.nav-logo:hover { color: var(--gold-bright); }
.logo-hex svg { transition: transform var(--t) var(--ease-spring); }
.nav-logo:hover .logo-hex svg { transform: rotate(20deg) scale(1.1); }

.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  color: hsla(40,100%,97%,.7);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .4px;
  transition: color var(--t);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--dark);
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform var(--t) var(--ease-spring), box-shadow var(--t);
  flex-shrink: 0;
  box-shadow: 0 3px 14px hsla(38,90%,55%,.4);
}
.btn-nav:hover { transform: translateY(-2px) scale(1.03); box-shadow: var(--glow-sm); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--t) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    hsla(30,60%,6%,.92) 0%,
    hsla(30,50%,10%,.78) 50%,
    hsla(32,70%,20%,.35) 100%
  );
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.5) 100%);
}

/* Glowing orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbPulse 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: hsla(38,90%,55%,.12);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 350px; height: 350px;
  background: hsla(32,80%,40%,.1);
  bottom: -80px; left: 10%;
  animation-delay: 3s;
}
.orb-3 {
  width: 200px; height: 200px;
  background: hsla(45,100%,65%,.08);
  top: 40%; left: 40%;
  animation-delay: 5s;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1) translate(0,0); opacity: .8; }
  50% { transform: scale(1.2) translate(20px,-20px); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 130px 28px 80px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: hsla(38,90%,55%,.12);
  border: 1px solid hsla(38,90%,55%,.4);
  color: var(--gold-bright);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 100px;
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
  animation: fadeDown .8s var(--ease) both;
}
.pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px var(--gold-bright);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 28px;
}

.line-wrap {
  display: block;
  overflow: hidden;
}
.line {
  display: block;
  animation: slideUp .9s var(--ease) both;
}
.line-wrap:nth-child(1) .line { animation-delay: .2s; }
.line-wrap:nth-child(2) .line { animation-delay: .35s; color: var(--gold-bright); font-style: italic; }
.line-wrap:nth-child(3) .line { animation-delay: .5s; }

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.hero-desc {
  font-size: 1.1rem;
  color: hsla(40,100%,97%,.72);
  max-width: 540px;
  margin: 0 auto 40px;
  animation: fadeUp .9s .65s var(--ease) both;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 68px;
  animation: fadeUp .9s .78s var(--ease) both;
}

.hero-stats {
  display: inline-flex;
  gap: 0;
  align-items: center;
  background: hsla(40,100%,97%,.06);
  border: 1px solid hsla(40,100%,97%,.12);
  border-radius: var(--r-xl);
  padding: 22px 44px;
  backdrop-filter: blur(16px);
  animation: fadeUp .9s .9s var(--ease) both;
}
.stat { text-align: center; padding: 0 28px; }
.stat-value {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
}
.stat-label {
  color: hsla(40,100%,97%,.55);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
}
.stat-sep { width: 1px; height: 40px; background: hsla(40,100%,97%,.15); }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: hsla(40,100%,97%,.4);
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s both;
}
.scroll-line {
  width: 1.5px; height: 40px;
  background: linear-gradient(to bottom, hsla(38,90%,55%,.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100%{height:40px;opacity:.4;}
  50%{height:60px;opacity:.8;}
}

/* ═══════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════ */
.marquee-wrap {
  background: linear-gradient(90deg, var(--dark), var(--dark-2), var(--dark));
  overflow: hidden;
  border-top: 1px solid hsla(38,90%,55%,.25);
  border-bottom: 1px solid hsla(38,90%,55%,.25);
  padding: 14px 0;
  position: relative;
  z-index: 2;
}
.marquee-inner {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeRun 30s linear infinite;
}
.marquee-inner span {
  color: hsla(40,100%,97%,.65);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .8px;
  padding: 0 24px;
}
.marquee-inner .sep {
  color: var(--gold);
  padding: 0;
}
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════ */
.about {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 560px;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.about-img-frame img { object-fit: cover; }
.img-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsla(30,60%,6%,.4) 0%, transparent 60%);
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  border: 1px solid hsla(38,90%,55%,.2);
  animation-delay: var(--bd, 0s);
}
.badge-cert { bottom: -28px; right: -28px; }
.badge-since { top: 28px; left: -24px; }
.badge-emoji { font-size: 1.8rem; }
.floating-badge strong { display: block; font-size: .9rem; color: var(--dark); font-weight: 700; }
.floating-badge small { color: var(--text-muted); font-size: .78rem; }

.about-text { padding: 20px 0; }
.about-lead {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-body {
  color: var(--text-muted);
  font-size: .97rem;
  margin-bottom: 36px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: hsla(40,80%,93%,.6);
  border: 1px solid hsla(38,90%,55%,.2);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  transition: var(--t) var(--ease);
}
.feature-item:hover {
  background: hsla(38,90%,55%,.12);
  border-color: var(--gold);
  transform: translateX(4px);
}
.feature-icon { font-size: 1.4rem; flex-shrink: 0; }
.feature-item strong { display: block; font-size: .88rem; color: var(--dark); font-weight: 700; }
.feature-item small { font-size: .78rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════
   BENEFITS
   ═══════════════════════════════════════════════════ */
.benefits {
  padding: 110px 0;
  background: var(--dark-2);
  position: relative;
  z-index: 2;
}
.benefits::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, hsla(38,90%,55%,.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, hsla(32,80%,40%,.05) 0%, transparent 60%);
  pointer-events: none;
}

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

.benefit-card {
  background: hsla(40,100%,97%,.04);
  border: 1px solid hsla(38,90%,55%,.15);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: transform var(--t) var(--ease-spring),
              box-shadow var(--t),
              border-color var(--t),
              background var(--t);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .5s var(--ease);
}
.benefit-card:hover {
  transform: translateY(-10px);
  border-color: hsla(38,90%,55%,.4);
  background: hsla(40,100%,97%,.07);
  box-shadow: 0 20px 50px rgba(0,0,0,.3), var(--glow-sm);
}
.benefit-card:hover::before { transform: scaleX(1); }

.bc-icon { font-size: 2.6rem; margin-bottom: 18px; }
.benefit-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 10px;
}
.benefit-card p { color: hsla(40,100%,97%,.55); font-size: .9rem; line-height: 1.65; }
.bc-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .4s var(--ease);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.benefit-card:hover .bc-line { transform: scaleX(1); }

/* ═══════════════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════════════ */
.products {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
  z-index: 2;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: hsla(38,90%,55%,.08);
  border: 1.5px solid hsla(38,90%,55%,.22);
  color: var(--amber);
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--t) var(--ease);
}
.tab-btn.active,
.tab-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-color: transparent;
  color: var(--dark);
  box-shadow: 0 4px 18px hsla(38,90%,55%,.4);
  transform: translateY(-2px);
}

.tab-panel { display: none; animation: tabIn .4s var(--ease); }
.tab-panel.active { display: block; }
@keyframes tabIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid hsla(38,90%,55%,.15);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform var(--t) var(--ease-spring), box-shadow var(--t);
  position: relative;
}
.product-card.featured {
  border-color: hsla(38,90%,55%,.4);
  box-shadow: 0 4px 24px hsla(38,90%,55%,.15);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px hsla(38,90%,55%,.22), var(--shadow-lg);
}

.product-img-wrap {
  height: 250px;
  position: relative;
  overflow: hidden;
}
.product-img-wrap img { transition: transform .6s var(--ease); }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

/* Shine effect */
.product-shine {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    hsla(40,100%,97%,.15) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform .6s var(--ease);
}
.product-card:hover .product-shine { transform: translateX(100%); }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--dark);
  font-size: .7rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: .5px;
}
.product-badge.new {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}

.product-hover-cta {
  position: absolute;
  inset: 0;
  background: hsla(30,60%,6%,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  backdrop-filter: blur(4px);
}
.product-card:hover .product-hover-cta { opacity: 1; }

.btn-cart {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--dark);
  font-weight: 800;
  font-size: .88rem;
  padding: 13px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform var(--t) var(--ease-spring), box-shadow var(--t);
  box-shadow: var(--glow-sm);
}
.btn-cart:hover { transform: scale(1.08); }

.product-body { padding: 20px 22px; }
.product-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.product-body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 700;
}
.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--amber);
  white-space: nowrap;
}
.product-body p { color: var(--text-muted); font-size: .87rem; margin-bottom: 14px; }
.product-meta { display: flex; justify-content: space-between; align-items: center; }
.rating { color: var(--gold); font-size: .82rem; }
.rating small { color: var(--text-muted); }
.weight {
  background: hsla(40,80%,93%,.8);
  color: var(--text-muted);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ═══════════════════════════════════════════════════
   MERCHANDISING
   ═══════════════════════════════════════════════════ */
.merch {
  padding: 110px 0;
  background: var(--dark);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.merch-noise {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, hsla(38,90%,55%,.09) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 70%, hsla(32,80%,40%,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, hsla(45,100%,65%,.04) 0%, transparent 70%);
  pointer-events: none;
}

.section-title.white { color: var(--cream); }
.section-title.white em { color: var(--gold-bright); }

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

.merch-card {
  background: hsla(40,100%,97%,.04);
  border: 1px solid hsla(38,90%,55%,.2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t) var(--ease-spring),
              border-color var(--t),
              box-shadow var(--t);
  backdrop-filter: blur(8px);
}
.merch-card.hero-card {
  border-color: hsla(38,90%,55%,.4);
  box-shadow: 0 8px 40px hsla(38,90%,55%,.15);
}
.merch-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 24px 70px rgba(0,0,0,.4), var(--glow-sm);
}

.merch-img-wrap {
  height: 290px;
  position: relative;
  overflow: hidden;
}
.merch-img-wrap img { transition: transform .6s var(--ease); }
.merch-card:hover .merch-img-wrap img { transform: scale(1.06); }

.merch-label {
  position: absolute;
  top: 14px; left: 14px;
  background: hsla(38,90%,55%,.88);
  color: var(--dark);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.merch-label.popular { background: hsla(0,75%,55%,.88); color: #fff; }
.merch-label.diy { background: hsla(210,75%,50%,.88); color: #fff; }

.merch-actions-overlay {
  position: absolute; inset: 0;
  background: hsla(30,60%,6%,.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  backdrop-filter: blur(6px);
  padding: 20px;
}
.merch-card:hover .merch-actions-overlay { opacity: 1; }

.size-row { display: flex; gap: 8px; }
.sz {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid hsla(40,100%,97%,.4);
  background: transparent;
  color: var(--cream);
  font-weight: 800;
  font-size: .82rem;
  cursor: pointer;
  transition: var(--t) var(--ease-spring);
}
.sz.active, .sz:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: scale(1.15);
}

.btn-merch {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--dark);
  font-weight: 800;
  font-size: .9rem;
  padding: 13px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform var(--t) var(--ease-spring), box-shadow var(--t);
}
.btn-merch:hover { transform: scale(1.06); box-shadow: var(--glow-sm); }

.merch-body { padding: 22px; }
.merch-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.merch-body h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--gold-bright); line-height: 1.3; margin-bottom: 6px; }
.merch-body p { color: hsla(40,100%,97%,.55); font-size: .84rem; }
.merch-price { font-size: 1.35rem; font-weight: 800; color: var(--gold-bright); white-space: nowrap; }

.color-picker { display: flex; gap: 8px; margin-bottom: 12px; }
.cp {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--t) var(--ease-spring);
}
.cp.active, .cp:hover { border-color: var(--gold-bright); transform: scale(1.25); }

.merch-rating { color: var(--gold); font-size: .83rem; }
.merch-rating small { color: hsla(40,100%,97%,.4); margin-left: 5px; }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.testimonials {
  padding: 110px 0;
  background: var(--cream-2);
  position: relative;
  z-index: 2;
}

.testimonials-slider { max-width: 720px; margin: 0 auto; }

.t-track { position: relative; overflow: hidden; margin-bottom: 32px; }

.t-card {
  display: none;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 44px 52px;
  border: 1px solid hsla(38,90%,55%,.2);
  box-shadow: var(--shadow);
  text-align: center;
  animation: tabIn .5s var(--ease);
}
.t-card.active { display: block; }

.t-stars { color: var(--gold); font-size: 1.3rem; margin-bottom: 18px; }

.t-card p {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.t-author { display: flex; align-items: center; gap: 12px; justify-content: center; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--dark);
  font-weight: 800;
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
}
.t-author strong { display: block; color: var(--dark); font-size: .93rem; }
.t-author small { color: var(--text-muted); font-size: .8rem; }

.t-nav { display: flex; align-items: center; justify-content: center; gap: 16px; }
.t-prev, .t-next {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: hsla(38,90%,55%,.12);
  border: 1.5px solid hsla(38,90%,55%,.3);
  color: var(--amber);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t) var(--ease-spring);
}
.t-prev:hover, .t-next:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: scale(1.1);
}
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 10px; height: 10px;
  border-radius: 100px;
  background: hsla(38,90%,55%,.3);
  border: none; cursor: pointer;
  transition: var(--t) var(--ease-spring);
}
.t-dot.active { background: var(--gold); width: 30px; }

/* ═══════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════ */
.newsletter {
  padding: 110px 0;
  background: var(--dark-2);
  position: relative;
  z-index: 2;
  text-align: center;
  overflow: hidden;
}
.nl-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, hsla(38,90%,55%,.08) 0%, transparent 65%);
  pointer-events: none;
}

.nl-inner { max-width: 580px; margin: 0 auto; position: relative; z-index: 1; }
.nl-icon { font-size: 3.5rem; margin-bottom: 20px; display: block; animation: floatIcon 3s ease-in-out infinite; }
@keyframes floatIcon { 0%,100%{transform:translateY(0) rotate(-5deg);} 50%{transform:translateY(-12px) rotate(5deg);} }

.nl-inner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 14px;
}
.nl-inner h2 em { color: var(--gold-bright); }
.nl-inner p { color: hsla(40,100%,97%,.6); margin-bottom: 36px; }

.nl-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto 16px; }
.nl-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: hsla(40,100%,97%,.08);
  border: 1.5px solid hsla(38,90%,55%,.35);
  border-radius: 100px;
  padding: 0 22px;
  transition: var(--t);
}
.nl-input-wrap:focus-within { border-color: var(--gold); background: hsla(40,100%,97%,.12); }
.nl-input-wrap svg { color: hsla(38,90%,55%,.6); flex-shrink: 0; }
.nl-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--sans);
  font-size: .95rem;
  padding: 14px 0;
  outline: none;
}
.nl-input-wrap input::placeholder { color: hsla(40,100%,97%,.35); }

.nl-form button {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--dark);
  font-weight: 800;
  font-size: .9rem;
  font-family: var(--sans);
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--t) var(--ease-spring), box-shadow var(--t);
}
.nl-form button:hover { transform: translateY(-3px); box-shadow: var(--glow-sm); }

.nl-privacy { color: hsla(40,100%,97%,.35); font-size: .8rem; }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 72px 0 32px;
  border-top: 1px solid hsla(38,90%,55%,.15);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 56px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.footer-brand p { color: hsla(40,100%,97%,.45); font-size: .87rem; line-height: 1.75; margin-bottom: 22px; }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: hsla(40,100%,97%,.07);
  border: 1px solid hsla(40,100%,97%,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--t) var(--ease-spring);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-4px) scale(1.1); }

.footer-col h4 {
  color: var(--gold-bright);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col li { color: hsla(40,100%,97%,.45); font-size: .87rem; margin-bottom: 10px; transition: color var(--t); }
.footer-col li a:hover { color: var(--gold-bright); }

.footer-bottom {
  border-top: 1px solid hsla(40,100%,97%,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: hsla(40,100%,97%,.35);
  font-size: .82rem;
}
.footer-bottom a { color: hsla(40,100%,97%,.35); margin: 0 8px; transition: color var(--t); }
.footer-bottom a:hover { color: var(--gold-bright); }

/* ═══════════════════════════════════════════════════
   CART TOAST + FAB
   ═══════════════════════════════════════════════════ */
.cart-toast {
  position: fixed;
  bottom: 96px; right: 24px;
  background: var(--dark-2);
  border: 1px solid var(--gold);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 500;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px) scale(.95);
  transition: opacity .3s, transform .3s var(--ease-spring);
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.4), var(--glow-sm);
}
.cart-toast.show { opacity: 1; transform: translateY(0) scale(1); }
.toast-icon { font-size: 1.1rem; }

.cart-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border: none;
  border-radius: 50%;
  color: var(--dark);
  cursor: pointer;
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px hsla(38,90%,55%,.5), var(--glow-sm);
  transition: transform var(--t) var(--ease-spring), box-shadow var(--t);
}
.cart-fab:hover { transform: scale(1.15) rotate(-5deg); box-shadow: var(--glow-gold); }

.fab-count {
  position: absolute;
  top: -4px; right: -4px;
  background: #ef4444;
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--dark);
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-up { transform: translateY(48px); }
.reveal-left { transform: translateX(-56px); }
.reveal-right { transform: translateX(56px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════════════ */
@keyframes fadeDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(20px)}  to{opacity:1;transform:translateY(0)} }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: hsla(30,60%,6%,.97);
    padding: 28px;
    gap: 22px;
    z-index: 499;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid hsla(38,90%,55%,.2);
  }
  .nav-links.open a { color: var(--cream); font-size: 1.1rem; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-frame { height: 340px; }
  .badge-cert { bottom: -14px; right: 14px; }
  .badge-since { top: 14px; left: 0; }
  .about-features { grid-template-columns: 1fr; }

  .benefits-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr; }

  .hero-stats { flex-direction: column; gap: 20px; padding: 24px 28px; }
  .stat-sep { width: 80px; height: 1px; }

  .nl-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .t-card { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-pill { font-size: .7rem; padding: 8px 16px; }
}
