/* ==============================================
   JUST GOOD GRIPS — Design System
   Clean, minimal, Wilson-inspired product layout
   ============================================== */

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

/* Eliminate 300ms tap delay on iOS for all interactive elements */
a, button, [role="button"], input, label, select {
  touch-action: manipulation;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ── Tokens ── */
:root {
  --black:      #111111;
  --white:      #ffffff;
  --grey-50:    #f8f8f8;
  --grey-100:   #f0f0f0;
  --grey-200:   #e0e0e0;
  --grey-400:   #9e9e9e;
  --grey-600:   #616161;
  --green:      #c8e617;      /* tennis-ball green accent */
  --green-dark: #aacb0e;
  --gold:       #f5a623;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --shadow-card: 0 2px 8px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-hover: 0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.06);
  --transition:  0.2s ease;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-primary:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.35);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-buy {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  font-size: 0.875rem;
  padding: 10px 20px;
}

.btn-buy:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
}

.btn-buy--featured {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
}

.btn-buy--featured:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

/* ==============================================
   HEADER
   ============================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 24px;
  width: auto;
  display: block;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--black);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}

/* ── Nav ── */
.nav {
  display: flex;
  gap: 28px;
  flex: 1;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-600);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover {
  color: var(--black);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* ── Header actions ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

/* ── Mobile nav toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav drawer ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  border-top: 1px solid var(--grey-100);
  background: var(--white);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-100);
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  background: var(--black);
  background-image: url('images/hero-bg.webp');
  background-size: cover;
  background-position: center 25%;
  color: var(--white);
  padding: 120px 24px 100px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.58)),
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,230,23,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.hero-heading {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-body {
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ==============================================
   ANNOUNCEMENT BAR
   ============================================== */
.announce-bar {
  position: relative;
  z-index: 201;
  background: var(--green);
  color: var(--black);
  text-align: center;
  /* env() handles iPhone notch/Dynamic Island — falls back to 9px on non-notch devices */
  padding: calc(9px + env(safe-area-inset-top, 0px)) 24px 9px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.announce-copy-btn {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 10px;
  background: rgba(0,0,0,0.12);
  border: 1.5px solid rgba(0,0,0,0.2);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--black);
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: background 0.15s;
  vertical-align: middle;
  line-height: 1.6;
}
.announce-copy-btn:hover { background: rgba(0,0,0,0.22); }
.announce-copy-btn.copied {
  background: rgba(0,0,0,0.3);
  letter-spacing: 0.02em;
}

/* ==============================================
   SECTION UTILITIES
   ============================================== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}

.section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.1;
}

.section-sub {
  font-size: 0.875rem;
  color: var(--grey-400);
  margin-top: 6px;
}

.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 12px;
}

.product-count {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--grey-400);
  flex-shrink: 0;
}

/* ==============================================
   PRODUCTS
   ============================================== */
.products-section {
  padding: 80px 0;
}

/* ── Product Grid (Wilson-style) ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Product Card ── */
.product-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow var(--transition),
    transform var(--transition),
    border-color var(--transition);
  box-shadow: var(--shadow-card);
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--grey-100);
}

/* Featured card highlight */
.product-card--featured {
  border-color: var(--grey-200);
}

.product-card--featured::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--green);
}

/* ── Product Image ── */
.product-image-wrap {
  position: relative;
}

.product-image-inner {
  aspect-ratio: 4 / 3;
  background: var(--grey-50);
  overflow: hidden;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.04);
}

/* Image placeholder (shown when img fails or as bg layer) */
.product-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
}

/* Show placeholder when img fails */
.img-fallback .product-image {
  display: none;
}

.img-fallback .product-image-placeholder {
  opacity: 1;
}

.img-fallback .product-image-placeholder svg {
  width: 100%;
  height: 100%;
}

/* ── Product Badge ── */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--grey-100);
  color: var(--grey-600);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.product-badge--featured {
  background: var(--green);
  color: var(--black);
}

