﻿/* ===== TRUDERMAL NZ — MATCHING TRUDERMALCO.COM STYLES ===== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

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

:root {
  --bg:        #faf8f7;
  --bg-alt:    #f5f1ee;
  --bg-dark:   #2c2c2c;
  --text:      #2c2c2c;
  --text-mute: #626262;
  --text-light:#c5c1be;
  --border:    #e8e2dc;
  --white:     #ffffff;
  --black:     #1a1a1a;
  --gold:      #c9a96e;
  --gold-lt:   #e8d5b0;
  --radius:    0px;
  --radius-sm: 4px;
  --max:       1200px;
  --font:      'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 400; line-height: 1.2; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 400; line-height: 1.25; }
h3 { font-size: 1.1rem; font-weight: 500; }
h4 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }
.section--cream { background: var(--bg); }
.section--dark { background: var(--bg-dark); color: var(--white); }
.section--white { background: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  text-align: center;
}
.btn--primary { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--primary:hover { background: #333; border-color: #333; }
.btn--outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn--outline:hover { background: var(--text); color: var(--white); }
.btn--outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--text); }
.btn--lg { padding: 16px 40px; font-size: 0.85rem; }
.btn--full { width: 100%; display: block; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement {
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
  padding: 11px 16px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.announcement a { color: var(--white); text-decoration: underline; }
.announcement--scroll { overflow: hidden; white-space: nowrap; padding: 0; }
.announcement__track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
  padding: 11px 0;
}
.announcement__track span { padding-right: 0; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}
.nav__logo img { height: 52px; width: auto; margin: -12px 0; }
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.15s;
  white-space: nowrap;
}
.nav__links a:hover { color: #666; }
.nav__links .dropdown { position: relative; }
.nav__links .dropdown:hover .dropdown__menu { display: block; }
.dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 0;
  min-width: 240px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  z-index: 300;
}
.dropdown__menu a {
  display: block;
  padding: 10px 24px;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.dropdown__menu a:hover { background: var(--bg-alt); }
.nav__actions { display: flex; gap: 8px; align-items: center; }
.nav__icon { display: flex; align-items: center; }
.nav__icon img { height: 20px; width: auto; }
.nav__search { background: none; border: none; cursor: pointer; padding: 8px; display: flex; align-items: center; color: var(--text); }
.nav__search svg { width: 20px; height: 20px; }

/* ===== HERO (VIDEO SECTION) ===== */
.hero {
  position: relative;
  background: var(--bg-alt);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero--video {
  min-height: 70vh;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero__content h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; margin-bottom: 20px; }
.hero__content p { color: rgba(255,255,255,0.9); font-size: 1rem; max-width: 520px; margin: 0 auto 32px; }
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 3;
  backdrop-filter: blur(4px);
  font-size: 0;
  color: transparent;
}
.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent rgba(255,255,255,0.9);
  margin-left: 4px;
}
.play-btn:hover { background: rgba(255,255,255,0.25); }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 36px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item img { height: 52px; width: auto; }
.trust-item__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.3;
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h4 { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-mute); max-width: 520px; margin: 0 auto; font-size: 0.9rem; }

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: var(--white);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); }
.product-card__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: 16px;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.03); }
.product-card__body { padding: 12px 0 24px; flex: 1; display: flex; flex-direction: column; }
.product-card__body .btn { margin-top: auto; }
.product-card__name { font-size: 0.9rem; font-weight: 500; margin-bottom: 6px; line-height: 1.4; }
.product-card__desc { font-size: 0.8rem; color: var(--text-mute); margin-bottom: 12px; line-height: 1.5; }
.product-card__price { font-size: 0.9rem; font-weight: 500; margin-bottom: 12px; }
.product-card__price s { color: var(--text-mute); font-weight: 400; }
.product-card__badge {
  display: inline-block;
  background: var(--text);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--bg-alt);
  padding: 32px;
}
.testimonial-card__stars { color: var(--text); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card__body { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-card__author { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); }

/* ===== FEATURES LIST ===== */
.features-list { }
.features-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.features-list li:last-child { border-bottom: none; }
.features-list__icon { color: var(--text); font-style: normal; flex-shrink: 0; margin-top: 1px; font-size: 0.8rem; }

/* ===== SPECS TABLE ===== */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:first-child td { border-top: 1px solid var(--border); }
.specs-table td { padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.specs-table td:first-child { font-weight: 500; width: 42%; color: var(--text-mute); }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 20px 0;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; font-weight: 300; flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item__body { padding-bottom: 20px; color: var(--text-mute); font-size: 0.875rem; line-height: 1.75; }

/* ===== PRODUCT HERO ===== */
.product-hero { padding: 48px 0 0; background: var(--white); }
.product-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-hero__gallery { position: sticky; top: 80px; }
.product-hero__main-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: 12px;
}
.product-hero__main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-hero__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.product-hero__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-alt);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s;
}
.product-hero__thumb.active { border-color: var(--text); }

