@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300;1,400;1,600;1,700&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

:root {
  --color-bg: #0a0a0a;
  --color-surface: #131313;
  --color-surface-2: #1a1a1a;
  --color-surface-3: #222222;
  --color-gold: #c9a96e;
  --color-gold-light: #e2c998;
  --color-cream: #f0e6d3;
  --color-purple: #6b4fa0;
  --color-purple-light: #8b6fc0;
  --color-text: rgba(240,230,211,0.90);
  --color-text-muted: rgba(240,230,211,0.55);
  --color-text-dim: rgba(240,230,211,0.35);
  --color-white: #f0e6d3;
  --color-border: rgba(201,169,110,0.18);
  --color-border-light: rgba(240,230,211,0.08);
  --font-display: 'Crimson Pro', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
  --radius-card: 0;
  --radius-btn: 0;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 0 40px rgba(201,169,110,0.15);
  --shadow-card: 0 8px 48px rgba(0,0,0,0.6);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.container--narrow {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* ─── ON-DARK SCOPING ─── */
.on-dark { color: rgba(240,230,211,0.88); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--color-cream); }
.on-dark p { color: rgba(240,230,211,0.68); }
.on-dark a:not(.btn) { color: inherit; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
  color: var(--color-cream);
}

p { font-family: var(--font-body); }

.display-xl {
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.display-lg {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.display-md {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
}

.italic-accent { font-style: italic; color: var(--color-gold); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.text-muted { color: var(--color-text-muted); }
.text-gold { color: var(--color-gold); }
.text-cream { color: var(--color-cream); }

/* ─── BUTTONS — B5 SPLIT ─── */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
  border-radius: var(--radius-btn);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-gold);
  color: #0a0a0a;
}

.btn--primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,169,110,0.35);
}

.btn--primary .btn__text {
  padding: 16px 24px;
}

.btn--primary .btn__price {
  padding: 16px 20px;
  background: rgba(0,0,0,0.2);
  border-left: 1px solid rgba(0,0,0,0.25);
  font-size: 14px;
  font-weight: 800;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.btn--ghost .btn__text {
  padding: 14px 28px;
}

.btn--ghost:hover {
  background: var(--color-gold);
  color: #0a0a0a;
}

.btn--lg .btn__text { padding: 18px 32px; font-size: 14px; }
.btn--lg .btn__price { padding: 18px 24px; font-size: 16px; }

.btn--full { width: 100%; justify-content: center; }

/* ─── PHOTO PLACEHOLDER ─── */
.photo-placeholder {
  background: linear-gradient(135deg, #ff6eb4, #ff3d9a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: inherit;
}

.photo-placeholder__icon { font-size: 32px; }
.photo-placeholder__label { color: #fff; font-size: 13px; font-weight: 600; font-family: sans-serif; text-align: center; padding: 0 16px; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.nav--scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-gold);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-gold);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  transition: var(--transition);
}

/* ─── MOBILE MENU ─── */
@media (max-width: 900px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-surface);
    border-left: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 80px 32px 32px;
    transition: right var(--transition);
    z-index: 999;
  }
  .nav__links--open { right: 0; }
  .nav__links a { font-size: 16px; padding: 8px 0; }
  .nav__cta .btn { display: none; }
}

/* ─── HERO — VARIANT I (media-only first viewport) ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.15) 40%, rgba(10,10,10,0.7) 100%);
  z-index: 1;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce-down 2s ease-in-out infinite;
}

.hero__scroll-hint span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,230,211,0.7);
}

.hero__scroll-hint svg {
  opacity: 0.6;
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── INTRO SECTION (after hero-I) ─── */
.intro {
  background: var(--color-bg);
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
  padding-bottom: clamp(100px, 14vw, 180px);
}

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

.intro__headline {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--color-cream);
}

.intro__brand-mark {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro__body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 460px;
}

.intro__body p + p { margin-top: 16px; }

.intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.intro__stat {
  padding: 20px;
  border: 1px solid var(--color-border);
  clip-path: polygon(0 0, 95% 0, 100% 8%, 100% 100%, 0 100%);
  background: var(--color-surface);
}

.intro__stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
}