/* ── Product Body ── */
.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.product-name {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--black);
}

.product-desc {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 20px;
}

/* ── Product Footer ── */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-100);
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.product-price {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
}

.product-currency {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grey-400);
  letter-spacing: 0.04em;
}

.product-unit {
  font-size: 0.7rem;
  color: var(--grey-400);
  width: 100%;
  margin-top: 2px;
}

/* ── Checkout trust note ── */
.checkout-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 14px 18px;
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  color: var(--grey-600);
  line-height: 1.5;
}

.trust-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--grey-400);
}

/* ── Colour variant row ── */
.product-colour-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}

.colour-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  flex-shrink: 0;
}

.colour-dot--white { background: #ffffff; border: 1.5px solid var(--grey-400); }
.colour-dot--blue  { background: #aed6f1; border: 1.5px solid #8bbdd9; }
.colour-dot--pink  { background: #f1aed6; border: 1.5px solid #d98bbb; }

.product-colour-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey-400);
  letter-spacing: 0.02em;
}

/* ── Coming soon card & button ── */
.product-card--coming-soon {
  opacity: 0.82;
}

.product-card--coming-soon:hover {
  opacity: 1;
}

.product-badge--coming-soon {
  background: #111;
  color: #fff;
  letter-spacing: 0.04em;
}

.product-instore-note {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--grey-600);
  margin-bottom: 12px;
}

.instore-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.instore-link:hover {
  color: #111;
}

.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border: 2px solid #111;
  border-radius: var(--radius-sm);
  background: #111;
  color: #fff;
  cursor: not-allowed;
  white-space: nowrap;
  opacity: 0.45;
}

/* ==============================================
   STORE LOCATIONS
   ============================================== */
.stores-section {
  padding: 80px 0;
  background: var(--grey-50);
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}

.stores-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.stores-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: var(--shadow-card);
}

.store-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
}

.store-address {
  font-size: 0.8125rem;
  color: var(--grey-600);
  line-height: 1.5;
}

.stores-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-card);
}

.stores-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

/* ==============================================
   FEATURES
   ============================================== */
.features-section {
  background: var(--grey-50);
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-title {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.55;
}

/* ==============================================
   REVIEWS CAROUSEL
   ============================================== */
.reviews-section {
  background: var(--black);
  padding: 80px 0 88px;
  overflow: hidden;
}

.reviews-agg {
  text-align: center;
  margin-bottom: 44px;
}
.reviews-heading {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
}
.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.stars--lg { font-size: 1.75rem; letter-spacing: 4px; }
.reviews-count {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

.carousel-outer {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 52px;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}
.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.review-card {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 40px 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
}
.review-card .stars { margin-bottom: 16px; }
.review-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.review-text {
  font-size: 0.9375rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 18px;
}
.review-author {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.review-thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  opacity: 0.6;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  z-index: 2;
  padding: 0;
  color: rgba(255,255,255,0.7);
}
.carousel-arrow:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.carousel-arrow svg   { width: 18px; height: 18px; }
.carousel-arrow--prev { left: 0; }
.carousel-arrow--next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.is-active {
  background: var(--green);
  transform: scale(1.35);
}

/* ── Review submit CTA ──────────────────────────────────────────────────── */
.review-card--more {
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-more-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  transition: opacity var(--transition);
}
.review-more-link:hover { opacity: 0.75; }
.review-more-plus {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  transition: border-color var(--transition);
}
.review-more-link:hover .review-more-plus { border-color: var(--green); color: var(--green); }
.review-more-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.5;
}

/* ── Review submit CTA ──────────────────────────────────────────────────── */
.review-submit-cta {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
}
.review-submit-link {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
}
.review-submit-link:hover { color: var(--green); }

/* ── Review submission modal ────────────────────────────────────────────── */
.review-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.review-modal.is-open { display: flex; }
.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}
.review-modal-panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.review-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--mid);
  padding: 4px 8px;
  line-height: 1;
  transition: color var(--transition);
}
.review-modal-close:hover { color: var(--black); }
.review-modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.review-modal-sub {
  font-size: 0.875rem;
  color: var(--mid);
  margin-bottom: 28px;
}
.review-form-row { margin-bottom: 16px; }
.review-form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}
.review-form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--black);
  box-sizing: border-box;
  transition: border-color var(--transition);
}
.review-form-input:focus {
  outline: none;
  border-color: var(--green);
}
.review-form-textarea {
  resize: vertical;
  min-height: 100px;
}
.review-form-submit { width: 100%; margin-top: 8px; }
.review-form-success {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--black);
  padding: 20px 0;
}

