/* ================================================
   SILENTDISCO.NL — style.css
   ================================================ */

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

:root {
  /* Kleuren */
  --green:      #62DB00;
  --green-dk:   #52b800;
  --green-gl:   rgba(98,219,0,0.18);
  --blue:       #00a8f4;
  --blue-dk:    #0089cc;
  --blue-gl:    rgba(0,168,244,0.15);
  --dark:       #050404;
  --dark2:      #0d0c0c;
  --surface:    #ffffff;
  --surface2:   #f5f5f5;
  --surface3:   #eeeeee;
  --border:     #e5e5e5;
  --border2:    #d0d0d0;
  --text:       #111111;
  --text2:      #555555;
  --muted:      #999999;
  --error:      #ef4444;
  --success:    #62DB00;

  /* Dark surfaces (header/footer) */
  --d-surface:  #0d0c0c;
  --d-border:   #2a2929;
  --d-text:     #ffffff;
  --d-text2:    #aaaaaa;

  /* Spacing */
  --r:          12px;
  --container:  1200px;
  --header-h:   68px;
  --announce-h: 40px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  background: var(--surface2);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  /* Fixed header offset for non-hero pages */
  padding-top: calc(var(--announce-h) + var(--header-h));
  scroll-padding-top: calc(var(--announce-h) + var(--header-h));
}

h1, h2, h3, h4,
.home-hero-title,
.section-title,
.reviews-stat-count,
.reviews-score-num {
  font-family: 'Satoshi', 'Instrument Sans', system-ui, sans-serif;
}

p, li { font-size: 1.05rem; line-height: 1.65; }
.site-header p, .site-header li,
.site-header a { font-size: inherit; }
.nav-links a { font-size: 0.9rem; }

a    { color: inherit; text-decoration: none; }
img  { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }

/* ════════════════════════════════════════
   HEADER
   ════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: transparent;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s;
}
.site-header.scrolled {
  background: var(--blue);
  border-bottom-color: rgba(0,0,0,0.15);
  backdrop-filter: none;
}
/* Pages without hero need an opaque header from the start */
.site-header.solid {
  background: var(--blue);
  border-bottom-color: rgba(0,0,0,0.15);
}
.header-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 1.5rem; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.logo img { height: 40px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.75);
  transition: color 0.15s; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-cart {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  color: rgba(255,255,255,0.75);
  transition: color 0.15s;
  text-decoration: none;
}
.nav-cart:hover { color: #fff; }
.nav-cart svg { display: block; }
.nav-cart-badge {
  position: absolute; top: 0px; right: 0px;
  min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--dark); border-radius: 99px;
  font-size: 0.6rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  color: #fff; line-height: 1;
  border: 2px solid transparent;
}
.nav-cart-badge.hidden { display: none; }

.cart-btn {
  position: relative;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  background: var(--green); border: 1px solid #7aec1a; border-radius: var(--r);
  color: var(--dark); font-size: 0.9rem; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: background 0.15s, transform 0.15s, border-color 0.15s;
  text-decoration: none;
}
.cart-btn:hover { background: var(--green-dk); border-color: #62db00; transform: translateY(-1px); }

.cart-badge {
  position: absolute; top: -7px; right: -7px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--blue); border-radius: var(--r);
  font-size: 0.65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.cart-badge.hidden { display: none; }

/* ════════════════════════════════════════
   CONTAINER & LAYOUT
   ════════════════════════════════════════ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

.page-wrap { background: #fff; }

/* Breadcrumb */
.breadcrumb {
  padding: 0.85rem 0; font-size: 0.78rem; color: var(--muted);
  display: flex; align-items: center; gap: 0.4rem;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border2); }

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.875rem 2.2rem; border-radius: 12px;
  font-size: 0.95rem; font-weight: 700; border: none;
  cursor: pointer; white-space: nowrap; letter-spacing: 0.01em;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.22s ease,
              background 0.15s ease,
              opacity 0.15s;
  text-decoration: none;
}
.btn:hover   { transform: translateY(-2px); }
.btn:active  { transform: translateY(0) scale(0.98); transition-duration: 0.08s; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

.btn-green {
  background: var(--green); color: var(--dark);
  border: 1px solid #7aec1a;
  box-shadow: 0 2px 8px var(--green-gl);
}
.btn-green:hover {
  background: var(--green-dk); border-color: #62db00;
  box-shadow: 0 8px 24px var(--green-gl);
  transform: translateY(-3px) scale(1.02);
}

.btn-blue {
  background: var(--blue); color: #fff;
  border: 1px solid #33baff;
  box-shadow: 0 2px 6px rgba(0,168,244,0.15);
}
.btn-blue:hover {
  background: var(--blue-dk); border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(0,168,244,0.2);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-ghost { background: transparent; color: var(--muted); border: none; }
.btn-ghost:hover { color: var(--text2); }

.btn-secondary { background: var(--surface2); color: var(--text2); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--surface3); color: var(--text); }

.btn-danger { background: #fee2e2; color: var(--error); border: 1px solid #fecaca; }
.btn-danger:hover { background: #fecaca; }

.btn-lg   { padding: 0.875rem 2.2rem; font-size: 0.95rem; }
.btn-sm   { padding: 0.875rem 2.2rem; font-size: 0.95rem; }
.btn-xs   { padding: 0.5rem 1rem; font-size: 0.82rem; border-radius: 8px; }
.btn-full { width: 100%; }

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  height: 460px; display: flex; align-items: center;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center right;
  opacity: 0.45; transition: opacity 0.5s;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(5,4,4,0.97) 0%, rgba(5,4,4,0.88) 42%, rgba(5,4,4,0.35) 75%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container); margin: 0 auto;
  padding: 3.5rem 1.5rem;
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--green); margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
  color: #fff; margin-bottom: 1rem;
}
.hero-title .accent { color: var(--blue); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.72);
  max-width: 520px; margin-bottom: 2.25rem; line-height: 1.65;
  text-align: left;
}
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ════════════════════════════════════════
   USP BAR
   ════════════════════════════════════════ */