.intro__stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* ─── PRODUCTS SECTION ─── */
.products-section {
  background: var(--color-surface);
  padding: clamp(80px, 10vw, 120px) 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-header--center {
  text-align: center;
}

.section-header h2 {
  margin-top: 12px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 560px;
}

.section-header--center p {
  margin-inline: auto;
}

/* ─── PRODUCT CARDS — C6 Cut Corner ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--color-surface-2);
  clip-path: polygon(0 0, 92% 0, 100% 5%, 100% 100%, 0 100%);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.product-card__img {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--color-surface-3);
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
  padding: 16px;
}

.product-card:hover .product-card__img img {
  transform: scale(1.05);
}

.product-card__body {
  padding: 24px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card__price {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── Card CTA: clean single pill, no boxed arrow, no wrapping ─── */
.product-card__footer .btn--primary {
  flex-shrink: 0;
}
.product-card__footer .btn--primary .btn__text {
  padding: 13px 8px 13px 20px;
  white-space: nowrap;
}
.product-card__footer .btn--primary .btn__price {
  padding: 13px 20px 13px 4px;
  background: transparent;
  border-left: none;
  font-size: 15px;
}

/* ─── PROBLEM SECTION ─── */
.problem-section {
  background: var(--color-bg);
  padding: clamp(80px, 10vw, 120px) 0;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin-block: -40px;
}

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

.problem-section__headline {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--color-surface);
  border-left: 3px solid var(--color-gold);
  clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
}

.problem-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-item__text h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 4px;
}

.problem-item__text p {
  font-size: 14px;
  color: var(--color-text-muted);
}

.problem-visual {
  position: relative;
}

.problem-quote {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 40px;
  clip-path: polygon(0 0, 95% 0, 100% 6%, 100% 100%, 5% 100%, 0 94%);
}

.problem-quote__mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.8;
  color: var(--color-gold);
  opacity: 0.3;
  margin-bottom: 8px;
  display: block;
}

.problem-quote__text {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--color-cream);
  line-height: 1.5;
  margin-bottom: 20px;
}

.problem-quote__author {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ─── HOW IT WORKS ─── */
.how-section {
  background: var(--color-surface);
  padding: clamp(80px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

.how-section__bg-num {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 400px;
  font-weight: 900;
  color: rgba(201,169,110,0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(to right, var(--color-gold), transparent, var(--color-gold));
  opacity: 0.4;
}

.how-step {
  padding: 32px;
  text-align: center;
  position: relative;
}

.how-step__num {
  width: 96px;
  height: 96px;
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--color-gold);
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
  background: var(--color-surface-2);
  transition: background var(--transition);
}

.how-step:hover .how-step__num {
  background: rgba(201,169,110,0.12);
}

.how-step h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 12px;
}

.how-step p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ─── UNIQUE BLOCK — Thermal Science ─── */
.thermal-section {
  background: var(--color-bg);
  padding: clamp(80px, 10vw, 120px) 0;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin-block: -40px;
  position: relative;
  overflow: hidden;
}

.thermal-section__inner {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 60px;
  align-items: center;
}

.thermal-headline {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 24px;
}

.thermal-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.thermal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thermal-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: var(--color-surface);
  clip-path: polygon(0 0, 88% 0, 100% 30%, 100% 100%, 12% 100%, 0 70%);
}

.thermal-visual {
  position: relative;
}

.thermal-dial {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thermal-dial__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201,169,110,0.2);
}

.thermal-dial__ring--2 {
  inset: 20px;
  border-color: rgba(201,169,110,0.15);
  animation: spin 20s linear infinite;
}

.thermal-dial__ring--3 {
  inset: 40px;
  border-color: rgba(201,169,110,0.25);
  border-style: dashed;
  animation: spin 12s linear infinite reverse;
}

.thermal-dial__center {
  position: relative;
  z-index: 2;
  text-align: center;
}

.thermal-dial__temp {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
}

.thermal-dial__unit {
  font-size: 24px;
  color: var(--color-text-muted);
}

.thermal-dial__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 8px;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ─── BENEFITS SECTION ─── */
.benefits-section {
  background: var(--color-surface);
  padding: clamp(80px, 10vw, 120px) 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.benefit-card {
  padding: 36px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-light);
  clip-path: polygon(0 0, 92% 0, 100% 5%, 100% 100%, 0 100%);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--color-gold);
  transition: height 0.4s ease;
}

.benefit-card:hover::before { height: 100%; }

.benefit-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 10px;
}

.benefit-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ─── EMAIL SUBSCRIPTION ─── */
.email-section {
  background: var(--color-bg);
  padding: clamp(80px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

.email-section__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,79,160,0.15) 0%, transparent 70%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.email-section__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.email-section h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: var(--color-cream);
  margin-bottom: 16px;
  line-height: 1.1;
}