/* placeholder to satisfy old references */
.testimonial-author {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--grey-400);
}

/* ==============================================
   ABOUT
   ============================================== */
.about-section {
  padding: 100px 0;
}

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

.about-visual {
  aspect-ratio: 1;
  max-width: 400px;
}

.about-visual-box {
  width: 100%;
  height: 100%;
  background: var(--grey-50);
  border: 2px solid var(--grey-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.about-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-copy {
  max-width: 500px;
}

.about-copy .section-title {
  margin-bottom: 20px;
}


.about-copy p {
  font-size: 1rem;
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ==============================================
   STOCKIST CTA
   ============================================== */
.stockist-cta-section {
  background: var(--black);
  color: var(--white);
  padding: 56px 0;
}

.stockist-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.stockist-cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.stockist-cta-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.stockist-cta-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  line-height: 1.6;
}

.stockist-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .stockist-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .stockist-cta-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ==============================================
   COMING SOON
   ============================================== */
.coming-soon-section {
  padding: 64px 0;
  background: var(--grey-100);
  border-top: 1px solid var(--grey-200);
}

.coming-soon-header {
  margin-bottom: 32px;
}

.coming-soon-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 6px;
}

.coming-soon-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 6px;
}

.coming-soon-sub {
  font-size: 0.9rem;
  color: var(--grey-500);
}

.coming-soon-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.coming-soon-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  flex: 1 1 220px;
}

.coming-soon-colour-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.coming-soon-colour-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--grey-500);
  white-space: nowrap;
}

.coming-soon-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-800);
  flex: 1;
}

.coming-soon-price {
  font-size: 0.82rem;
  color: var(--grey-400);
  white-space: nowrap;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: #0a0a0a;
  color: var(--white);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 64px;
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-logo-img {
  height: 48px;
  width: auto;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--grey-400);
  line-height: 1.6;
  margin-top: 12px;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.social-link:hover {
  color: var(--white);
}

.social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--white);
}

.footer-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal-link {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-legal-link:hover {
  color: rgba(255,255,255,0.7);
}

/* ── Product image as modal trigger ── */
.product-image-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}

.product-image-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
  pointer-events: none;
}

.product-image-btn:hover::after {
  background: rgba(0,0,0,0.12);
}

/* ── View Details trigger ── */
.view-details-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 16px;
  text-align: left;
  transition: color var(--transition);
}

.view-details-btn:hover {
  color: var(--grey-600);
}

/* ==============================================
   PRODUCT MODAL
   ============================================== */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 940px;
  max-height: 92vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: rgba(0,0,0,0.07);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.modal-close:hover { background: rgba(0,0,0,0.14); }
.modal-close svg   { width: 15px; height: 15px; }

/* ── Gallery pane ── */
.modal-gallery {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--grey-50);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.modal-main-img-wrap {
  aspect-ratio: 4 / 3;
  width: 100%;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--grey-100);
  position: relative;
  cursor: zoom-in;
}

.modal-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: opacity 0.22s ease;
}

.modal-main-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--grey-400);
  padding: 40px;
  text-align: center;
}

.modal-main-placeholder svg {
  width: 40px;
  height: 40px;
}

.modal-main-placeholder p {
  font-size: 0.8125rem;
  font-weight: 500;
}

.modal-thumbs {
  display: flex;
  gap: 8px;
}