.usp-bar {
  background: var(--dark2);
  border-bottom: 1px solid var(--d-border);
}
.usp-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 1.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide: var(--d-border);
}
.usp-item {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 1.1rem 1rem;
  border-right: 1px solid var(--d-border);
  font-size: 0.82rem; color: var(--d-text2);
}
.usp-item:last-child { border-right: none; }
.usp-icon {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.6rem; line-height: 1;
}
.usp-text strong { display: block; font-size: 0.83rem; color: var(--d-text); margin-bottom: 0.05rem; }

/* ════════════════════════════════════════
   SECTION HEADERS
   ════════════════════════════════════════ */
.section { padding: 4rem 0; }
.section-light  { background: #fff; }
.section-grey   { background: var(--surface2); }
.section-dark   { background: var(--dark); color: #fff; }

.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 0.5rem;
}
.section-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--blue); margin-bottom: 0.4rem;
}
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.2; }
.section-title-dark { color: #fff; }
.section-sub   { font-size: 0.9rem; color: var(--text2); margin-top: 0.4rem; }

/* ════════════════════════════════════════
   PRODUCT CARD (shop grid)
   ════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.product-card-img {
  position: relative;
  background: #fff;
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 24px;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: contain; display: block;
}
.product-card-img .placeholder { font-size: 3.5rem; }

.discount-badge {
  position: absolute; top: 12px; left: 12px;
  background: #1a1a1a; color: #fff;
  font-size: 0.75rem; font-weight: 600;
  padding: 0.3rem 0.9rem; border-radius: 99px;
  white-space: nowrap;
}

.product-card-body {
  padding: 24px;
  display: flex; flex-direction: column; gap: 0.4rem;
  flex: 1; text-align: left;
}
.product-card-label {
  font-size: 0.72rem; font-weight: 700;
  color: var(--blue); text-transform: uppercase; letter-spacing: .06em;
}
.product-card-name {
  font-size: 1.1rem; font-weight: 800;
  color: var(--text); line-height: 1.25; letter-spacing: -.02em;
}
.product-card-desc {
  font-size: 1.05rem; color: var(--text2); line-height: 1.65;
}
.product-card-pricing {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.1rem;
  margin-top: 0.25rem;
}
.price-old  { font-size: 0.8rem; color: var(--muted); text-decoration: line-through; }
.price-cur  { font-size: 1rem; font-weight: 700; color: var(--text); }
.price-unit { font-size: 0.72rem; color: var(--muted); }

/* ════════════════════════════════════════
   FEATURED PRODUCT CARD (homepage)
   ════════════════════════════════════════ */
.featured-product-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
  min-height: 380px;
}
.featured-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.12);
}
.featured-product-img {
  background: #f7f8fa;
  display: flex; align-items: center; justify-content: center;
  padding: 2.5rem;
  overflow: hidden;
}
.featured-product-img img {
  width: 100%; height: 100%; max-height: 340px;
  object-fit: contain; display: block;
}
.featured-product-body {
  padding: 2.5rem 2.5rem 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  justify-content: center;
}
.featured-product-name {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800; color: var(--text); letter-spacing: -.02em; line-height: 1.2;
}
.featured-product-desc {
  font-size: .95rem; color: var(--text2); line-height: 1.6;
}
.featured-product-price {
  display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap;
}
.featured-price-num {
  font-size: 2.2rem; font-weight: 800; color: var(--text); letter-spacing: -.03em;
}
.featured-price-unit {
  font-size: .875rem; color: var(--text2);
}
.featured-product-badges {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.feat-badge {
  background: #f0f4ff; color: var(--blue);
  border-radius: 99px; padding: .3rem .85rem;
  font-size: .75rem; font-weight: 600;
}

/* ════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.step-card {
  text-align: center; padding: 2rem 1.5rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
}
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: var(--dark);
  font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-icon  { font-size: 2rem; margin-bottom: 0.75rem; }
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.step-desc  { font-size: 0.83rem; color: var(--text2); line-height: 1.6; }

/* ════════════════════════════════════════
   ACCESSORY / UPSELL CARD (homepage)
   ════════════════════════════════════════ */
.accessory-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.accessory-card {
  background: var(--d-surface);
  border: 1px solid var(--d-border);
  border-radius: var(--r);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.9rem;
  transition: border-color 0.18s;
}
.accessory-card:hover { border-color: var(--blue); }
.accessory-card-img {
  aspect-ratio: 16/9; background: #1a1919;
  border-radius: var(--r); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.accessory-card-img img { width: 100%; height: 100%; object-fit: cover; }
.accessory-card-img .placeholder { font-size: 2.5rem; }
.accessory-tag {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--green);
}
.accessory-name  { font-size: 0.95rem; font-weight: 700; color: #fff; }
.accessory-desc  { font-size: 0.78rem; color: var(--d-text2); line-height: 1.55; }
.accessory-price { font-size: 1rem; font-weight: 800; color: var(--blue); }

/* ════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════ */
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1.25rem; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r);
}
.trust-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.05rem; }
.trust-title { font-size: 0.82rem; font-weight: 700; margin-bottom: 0.2rem; }
.trust-text  { font-size: 0.75rem; color: var(--text2); line-height: 1.5; }