.email-section p {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 36px;
}

.email-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.email-form input {
  flex: 1;
  padding: 16px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-right: none;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
}

.email-form input:focus {
  border-color: var(--color-gold);
}

.email-form input::placeholder {
  color: var(--color-text-dim);
}

.email-form .btn {
  flex-shrink: 0;
}

.email-form .btn .btn__text {
  padding: 16px 24px;
}

.email-success {
  display: none;
  margin-top: 20px;
  padding: 16px 24px;
  background: rgba(201,169,110,0.12);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 600;
}

.email-success.visible { display: block; }

/* ─── FAQ ─── */
.faq-section {
  background: var(--color-surface);
  padding: clamp(80px, 10vw, 120px) 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.faq-trigger__text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-cream);
  line-height: 1.3;
}

.faq-trigger__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  font-size: 18px;
  transition: transform var(--transition), background var(--transition);
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
}

.faq-item.faq--open .faq-trigger__icon {
  transform: rotate(45deg);
  background: rgba(201,169,110,0.15);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-body__inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.faq-item.faq--open .faq-body {
  max-height: 400px;
}

/* ─── SUPPORT / CONTACT SECTION ─── */
.support-section {
  background: var(--color-bg);
  padding: clamp(80px, 10vw, 120px) 0;
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
}

.support-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.support-section h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--color-cream);
  margin-bottom: 20px;
}

.support-section p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
}

.contact-detail__text {
  font-size: 15px;
  color: var(--color-text-muted);
}

.contact-detail__text strong {
  display: block;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-input,
.form-textarea {
  padding: 14px 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  resize: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-gold);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-dim);
}

.form-input.error,
.form-textarea.error {
  border-color: #e05c5c;
}

.form-error {
  font-size: 12px;
  color: #e05c5c;
  display: none;
}

.form-error.visible { display: block; }

/* ─── MARQUEE ─── */
.marquee-strip {
  background: var(--color-gold);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.marquee-strip__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── FOOTER ─── */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--color-gold);
  letter-spacing: -0.02em;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

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

.footer__links a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--color-gold); }

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact-item {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.footer__contact-item strong {
  display: block;
  color: var(--color-cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer__bottom {
  border-top: 1px solid var(--color-border-light);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: var(--color-text-dim);
}

.footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 12px;
  color: var(--color-text-dim);
  transition: color var(--transition);
}

.footer__legal a:hover { color: var(--color-gold); }

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes fade-up { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse-ring { 0%{transform:scale(1);opacity:0.6} 100%{transform:scale(1.4);opacity:0} }

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  clip-path: polygon(0 0, 95% 0, 100% 4%, 100% 100%, 5% 100%, 0 96%);
  max-width: 480px;
  width: 100%;
  padding: 48px;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-box h3 {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.modal-box p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.modal-box .btn .btn__text { padding: 14px 32px; }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 280px;
}

.cookie-banner__text p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--color-gold);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__actions .btn .btn__text { padding: 12px 24px; font-size: 12px; }

/* ─── TRUST BADGES ─── */
.trust-bar {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 20px 0;
}

.trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.trust-badge__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge__text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--color-gold);
  padding: 12px 0;
  transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sticky-cta--visible { bottom: 0; }

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-cta__text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
}

.sticky-cta__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-cta__dismiss {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(10,10,10,0.5);
  font-size: 20px;
  padding: 4px 8px;
}

.sticky-cta .btn--dark {
  background: #0a0a0a;
  color: var(--color-gold);
}

.sticky-cta .btn--dark .btn__text { padding: 12px 20px; }

/* ─── PRODUCT PAGE ─── */
.product-hero {
  background: var(--color-bg);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.product-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-hero__gallery {
  position: relative;
}

.product-hero__main-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  clip-path: polygon(0 0, 90% 0, 100% 8%, 100% 100%, 0 100%);
}

.product-hero__main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.product-hero__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.product-thumb {
  width: 72px;
  height: 72px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
  flex-shrink: 0;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 0 100%);
}