.modal-thumb {
  flex: 1;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--grey-100);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: border-color var(--transition), opacity var(--transition);
}

.modal-thumb:hover    { opacity: 0.85; }
.modal-thumb.is-active { border-color: var(--black); }

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.modal-thumb--placeholder {
  opacity: 0.5;
}

.modal-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
}

.modal-thumb-placeholder svg { width: 18px; height: 18px; }

/* ── Info pane ── */
.modal-info {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
}

.modal-colour-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.modal-colour-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey-400);
}

.modal-product-name {
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 3px;
  line-height: 1.1;
}

.modal-product-sub {
  font-size: 0.8125rem;
  color: var(--grey-400);
  margin-bottom: 18px;
}

.modal-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--grey-100);
}

.modal-price          { font-size: 1.875rem; font-weight: 800; letter-spacing: -0.03em; color: var(--black); }
.modal-price-currency { font-size: 0.875rem; font-weight: 600; color: var(--grey-400); }
.modal-price-unit     { font-size: 0.8rem; color: var(--grey-400); }

.modal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}

.modal-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.5;
}

.modal-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.modal-specs {
  background: var(--grey-50);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.modal-spec { display: flex; flex-direction: column; gap: 2px; }
.modal-spec-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey-400); }
.modal-spec-value { font-size: 0.875rem; font-weight: 600; color: var(--black); }

.modal-buy-btn {
  width: 100%;
  padding: 14px;
  font-size: 0.9375rem;
  margin-top: auto;
}

/* ── Main image zoom hint ── */
.modal-main-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.45) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") center/18px no-repeat;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 2;
}
.modal-main-img-wrap:hover::after { opacity: 1; }
/* Always show hint on touch/mobile */
@media (hover: none) {
  .modal-main-img-wrap::after { opacity: 0.7; }
}

/* ==============================================
   IMAGE LIGHTBOX
   ============================================== */

.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-lightbox[hidden] { display: none; }

.img-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.93);
  cursor: zoom-out;
}

.img-lightbox-img-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-lightbox-img {
  max-width: 92vw;
  max-height: 90vh;
  max-height: 90dvh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 80px rgba(0,0,0,0.6);
  display: block;
  animation: lightboxIn 0.22s cubic-bezier(.4,0,.2,1);
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

.img-lightbox-close {
  position: fixed;
  top: max(20px, env(safe-area-inset-top, 20px));
  right: max(20px, env(safe-area-inset-right, 20px));
  z-index: 2;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.375rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  touch-action: manipulation;
}
.img-lightbox-close:hover { background: rgba(255,255,255,0.28); }

.img-lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  touch-action: manipulation;
}
.img-lightbox-arrow:hover { background: rgba(255,255,255,0.28); }
.img-lightbox-arrow[hidden] { display: none; }
.img-lightbox-arrow--prev { left:  max(16px, env(safe-area-inset-left, 16px)); }
.img-lightbox-arrow--next { right: max(16px, env(safe-area-inset-right, 16px)); }
.img-lightbox-arrow svg { width: 18px; height: 18px; flex-shrink: 0; }

.img-lightbox-counter {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom, 24px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 99px;
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 5px 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ==============================================
   QUIZ NUDGE STRIP
   ============================================== */

.quiz-nudge-strip {
  background: var(--green);
  padding: 14px 24px;
  text-align: center;
}
.quiz-nudge-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.quiz-nudge-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
}
.quiz-nudge-link {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 14px;
  border: 2px solid var(--black);
  border-radius: 99px;
  transition: background 0.15s, color 0.15s;
}
.quiz-nudge-link:hover {
  background: var(--black);
  color: var(--green);
}

/* ==============================================
   JOIN THE CLUB SECTION
   ============================================== */

.club-section {
  background: var(--black);
  color: var(--white);
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
}
.club-section-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--green);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.club-section-heading {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 16px;
}
.club-section-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