/* ════════════════════════════════════════
   FILTERS / SORT (shop)
   ════════════════════════════════════════ */
.shop-controls {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem;
}
.shop-count { font-size: 0.82rem; color: var(--muted); }
.shop-count strong { color: var(--text); }
.sort-wrap { display: flex; align-items: center; gap: 0.5rem; }
.sort-label { font-size: 0.78rem; color: var(--muted); }
.sort-select {
  padding: 0.75rem 1.25rem; font-size: 0.9rem; font-weight: 600; font-family: inherit;
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r);
  color: var(--text); cursor: pointer; outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center;
  padding-right: 2.5rem;
}
.sort-select:focus { border-color: var(--blue); }

/* ════════════════════════════════════════
   PRODUCT DETAIL
   ════════════════════════════════════════ */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start; padding: 3rem 0 5rem;
}
.product-gallery { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.gallery-main {
  background: #fff; border-radius: var(--r);
  aspect-ratio: 1; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; margin-bottom: 0.75rem;
  border: 1px solid var(--border);
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-main .placeholder { font-size: 7rem; }
.gallery-thumbs { display: flex; gap: 0.5rem; }
.gallery-thumb {
  width: 72px; height: 72px; background: #fff;
  border: 2px solid var(--border); border-radius: var(--r);
  overflow: hidden; cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s;
}
.gallery-thumb.active { border-color: var(--blue); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

/* Product right column */
.product-info { display: flex; flex-direction: column; gap: 1.25rem; }

.product-badges { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.22rem 0.65rem; border-radius: var(--r);
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-blue  { background: rgba(0,168,244,0.1); color: var(--blue); border: 1px solid rgba(0,168,244,0.2); }
.badge-green { background: rgba(98,219,0,0.1); color: var(--green); border: 1px solid rgba(98,219,0,0.2); border: 1px solid var(--success); }
.badge-red   { background: #fee2e2; color: var(--error); border: 1px solid #fecaca; }
.badge-grey  { background: var(--surface3); color: var(--text2); border: 1px solid var(--border); }

.product-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.2; }

.product-pricing {
  display: flex; flex-direction: column; gap: 0.2rem;
}
.product-price-row { display: flex; align-items: baseline; gap: 0.5rem; }
.product-price-old  { font-size: 0.95rem; color: var(--muted); text-decoration: line-through; }
.product-price-cur  { font-size: 1.55rem; font-weight: 600; color: var(--text); }
.product-price-unit { display: none; }
.product-price-excl { font-size: 0.78rem; color: var(--muted); }
.product-price-btw  { font-size: 0.78rem; color: var(--muted); }

.product-desc { font-size: 0.9rem; color: var(--text2); line-height: 1.75; }

/* Includes list */
.includes-block {
  background: #fff; border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
}
.includes-title {
  font-size: 1rem; font-weight: 700; text-transform: none; letter-spacing: 0;
  color: var(--text); margin-bottom: 0.85rem;
}
.includes-list { display: flex; flex-direction: column; gap: 0.45rem; }
.include-item  { display: flex; align-items: center; gap: 0.55rem; font-size: 0.83rem; color: var(--text2); }
.include-ic    { color: var(--green); flex-shrink: 0; }

/* Config block (date / extras) */
.config-block {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.5rem;
}
.config-title {
  font-size: 1rem; font-weight: 700; text-transform: none; letter-spacing: 0;
  color: var(--text); margin-bottom: 1.1rem;
  display: flex; align-items: center; gap: 0.55rem;
}
.config-title svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }

/* ════════════════════════════════════════
   UPSELL CARDS (product page)
   ════════════════════════════════════════ */
.upsell-cards-grid { display: flex; flex-direction: column; gap: 0.6rem; }
.upsell-card {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.15rem;
  background: var(--surface2); border: 1.5px solid var(--border);
  border-radius: var(--r); cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.upsell-card:hover   { border-color: var(--border2); }
.upsell-card.selected {
  border-color: var(--green); background: rgba(98,219,0,0.05);
}
/* Free / gratis zender highlight */
.upsell-card.free-card {
  background: rgba(0,168,244,0.05);
  border-color: var(--blue);
  border-width: 2px;
}
.upsell-card.free-card .upsell-card-name { color: var(--text); }
.upsell-card.free-card.selected {
  background: rgba(98,219,0,0.07);
  border-color: var(--green);
}
.upsell-card-thumb {
  width: 52px; height: 52px; border-radius: var(--r);
  background: #fff; border: 1px solid var(--border);
  flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.upsell-card-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.upsell-card-info { flex: 1; min-width: 0; }
.upsell-card-name  { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.25rem; }
.upsell-card-sub   { font-size: 0.75rem; color: var(--text2); line-height: 1.45; }
.upsell-card-price { font-size: 0.9rem; font-weight: 800; color: var(--blue); flex-shrink: 0; }
.upsell-card-price.is-free { color: var(--success); }
.upsell-check {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--border2); background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.15s; color: transparent; font-size: 0.75rem; font-weight: 800;
}
.upsell-card.selected .upsell-check {
  background: var(--green); border-color: var(--green); color: var(--dark);
}
.upsell-free-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  background: rgba(98,219,0,0.12); color: var(--green);
  border: 1px solid rgba(98,219,0,0.25); border-radius: var(--r);
  padding: 0.12rem 0.45rem; margin-left: 0.35rem;
}

/* ════════════════════════════════════════
   PRICE BREAKDOWN
   ════════════════════════════════════════ */
.price-breakdown {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.price-row { display: flex; justify-content: space-between; font-size: 0.85rem; }
.price-row .lbl { color: var(--text2); }
.price-row .val { font-weight: 600; }
.price-row.free .val  { color: var(--success); }
.price-row.total { padding-top: 0.5rem; border-top: 1px solid var(--border); }
.price-row.total .lbl { font-weight: 700; color: var(--text); }
.price-row.total .val { font-size: 1.15rem; font-weight: 800; color: var(--blue); }

/* ════════════════════════════════════════
   UPSELL POPUP MODAL
   ════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  background: #fff; border-radius: var(--r);
  width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-header {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.modal-header .emoji { font-size: 2.5rem; margin-bottom: 0.75rem; }
.modal-header h2    { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.3rem; }
.modal-header p     { font-size: 0.875rem; color: var(--text2); }

.modal-body   { padding: 1.5rem 1.75rem; }
.modal-footer {
  padding: 1.25rem 1.75rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.65rem;
  border-top: 1px solid var(--border);
}

/* Popup upsell items */
.popup-upsell { display: flex; flex-direction: column; gap: 0.75rem; }
.popup-upsell-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; border: 1.5px solid var(--border);
  border-radius: var(--r); cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.popup-upsell-item:hover { border-color: var(--border2); background: var(--surface2); }
.popup-upsell-item.selected { border-color: var(--green); background: rgba(98,219,0,0.04); }
.popup-upsell-img {
  width: 60px; height: 60px; border-radius: var(--r);
  background: #e8f4ff; flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.popup-upsell-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.popup-upsell-info { flex: 1; }
.popup-upsell-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.15rem; }
.popup-upsell-sub  { font-size: 0.75rem; color: var(--text2); margin-bottom: 0.25rem; }
.popup-upsell-price { font-size: 0.9rem; font-weight: 800; color: var(--blue); }
.popup-check {
  width: 24px; height: 24px; border-radius: var(--r);
  border: 2px solid var(--border2); background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.15s; color: transparent; font-size: 0.75rem; font-weight: 900;
}
.popup-upsell-item.selected .popup-check {
  background: var(--green); border-color: var(--green); color: var(--dark);
}

/* ════════════════════════════════════════
   CART
   ════════════════════════════════════════ */
.cart-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 2rem; align-items: start; padding: 2.5rem 0 5rem;
}
.cart-sticky { position: sticky; top: calc(var(--header-h) + 1rem); }

.cart-table { display: flex; flex-direction: column; gap: 0; }
.cart-row {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding: 1.25rem 0; border-bottom: 1px solid var(--border);
}
.cart-row:first-child { padding-top: 0; }
.cart-row:last-child  { border-bottom: none; }

.cart-thumb {
  width: 80px; height: 80px; border-radius: var(--r);
  background: #e8f4ff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; font-size: 2rem; border: 1px solid var(--border);
}
.cart-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.cart-row-info  { flex: 1; min-width: 0; }
.cart-row-name  { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.cart-row-meta  { font-size: 0.78rem; color: var(--text2); line-height: 1.55; }
.cart-row-tag {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(0,168,244,0.07); border: 1px solid rgba(0,168,244,0.15);
  border-radius: var(--r); padding: 0.18rem 0.5rem;
  font-size: 0.68rem; color: var(--blue); margin-top: 0.35rem;
}
.cart-row-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; flex-shrink: 0; }
.cart-row-price { font-size: 0.95rem; font-weight: 800; color: var(--text); }
.cart-row-price.free { color: var(--success); }

/* Order summary card */
.order-summary-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
}
.order-summary-header {
  padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--border);
  font-size: 1.05rem; font-weight: 700;
}
.order-summary-body { padding: 1.25rem; }
.summary-line {
  display: flex; justify-content: space-between;
  font-size: 1.05rem; margin-bottom: 0.55rem;
}
.summary-line .lbl { color: var(--text2); }
.summary-line .val { font-weight: 600; }
.summary-line.free .val  { color: var(--success); }
.summary-line.total {
  margin-top: 0.65rem; padding-top: 0.75rem; border-top: 1px solid var(--border);
  margin-bottom: 0;
}
.summary-line.total .lbl { font-weight: 700; color: var(--text); font-size: 1.05rem; }
.summary-line.total .val { font-size: 1.2rem; font-weight: 800; color: var(--blue); }

/* ════════════════════════════════════════
   CHECKOUT STEPPER
   ════════════════════════════════════════ */
.checkout-stepper {
  display: flex; align-items: center; justify-content: center;
  padding: 1.75rem 1.5rem;
  background: #fff; border-bottom: 1px solid var(--border);
}
.step-item { display: flex; align-items: center; gap: 0; }
.step-bubble {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--border2); background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: var(--muted);
  flex-shrink: 0; transition: all 0.2s;
}
.step-item.active .step-bubble  { border-color: var(--blue); background: var(--blue); color: #fff; }
.step-item.done .step-bubble    { border-color: var(--blue); background: var(--blue); color: #fff; }
.step-item-label {
  margin-left: 0.6rem; font-size: 0.78rem; font-weight: 600;
  color: var(--muted); white-space: nowrap;
}
.step-item.active .step-item-label { color: var(--text); }
.step-item.done .step-item-label   { color: var(--blue); }
.step-connector {
  width: 60px; height: 1px; background: var(--border);
  margin: 0 0.5rem; flex-shrink: 0;
}
.step-item.done + .step-connector { background: var(--blue); }

/* Checkout layout */
.checkout-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 2rem; align-items: start; padding: 2.5rem 0 5rem;
}
.checkout-main { display: flex; flex-direction: column; gap: 1.25rem; }

.checkout-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
}
.checkout-card-header {
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.65rem;
}
.checkout-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.checkout-card-header h3 { font-size: 1.05rem; font-weight: 700; font-family: 'Satoshi','Instrument Sans',sans-serif; }
.checkout-card-body { padding: 1.5rem; }