/* Gallery arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border: none;
  background: rgba(255,255,255,0.85);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
  transition: background 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.gallery-arrow:hover { background: #fff; }
.gallery-arrow--prev { left: 12px; }
.gallery-arrow--next { right: 12px; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 2000;
  cursor: zoom-out;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 92vh; object-fit: contain; }
.product-hero__thumb img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }

.product-hero__info { padding-top: 8px; }
.product-hero__eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 12px; }
.product-hero__title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 400; margin-bottom: 16px; line-height: 1.2; }
.product-hero__price { font-size: 1.4rem; font-weight: 500; margin-bottom: 6px; }
.product-hero__tagline { color: var(--text-mute); font-size: 0.875rem; margin-bottom: 24px; }
.product-hero__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  color: var(--text-mute);
  background: var(--white);
}
.badge--dark { background: var(--text); color: var(--white); border-color: var(--text); }
.product-hero__guarantees {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.guarantee-item { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-mute); }
.product-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

/* ===== MODE CARDS ===== */
.mode-card {
  background: var(--bg-alt);
  padding: 28px;
}
.mode-card__num { font-size: 0.65rem; font-weight: 600; color: var(--text-mute); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.mode-card h3 { margin-bottom: 10px; font-size: 1rem; }
.mode-card p { font-size: 0.83rem; color: var(--text-mute); margin-bottom: 14px; }
.mode-card__wavelengths { display: flex; gap: 6px; flex-wrap: wrap; }
.mode-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--white);
  color: var(--text-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 16px 0; font-size: 0.78rem; color: var(--text-mute); }
.breadcrumb a { color: var(--text-mute); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { margin: 0 6px; }

/* ===== BEFORE/AFTER STRIP ===== */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.ba-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-alt);
  border-radius: 8px;
}
.ba-item img { width: 100%; height: 100%; object-fit: cover; }

/* ===== NEWSLETTER ===== */
.newsletter { text-align: center; }
.newsletter__form { display: flex; gap: 0; justify-content: center; margin-top: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter__input {
  padding: 14px 20px;
  border: 1px solid var(--text);
  border-right: none;
  font-size: 0.85rem;
  font-family: var(--font);
  flex: 1;
  background: var(--white);
  outline: none;
}
.newsletter__input::placeholder { color: var(--text-mute); }
.newsletter__form .btn { padding: 14px 28px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-alt);
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__logo { margin-bottom: 16px; }
.footer__logo img { height: 28px; width: auto; }
.footer__tagline { font-size: 0.8rem; color: var(--text-mute); line-height: 1.65; max-width: 260px; }
.footer__col h5 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; color: var(--text); margin-bottom: 18px; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { font-size: 0.8rem; color: var(--text-mute); transition: color 0.15s; }
.footer__col ul li a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy { font-size: 0.75rem; color: var(--text-mute); }
.footer__social { display: flex; gap: 20px; }
.footer__social a { font-size: 0.75rem; color: var(--text-mute); letter-spacing: 0.05em; transition: color 0.15s; }
.footer__social a:hover { color: var(--text); }
.footer__logo-img { height: 40px; width: auto; margin-bottom: 16px; }

/* ===== HOMEPAGE SECTIONS ===== */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.category-card { position: relative; overflow: hidden; aspect-ratio: 2/3; cursor: pointer; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover img { transform: scale(1.04); }
.category-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  color: var(--white);
}
.category-card__label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; opacity: 0.8; }
.category-card__title { font-size: 1.2rem; font-weight: 400; margin-bottom: 12px; }
.category-card__link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
}