.product-thumb.active,
.product-thumb:hover {
  border-color: var(--color-gold);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.product-hero__info {
  padding-top: 16px;
}

.product-hero__category {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  display: block;
}

.product-hero__name {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--color-cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.product-hero__desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.product-hero__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.product-hero__price-current {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--color-gold);
}

.product-hero__price-old {
  font-size: 24px;
  color: var(--color-text-dim);
  text-decoration: line-through;
}

.product-benefits-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.pill {
  padding: 6px 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  clip-path: polygon(0 0, 88% 0, 100% 35%, 100% 100%, 12% 100%, 0 65%);
}

/* ─── PRODUCT TRUST BAR ─── */
.product-trust {
  background: var(--color-surface);
  padding: 20px 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

/* ─── PRODUCT BENEFITS GRID ─── */
.product-benefits {
  background: var(--color-bg);
  padding: clamp(60px, 8vw, 100px) 0;
}

.product-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-benefit-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  clip-path: polygon(0 0, 88% 0, 100% 8%, 100% 100%, 0 100%);
  transition: transform var(--transition);
}

.product-benefit-item:hover { transform: translateY(-4px); }

.product-benefit-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-benefit-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.product-benefit-item p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--color-surface);
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}

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

.testimonial-card {
  background: var(--color-surface-2);
  padding: 32px;
  border: 1px solid var(--color-border-light);
  clip-path: polygon(0 0, 94% 0, 100% 5%, 100% 100%, 0 100%);
  position: relative;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  width: 14px;
  height: 14px;
  background: var(--color-gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--color-cream);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-card__author {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ─── SPEC TABLE ─── */
.table-scroll {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--color-surface);
}

.spec-table th,
.spec-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-text-muted);
}

.spec-table thead th {
  background: var(--color-surface-3);
  color: var(--color-cream);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 16px;
}

.spec-table__label {
  background: var(--color-surface-2);
  font-weight: 600;
  text-align: left;
  color: var(--color-text-muted);
}

.spec-table tbody th.spec-table__label {
  text-align: left;
  color: var(--color-text-muted);
}

.spec-table__hl {
  background: rgba(201,169,110,0.12);
  color: var(--color-gold);
  font-weight: 700;
}

.spec-table thead th.spec-table__hl {
  background: var(--color-gold);
  color: #0a0a0a;
}

.check-icon {
  color: var(--color-gold);
  font-weight: 900;
  font-size: 16px;
}

.cross-icon {
  color: var(--color-text-dim);
  font-size: 16px;
}

/* ─── FINAL CTA SECTION (product page) ─── */
.final-cta {
  background: var(--color-bg);
  padding: clamp(60px, 8vw, 100px) 0;
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
}

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

.final-cta h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--color-cream);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ─── CATALOG PAGE ─── */
.catalog-hero {
  background: var(--color-bg);
  padding: 140px 0 80px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  padding-bottom: 120px;
}

.catalog-hero h1 {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  color: var(--color-cream);
  margin-bottom: 16px;
}

.catalog-hero p {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── CHECKOUT PAGE ─── */
.checkout-page {
  background: var(--color-bg);
  min-height: 100vh;
  padding: 100px 0 60px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: start;
}

.checkout-form-section {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  clip-path: polygon(0 0, 98% 0, 100% 2%, 100% 100%, 2% 100%, 0 98%);
  padding: 40px;
}

.checkout-form-section h2 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-light);
}

.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-light);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
}

.checkout-input:focus { border-color: var(--color-gold); }
.checkout-input.error { border-color: #e05c5c; }

.checkout-input::placeholder { color: var(--color-text-dim); }

.checkout-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-light);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.checkout-select option { background: var(--color-surface-2); }

.checkout-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.checkout-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
  cursor: pointer;
}

.checkout-check input {
  margin-top: 2px;
  accent-color: var(--color-gold);
  flex-shrink: 0;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-light);
  cursor: pointer;
  transition: border-color var(--transition);
}

.payment-option.selected { border-color: var(--color-gold); }

.payment-option input[type="radio"] {
  accent-color: var(--color-gold);
}

.payment-option__label {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-cream);
}

.payment-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding: 20px;
  background: var(--color-surface-3);
  border: 1px solid var(--color-border-light);
}

.cod-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  margin-top: 12px;
}

.cod-info p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.checkout-error {
  display: none;
  padding: 14px 16px;
  background: rgba(224,92,92,0.1);
  border: 1px solid rgba(224,92,92,0.4);
  color: #e05c5c;
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.checkout-error.visible { display: block; }

.checkout-cod-btn {
  display: none;
  margin-top: 12px;
}

.checkout-cod-btn.visible { display: flex; }

/* ─── ORDER SUMMARY SIDEBAR ─── */
.order-summary {
  position: sticky;
  top: 100px;
}

.order-summary__box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  clip-path: polygon(0 0, 96% 0, 100% 3%, 100% 100%, 4% 100%, 0 97%);
  padding: 32px;
}