/* ════════════════════════════════════════
   FORM
   ════════════════════════════════════════ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid.full { grid-template-columns: 1fr; }
.form-group   { display: flex; flex-direction: column; gap: 0.35rem; }
.form-label   { font-size: 0.9rem; font-weight: 600; color: var(--text2); }
.form-input {
  padding: 0.75rem 1rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; color: var(--text); font-size: 1.05rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; width: 100%;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-gl); }
.form-input::placeholder { color: var(--muted); }
.form-input::-webkit-calendar-picker-indicator { cursor: pointer; opacity: 0.6; }
textarea.form-input { resize: vertical; }

.field-error { font-size: 0.72rem; color: var(--error); display: none; }
.form-group.invalid .field-error { display: block; }
.form-group.invalid .form-input  { border-color: var(--error); }

/* Payment options */
.payment-list { display: flex; flex-direction: column; gap: 0.55rem; }
.payment-option { cursor: pointer; }
.payment-option input { position: absolute; opacity: 0; pointer-events: none; }
.payment-label {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.85rem 1rem; background: var(--surface2);
  border: 1.5px solid var(--border); border-radius: var(--r);
  transition: all 0.15s;
}
.payment-label:hover { border-color: var(--border2); }
.payment-option input:checked + .payment-label {
  border-color: var(--blue); background: rgba(0,168,244,0.05);
}
.payment-icon { font-size: 1.3rem; }
.payment-name { font-size: 0.875rem; font-weight: 600; }
.payment-desc { font-size: 0.72rem; color: var(--muted); }