/* ===== ICON FEATURES ===== */
.icon-feature { text-align: center; padding: 20px 12px; }
.icon-feature img { height: 56px; width: auto; margin: 0 auto 16px; }
.icon-feature h3 { font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.icon-feature p { font-size: 0.8rem; color: var(--text-mute); line-height: 1.55; }

/* ===== MEDIA QUOTE STRIP ===== */
.media-strip { overflow: hidden; padding: 40px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.media-strip__inner { display: flex; gap: 0; }
.media-quote { padding: 24px 40px; border-right: 1px solid var(--border); flex: 1; }
.media-quote:last-child { border-right: none; }
.media-quote__text { font-size: 0.83rem; line-height: 1.65; font-style: italic; color: var(--text-mute); margin-bottom: 10px; }
.media-quote__source { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* ===== STEP LIST ===== */
.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }
.step-item__num { font-size: 1.8rem; font-weight: 300; color: var(--text-light); line-height: 1; flex-shrink: 0; width: 40px; }
.step-item__title { font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }
.step-item__desc { font-size: 0.85rem; color: var(--text-mute); line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .grid-2, .grid-3, .grid-4, .product-hero__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .hero--video { min-height: 50vh; }
  .section { padding: 56px 0; }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: 1fr; gap: 8px; }
  .category-card { aspect-ratio: 4/3; }
  .trust-strip__inner { gap: 0; }
  .trust-item { padding: 6px 16px; }
  .media-strip__inner { flex-direction: column; }
  .media-quote { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .newsletter__form { flex-direction: column; }
  .newsletter__input { border-right: 1px solid var(--text); border-bottom: none; }
  .hero__content h1 { font-size: 1.8rem; }
}

/* ===== CART ===== */
.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  color: var(--text);
}
.cart-icon-btn svg { width: 22px; height: 22px; }
.cart-icon-img { width: 22px; height: 22px; object-fit: contain; display: block; }
.cart-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
}

#cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}
#cart-overlay.open { display: block; }

#cart-drawer {
  position: fixed;
  top: 0; right: -480px;
  width: 100%; max-width: 460px;
  height: 100%;
  background: var(--white);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
#cart-drawer.open { right: 0; }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__header h3 { font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-mute);
  padding: 4px 8px;
  line-height: 1;
}
.cart-drawer__close:hover { color: var(--text); }

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-mute);
}
.cart-empty__icon { font-size: 3rem; margin-bottom: 12px; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item__img {
  width: 80px;
  height: 64px;
  flex-shrink: 0;
  background: var(--bg-alt);
  overflow: hidden;
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { flex: 1; }
.cart-item__name { font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; line-height: 1.3; }
.cart-item__price { font-size: 0.85rem; color: var(--text-mute); margin-bottom: 10px; }
.cart-item__controls { display: flex; align-items: center; gap: 8px; }
.cart-qty__btn {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.cart-qty__btn:hover { border-color: var(--text); }
.cart-qty__num { font-size: 0.85rem; font-weight: 500; min-width: 20px; text-align: center; }
.cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--text-mute);
  text-decoration: underline;
  margin-left: 4px;
  font-family: var(--font);
}
.cart-item__remove:hover { color: var(--text); }

.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.cart-drawer__note {
  font-size: 0.75rem;
  color: var(--text-mute);
  margin-bottom: 16px;
  text-align: center;
}

@media (max-width: 480px) {
  #cart-drawer { max-width: 100%; }
}

/* ===== SEE IT IN ACTION (video) ===== */
.video-feature { position: relative; }
.video-feature__poster {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
}
.video-feature__poster img { width: 100%; height: 100%; object-fit: cover; }
.video-feature__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.18);
  transition: background 0.2s;
}
.video-feature__poster:hover .video-feature__play { background: rgba(0,0,0,0.32); }
.video-feature__play span {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-feature__play span::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-left: 22px solid var(--text);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 6px;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.is-open { display: flex; }
.video-modal video { width: 100%; max-width: 960px; max-height: 86vh; background: #000; }
.video-modal__close {
  position: absolute;
  top: 20px; right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* Stat callouts */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat-grid__num { font-size: clamp(2rem, 5vw, 3rem); font-weight: 300; color: var(--gold, var(--text)); line-height: 1; margin-bottom: 8px; }
.stat-grid__label { font-size: 0.85rem; color: var(--text-mute); line-height: 1.5; }
@media (max-width: 600px) { .stat-grid { grid-template-columns: 1fr; } }

/* Pricing options (quantity / bundle selector) */
.price-options { display: grid; gap: 10px; margin: 20px 0 4px; }
.price-option { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--border); cursor: pointer; transition: border-color .15s, background .15s; }
.price-option:hover { border-color: var(--text); }
.price-option.is-active { border-color: var(--text); background: var(--bg-alt); }
.price-option input { accent-color: var(--text); width: 16px; height: 16px; }
.price-option__name { font-weight: 600; }
.price-option__price { margin-left: auto; font-weight: 600; }
.price-option__save { font-size: .7rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.price-note { font-size: .72rem; color: var(--text-mute); margin-bottom: 18px; }

/* Two-up image + text feature */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-split img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; }
@media (max-width: 860px) { .feature-split { grid-template-columns: 1fr; gap: 24px; } }