.order-summary__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.order-summary__product {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border-light);
}

.order-summary__img {
  width: 80px;
  height: 80px;
  background: var(--color-surface-2);
  flex-shrink: 0;
  overflow: hidden;
}

.order-summary__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.order-summary__product-info {
  flex: 1;
}

.order-summary__product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 4px;
}

.order-summary__product-qty {
  font-size: 13px;
  color: var(--color-text-muted);
}

.order-summary__product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--color-gold);
}

.order-summary__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 8px 0;
}

.order-summary__total {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-cream);
  border-top: 1px solid var(--color-border);
  margin-top: 12px;
  padding-top: 16px;
}

.order-summary__total span:last-child {
  color: var(--color-gold);
}

/* ─── VIDEO SECTION ─── */
/* ─── Gallery video (in carousel) ─── */
.product-hero__main-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

.product-thumb--video { position: relative; }

.product-thumb--video .product-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.32);
  pointer-events: none;
  transition: background var(--transition);
}

.product-thumb--video:hover .product-thumb__play {
  background: rgba(0,0,0,0.15);
}

.product-thumb--video .product-thumb__play::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}

/* ─── CATALOG GRID ─── */
.catalog-grid-section {
  background: var(--color-surface);
  padding: clamp(60px, 8vw, 100px) 0;
}

/* ─── PAGE HERO (for subpages) ─── */
.page-hero {
  background: var(--color-bg);
  padding: 130px 0 60px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  padding-bottom: 100px;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  color: var(--color-cream);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 600px;
}

/* ─── ABOUT SECTION (on index) ─── */
.about-strip {
  background: var(--color-surface-2);
  padding: clamp(60px, 8vw, 100px) 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .intro__inner { grid-template-columns: 1fr; gap: 48px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .thermal-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .support-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .how-steps::before { display: none; }
  .product-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .product-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: 1fr; }
  .final-cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .trust-badges__grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta__text { font-size: 15px; }
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: 1fr; }
  .intro__stats { grid-template-columns: 1fr 1fr; }
  .checkout-row { grid-template-columns: 1fr; }
  .product-benefits__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .email-form input { border-right: 1px solid var(--color-border); border-bottom: none; }
  .email-form .btn { width: 100%; justify-content: center; }
  .sticky-cta { display: none; }
}

@media (max-width: 480px) {
  .product-benefits__grid { grid-template-columns: 1fr; }
  .product-hero__thumbs { flex-wrap: wrap; }
  .cookie-banner__actions { width: 100%; flex-direction: column; }
  .cookie-banner__actions .btn { width: 100%; justify-content: center; }
}

/* Progressive-enhancement safety (injected by builder): scroll-reveal blocks stay VISIBLE
   unless JS confirms it can animate them by adding .js-anim to <html>. Guarantees a
   truncated page or a failed script can never leave content permanently hidden. */
html:not(.js-anim) .reveal,
html:not(.js-anim) .reveal-left,
html:not(.js-anim) .reveal-right,
html:not(.js-anim) .reveal-scale,
html:not(.js-anim) .stagger-child {
  opacity: 1 !important;
  transform: none !important;
}

/* ─── Contact map ─── */
.contact-map {
  margin-top: clamp(48px, 6vw, 80px);
}
.contact-map__header {
  margin-bottom: 24px;
}
.contact-map__header h3 {
  margin: 8px 0 6px;
}
.contact-map__header p {
  color: var(--color-text-muted);
  font-size: 15px;
  margin: 0;
}
.contact-map__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  overflow: hidden;
  clip-path: polygon(0 0, 96% 0, 100% 10%, 100% 100%, 4% 100%, 0 90%);
}
.contact-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(0.35) contrast(1.05);
}
.contact-map__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: gap var(--transition), color var(--transition);
}
.contact-map__link:hover {
  color: var(--color-gold-light);
  gap: 12px;
}
@media (max-width: 640px) {
  .contact-map__frame { aspect-ratio: 4 / 3; }
}

/* ─── Button loading state (form submit) ─── */
.btn.is-loading {
  position: relative;
  pointer-events: none;
  cursor: default;
}
.btn.is-loading .btn__text,
.btn.is-loading .btn__price {
  visibility: hidden;
}
.btn__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(10, 10, 10, 0.25);
  border-top-color: #0a0a0a;
  border-radius: 50%;
  animation: btnspin 0.6s linear infinite;
}
@keyframes btnspin {
  to { transform: rotate(360deg); }
}