/* ════════════════════════════════════════
   THANK YOU
   ════════════════════════════════════════ */
.thankyou-wrap { max-width: 640px; margin: 4rem auto; padding: 0 1.5rem 5rem; }
.thankyou-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(98,219,0,0.12); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; color: var(--green); font-size: 2rem;
}
.thankyou-steps { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.thankyou-step {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: var(--text2);
}
.thankyou-step-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.85rem;
}

/* ════════════════════════════════════════
   LOADER / SPINNER
   ════════════════════════════════════════ */
.loader {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; padding: 4rem 2rem; color: var(--muted);
}
.spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--border); border-top-color: var(--blue);
  border-radius: 50%; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ════════════════════════════════════════
   EMPTY STATE / ERROR
   ════════════════════════════════════════ */
.empty-state {
  text-align: center; padding: 5rem 1.5rem; color: var(--muted);
}
.empty-state-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.empty-state h3   { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.empty-state p    { font-size: 0.875rem; margin-bottom: 1.5rem; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.site-footer {
  background: #fff;
  color: #444;
}
.footer-top {
  border-bottom: none;
}
.footer-top-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 1.75rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo img { display: block; height: 32px; width: auto; }

.footer-main {
  padding: 3.5rem 0 3rem;
}
.footer-main-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-newsletter h4 {
  font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .6rem;
}
.footer-newsletter p {
  font-size: 1.05rem; color: var(--text2); line-height: 1.65; margin-bottom: 1.25rem;
}
.footer-email-form {
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.footer-email-form input {
  flex: 1; min-width: 0;
  padding: .65rem 1.1rem; border: 1.5px solid #ccc; border-radius: 99px;
  font-size: .875rem; font-family: inherit; background: #fff;
  outline: none; transition: border-color .15s;
}
.footer-email-form input:focus { border-color: var(--blue); }

.footer-col h4    { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.footer-col ul    { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-col li a  { font-size: 1.05rem; color: var(--text2); transition: color .15s; }
.footer-col li a:hover { color: var(--blue); }

.footer-bottom {
  max-width: var(--container); margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #e8eaed;
  font-size: .78rem; color: #888;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-payment-icons {
  display: flex; align-items: center; gap: .5rem;
}
.payment-icon {
  height: 26px;
  width: auto;
  display: block;
  border-radius: 5px;
}

/* ════════════════════════════════════════
   ANNOUNCEMENT BAR
   ════════════════════════════════════════ */
.announcement-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 400;
  height: var(--announce-h);
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s ease, opacity .15s ease;
}
.announcement-bar.hidden-bar {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.announcement-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 2rem;
}
.announce-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 600; color: #fff;
  white-space: nowrap;
}
.announce-sep {
  width: 1px; height: 14px; background: rgba(255,255,255,0.35); flex-shrink: 0;
}

/* White header variant (homepage) */
.site-header.white {
  background: #fff;
  border-bottom: none;
}
.site-header.white.scrolled {
  background: #fff;
  border-bottom: none;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  backdrop-filter: none;
}
/* Only style plain nav links — leave .btn alone so it keeps its own color */
.site-header.white .nav-links a:not(.btn) { color: var(--text2); }
.site-header.white .nav-links a:not(.btn):hover,
.site-header.white .nav-links a:not(.btn).active { color: var(--text); }
.site-header.white .nav-cart { color: var(--text2); }
.site-header.white .nav-cart:hover { color: var(--text); }
.site-header.white .logo img { filter: brightness(0); }

/* Header positioned below announcement bar */
.site-header.below-announce { top: var(--announce-h); transition: top .15s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
body.bar-hidden .site-header.below-announce { top: 0; }

/* ════════════════════════════════════════
   HOME HERO (fullwidth banner)
   ════════════════════════════════════════ */
.home-hero {
  margin-top: calc(-1 * (var(--announce-h) + var(--header-h)));
  overflow: hidden;
}
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.10) 100%
  );
}
.hero-banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(var(--announce-h) + var(--header-h) + 4rem) 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.home-eyebrow {
  font-size: 0.88rem; color: var(--text2);
  margin-bottom: 1rem; line-height: 1.5;
}
.hero-banner-content h1 {
  font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.home-hero-desc {
  font-size: 1.25rem; line-height: 1.7;
  max-width: 540px; margin-bottom: 2rem;
  color: #fff;
}
.home-rating {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
  border-radius: var(--r); padding: 0.65rem 0.85rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  line-height: 0;
}

/* ════════════════════════════════════════
   FEATURES STRIP
   ════════════════════════════════════════ */
.features-section { background: var(--surface2); padding: 4rem 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.feature-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 2rem 1.75rem;
}
.feature-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(0,168,244,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; flex-shrink: 0;
}
.feature-icon-wrap img {
  width: 30px; height: 30px; object-fit: contain;
}
.feature-item strong {
  display: block; font-size: 1.35rem; font-weight: 700;
  font-family: 'Satoshi', 'Instrument Sans', system-ui, sans-serif;
  color: var(--text); margin-bottom: 0.5rem; letter-spacing: -0.02em;
}
.feature-item p {
  font-size: 1.05rem; color: var(--text2); line-height: 1.65; margin: 0;
}

/* ════════════════════════════════════════
   SPLIT CONTENT SECTION
   ════════════════════════════════════════ */
.home-split { padding: 5rem 0; background: #fff; }
.home-split-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.split-media { position: relative; }
.split-media-main {
  border-radius: 24px; overflow: hidden; aspect-ratio: 4/5;
}
.split-media-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-product-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px; border-radius: 50%;
  background: #fff; border: 4px solid var(--surface2);
  overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
}
.split-product-badge img { width: 80%; height: 80%; object-fit: contain; }
.split-features-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem; margin-top: 2.5rem;
}
.split-feat {
  text-align: center;
}
.split-feat-icon {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin: 0 auto 0.5rem;
}
.split-feat span { font-size: 0.68rem; color: var(--text2); line-height: 1.4; display: block; }
.split-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 1rem;
}
.split-content > p {
  color: var(--text2); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.75rem;
}
.benefits-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem;
}
.benefits-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 1.05rem; color: var(--text); line-height: 1.65;
}
.benefits-list li::before {
  content: '✓'; color: var(--blue); font-weight: 700;
  flex-shrink: 0; padding-top: 0.05rem;
}
.benefits-list li.bold { font-weight: 700; }