/* Tier preview cards */
.club-tiers-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 0 auto 40px;
}
.club-tier-card {
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: default;
}
.club-tier-card:hover {
  border-color: var(--green);
  background: rgba(200, 230, 23, 0.05);
  transform: translateY(-2px);
}
.club-tier-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.club-tier-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.club-tier-detail {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  line-height: 1.4;
}
.club-tier-price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green);
}

/* CTAs */
.club-section-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  letter-spacing: 0.01em;
}
.btn-ghost-white:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}

/* Proof strip */
.club-proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.club-proof-strip span:not(.club-proof-dot) {
  color: rgba(255,255,255,0.55);
}
.club-proof-dot {
  color: rgba(255,255,255,0.2);
}

/* ==============================================
   RESPONSIVE
   ============================================== */

/* ── Tablet (≤ 960px) ── */
@media (max-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }

  .about-visual-img {
    object-position: center center;
  }

  .stores-layout {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    display: none;
  }
}

/* ── Mobile (≤ 640px) ── */
@media (max-width: 640px) {

  /* Bottom-sheet layout: slides up from bottom, feels native on iOS */
  .product-modal {
    padding: 0;
    align-items: flex-end;
  }

  .modal-panel {
    grid-template-columns: 1fr;
    border-radius: 20px 20px 0 0;
    /* dvh accounts for iOS Safari's collapsing address bar */
    max-height: 92vh;
    max-height: 92dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* smooth momentum scroll on iOS */
    overscroll-behavior: contain;      /* stop scroll leaking to page behind */
  }

  .modal-gallery {
    border-radius: 0; /* panel handles the rounded top corners */
    min-height: auto;
    padding: 12px 12px 8px;
    gap: 6px;
    flex-shrink: 0;
  }

  /* Fixed pixel height instead of aspect-ratio — keeps image small regardless
     of screen width, guaranteeing buy button is reachable */
  .modal-main-img-wrap {
    aspect-ratio: unset;
    height: 160px;
    width: 100%;
  }

  /* Reorder buy button to appear RIGHT AFTER the price — before features/specs.
     On any phone it's visible without scrolling. */
  .modal-info {
    padding: 16px 20px;
    /* Add bottom padding for iOS home bar */
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column;
  }
  .modal-colour-row    { order: 1; }
  .modal-product-name  { order: 2; font-size: 1.25rem; }
  .modal-product-sub   { order: 3; margin-bottom: 10px; }
  .modal-pricing       { order: 4; margin-bottom: 12px; padding-bottom: 12px; }
  .modal-buy-btn       { order: 5; margin-top: 0; }  /* clear desktop margin-top: auto */
  .modal-features      { order: 6; gap: 6px; margin-bottom: 12px; margin-top: 14px; }
  .modal-specs         { order: 7; margin-bottom: 12px; padding: 10px 12px; }

  .modal-price         { font-size: 1.5rem; }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions .btn-outline {
    display: none;
  }

  .hero {
    padding: 80px 24px 70px;
    min-height: auto;
  }

  .hero-heading {
    font-size: 2.8rem;
  }

  .hero-body {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .products-section {
    padding: 56px 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-image-inner {
    aspect-ratio: 3 / 2;
  }

  .product-body {
    padding: 14px;
  }

  .product-desc {
    margin-bottom: 12px;
  }

  .features-section {
    padding: 56px 0;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .testimonials-section {
    padding: 56px 0;
  }

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

  .about-section {
    padding: 64px 0;
  }

  .stores-section {
    padding: 56px 0;
  }

  .stores-map iframe {
    height: 300px;
  }

  .club-tiers-preview {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Very small (≤ 380px) ── */
@media (max-width: 380px) {
  .logo-text {
    display: none;
  }

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

  .club-tiers-preview {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .club-tier-card {
    padding: 18px 12px;
  }

  .quiz-nudge-inner {
    flex-direction: column;
    gap: 8px;
  }

  .quiz-nudge-text {
    font-size: 0.8125rem;
  }
}