/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */
/* ════════════════════════════════════════
   REVIEWS SECTION
   ════════════════════════════════════════ */
.reviews-section { padding: 0; background: #f5f5f5; overflow: hidden; }
.reviews-inner {
  display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: center;
  padding: 0.5rem 0;
}
.reviews-columns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  height: 560px; overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-col { overflow: hidden; }
.reviews-track {
  display: flex; flex-direction: column; gap: 1rem;
  padding-bottom: 1rem;
  will-change: transform;
}
.reviews-col--down .reviews-track { animation: reviewsDown 18s linear infinite; }
.reviews-col--up   .reviews-track { animation: reviewsUp   18s linear infinite; }
@keyframes reviewsDown {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes reviewsUp {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}
.review-card {
  background: #fff; border-radius: 16px;
  padding: 2rem 2rem; display: flex; flex-direction: column; gap: 1rem;
  flex-shrink: 0;
}
.review-stars { color: #F5A623; font-size: 1.25rem; letter-spacing: 2px; }
.review-text { font-size: 1.05rem; color: var(--text); line-height: 1.65; margin: 0; }
.review-author { display: flex; flex-direction: column; gap: 0.15rem; }
.review-author strong { font-size: 1rem; color: var(--text); }
.review-author span { font-size: 0.875rem; color: var(--muted); }
.review-source {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem;
}
.review-source svg { width: 22px; height: 22px; }
/* Stat block */
.reviews-stat { display: flex; flex-direction: column; gap: 2rem; }
.reviews-stat-count {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
  color: var(--text); letter-spacing: -0.03em; line-height: 1.2;
  white-space: nowrap;
}
.reviews-stat-score {
  display: flex; flex-direction: row; align-items: center; gap: 0.6rem; flex-wrap: wrap;
}
.reviews-score-num {
  font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1;
}
.reviews-score-stars { color: #F5A623; font-size: 1.1rem; letter-spacing: 1px; line-height: 1; }
.reviews-score-label { font-size: 0.875rem; color: var(--text2); }

@media (max-width: 960px) {
  .reviews-inner { grid-template-columns: 1fr; gap: 3rem; }
  .reviews-columns { height: 400px; }
  .reviews-stat { align-items: center; text-align: center; }
}
@media (max-width: 540px) {
  .reviews-columns { grid-template-columns: 1fr; height: 320px; }
  .reviews-col--up { display: none; }
}

.faq-section { padding: 5rem 0; background: var(--surface2); }
.faq-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 3rem;
  text-align: center;
}
.faq-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1.1rem; font-weight: 600; color: var(--text);
  text-align: left; gap: 1rem; transition: color 0.15s;
}
.faq-trigger:hover { color: var(--blue); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 300; line-height: 1;
  color: var(--text2); transition: transform 0.25s, border-color 0.2s, color 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--blue); color: var(--blue); }
.faq-body {
  overflow: hidden; max-height: 0;
  font-size: 1.05rem; color: var(--text2); line-height: 1.75;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-body { max-height: 600px; padding-bottom: 1.25rem; }

/* ════════════════════════════════════════
   HERO STATS
   ════════════════════════════════════════ */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
  white-space: nowrap;
}
.hero-stat-div {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   HOW IT WORKS FLOW
   ════════════════════════════════════════ */
.how-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.how-step {
  position: relative;
  text-align: center;
  padding: 1rem 2rem 1.5rem;
}
.how-step-num-bg {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 7rem;
  font-weight: 900;
  color: rgba(0,168,244,0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.04em;
}
.how-step-icon {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}
.how-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}
.how-step-desc {
  font-size: 0.83rem;
  color: var(--text2);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  max-width: 220px;
  margin: 0 auto;
}
.how-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  color: var(--border2);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   TRUST SECTION (dark layout)
   ════════════════════════════════════════ */
.trust-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}
.trust-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.trust-item-dk {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.35rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--d-border);
  border-radius: var(--r);
  transition: border-color 0.2s;
}
.trust-item-dk:hover { border-color: rgba(255,255,255,0.15); }
.trust-icon-dk { font-size: 1.5rem; flex-shrink: 0; }
.trust-title-dk { font-size: 0.83rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.trust-text-dk  { font-size: 0.75rem; color: var(--d-text2); line-height: 1.55; }

/* ════════════════════════════════════════
   CONTACT CTA BOX
   ════════════════════════════════════════ */
.cta-box {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 3rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: calc(var(--r) * 2);
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.cta-box-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin: 0.75rem 0 1rem;
}
.cta-box-sub {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-box-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════ */
.hint { font-size: 0.8rem; color: var(--muted); text-align: center; padding: 0.35rem 0; }
.divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.35s ease both; }

/* ── Premium animation system ─────────────────────────────── */
@keyframes animUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes animLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes animRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes animScale {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulseBlue {
  0%   { box-shadow: 0 0 0 0 rgba(0,168,244,0.45); }
  60%  { box-shadow: 0 0 0 12px rgba(0,168,244,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,168,244,0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Scroll-reveal base — hidden until .in is added by JS */
[data-anim] { opacity: 0; }
[data-anim].in { animation-fill-mode: both; animation-timing-function: cubic-bezier(0.16,1,0.3,1); animation-duration: 0.65s; }
[data-anim="up"].in    { animation-name: animUp; }
[data-anim="left"].in  { animation-name: animLeft; }
[data-anim="right"].in { animation-name: animRight; }
[data-anim="scale"].in { animation-name: animScale; }

[data-delay="100"].in { animation-delay: 0.10s; }
[data-delay="150"].in { animation-delay: 0.15s; }
[data-delay="200"].in { animation-delay: 0.20s; }
[data-delay="250"].in { animation-delay: 0.25s; }
[data-delay="300"].in { animation-delay: 0.30s; }
[data-delay="350"].in { animation-delay: 0.35s; }
[data-delay="400"].in { animation-delay: 0.40s; }
[data-delay="450"].in { animation-delay: 0.45s; }

/* Hero text staggered load animations */
.hero-banner-content .home-eyebrow { animation: animUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.05s both; }
.hero-banner-content h1            { animation: animUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.15s both; }
.hero-banner-content .home-hero-desc { animation: animUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.28s both; }
.hero-banner-content .hero-main-cta { animation: animUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.42s both; }
/* Rating badge floats after appearing */
.home-rating {
  animation:
    animUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.65s both,
    floatY 4s ease-in-out 1.5s infinite;
}
/* Pulse on primary hero CTA */
.btn-pulse { animation: pulseBlue 2.2s ease-in-out infinite; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-main-inner { grid-template-columns: 1fr 1fr; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-sticky { position: static; }
  .product-detail-grid { gap: 2.5rem; }
  .featured-product-card { grid-template-columns: 1fr 1.2fr; }
}

@media (max-width: 860px) {
  .usp-inner  { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .accessory-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .step-connector { width: 32px; }
  .how-flow {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .how-arrow { padding-top: 0; transform: rotate(90deg); }
  .trust-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-right { grid-template-columns: 1fr 1fr; }
  .hero-banner { min-height: 100svh; }
  .hero-banner-content { padding-bottom: 3rem; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .home-split-inner { grid-template-columns: 1fr; gap: 3rem; }
  .split-product-badge { width: 90px; height: 90px; }
  .announcement-inner { gap: 1rem; }
  .announce-sep { display: none; }
  .announce-item:nth-child(4),
  .announce-item:nth-child(5) { display: none; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .usp-inner { grid-template-columns: 1fr 1fr; }
  .accessory-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-right { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-main-inner { grid-template-columns: 1fr; gap: 2rem; }
  .featured-product-card { grid-template-columns: 1fr; }
  .featured-product-img { min-height: 220px; }
  .featured-product-body { padding: 1.75rem; }
  .hero-inner { padding: 3rem 1rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat-num { font-size: 1.3rem; }
  .checkout-stepper { padding: 1.25rem 1rem; }
  .step-connector { width: 20px; }
  .step-item-label { display: none; }
  .step-item.active .step-item-label { display: block; }
  .cta-box { padding: 2rem 1.25rem; border-radius: var(--r); }
  .cta-box-title { font-size: 1.75rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .split-features-row { grid-template-columns: repeat(2, 1fr); }
  .announce-item:nth-child(3) { display: none; }
}

@media (max-width: 700px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .usp-inner { grid-template-columns: 1fr; }
  .usp-item { border-right: none; border-bottom: 1px solid var(--d-border); }
  .usp-item:last-child { border-bottom: none; }
}
