:root {
  --ink: #0A0A0A;
  --ink-soft: #1F1F1F;
  --bg: #FAFAF7;
  --bg-alt: #F2F0EA;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --text-soft: #4A4A4A;
  --text-mute: #8A8A8A;
  --line: #E8E5DE;
  --hot: #FF3D00;
  --hot-deep: #D63100;
  --gold: #FFB800;
  --green: #1A7F4F;

  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.04);
  --shadow-md: 0 4px 16px rgba(10, 10, 10, 0.06), 0 2px 4px rgba(10, 10, 10, 0.04);
  --shadow-lg: 0 24px 48px -16px rgba(10, 10, 10, 0.18);
  --shadow-xl: 0 40px 80px -20px rgba(10, 10, 10, 0.28);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

*::selection {
  background: var(--hot);
  color: white;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TYPOGRAPHY ============ */
h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

h1 {
  font-size: clamp(32px, 4.4vw, 48px);
}

h2 {
  font-size: clamp(28px, 3.6vw, 42px);
}

h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.01em;
}

h4 {
  font-size: 17px;
  letter-spacing: -0.005em;
}

em.script {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--hot);
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hot);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--hot);
}

/* (Header / NAV styles live in common.css) */

/* ============ BREADCRUMB ============ */
.breadcrumb {
  padding: 24px 0 0;
  font-size: 13px;
  color: var(--text-mute);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-mute);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--ink);
}

.breadcrumb .sep {
  color: var(--line);
}

.breadcrumb .current {
  color: var(--ink);
  font-weight: 500;
}

/* ============ PRODUCT HERO ============ */
.product-hero {
  padding: 24px 0 60px;
}

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

/* GALLERY */
.gallery {
  position: sticky;
  top: 84px;
}

.gallery-main {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
  margin-bottom: 16px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-badge-tl {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--hot);
  border-radius: 50%;
  position: relative;
}

.live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--hot);
  border-radius: 50%;
  opacity: 0.3;
  animation: ping 1.8s ease-in-out infinite;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.gallery-badge-tr {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--hot);
  color: white;
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.thumb {
  aspect-ratio: 1/1;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb:hover {
  border-color: var(--text-mute);
}

.thumb.active {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(10, 10, 10, 0.06);
}

/* PRODUCT INFO */
.product-info {
  padding: 8px 0;
}

.product-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--bg);
  padding: 5px 10px;
  border-radius: var(--r-full);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag.hot {
  background: var(--hot);
}

.tag.gold {
  background: var(--gold);
  color: var(--ink);
}

.tag.green {
  background: var(--green);
}

.product-vendor {
  font-size: 13px;
  color: var(--text-mute);
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.product-title {
  margin-bottom: 16px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.rating-stars {
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 2px;
}

.rating-num {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.rating-count {
  font-size: 13px;
  color: var(--text-mute);
}

.rating-count a {
  color: var(--text-mute);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* PRICE */
.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.price-now {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.price-was {
  font-size: 19px;
  color: var(--text-mute);
  text-decoration: line-through;
  font-weight: 500;
}

.price-save {
  background: var(--green);
  color: white;
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.price-meta {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 24px;
}

.price-meta strong {
  color: var(--ink);
  font-weight: 600;
}

/* SHIP INFO */
.ship-info {
  background: var(--bg-alt);
  border-radius: var(--r-md);
  padding: 14px 16px;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ship-icon {
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ship-icon svg {
  width: 16px;
  height: 16px;
}

.ship-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-soft);
}

.ship-text strong {
  color: var(--ink);
  font-weight: 600;
}

/* OPTIONS */
.option-group {
  margin-bottom: 20px;
}

.option-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.option-label .selected {
  color: var(--text-mute);
  font-weight: 500;
}

.option-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  padding: 10px 16px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--ink);
}

.pill:hover {
  border-color: var(--text-mute);
}

.pill.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.color-pill {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--line);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.color-pill.active {
  border-color: var(--ink);
  transform: scale(1.05);
}

.color-pill.red {
  background: #B83A2C;
}

.color-pill.white {
  background: #F2EDE3;
  border-color: var(--line);
}

/* QUANTITY + BUY */

.qty-stepper {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-full);
  overflow: hidden;
  height: 56px;
}

.qty-btn {
  width: 36px;
  height: 100%;
  background: transparent;
  border: none;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 500;
}

.qty-btn:hover {
  background: var(--bg-alt);
}

.qty-input {
  flex: 1;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  width: 100%;
  height: 100%;
  outline: none;
}

.qty-buy-row {
  margin-bottom: 20px;
}

.btn-buy {
  padding: 0 20px;
  width: 100%;
  height: 56px;
  background: var(--hot);
  color: white;
  border: none;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  letter-spacing: -0.005em;
  box-shadow: 0 8px 24px rgba(255, 61, 0, 0.3);
}

.btn-buy:hover {
  background: var(--hot-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255, 61, 0, 0.4);
}

.btn-buy .arrow {
  transition: transform 0.25s var(--ease);
  font-size: 18px;
}

.btn-buy:hover .arrow {
  transform: translateX(4px);
}

.btn-secondary {
  width: 100%;
  height: 50px;
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--bg);
}

/* TRUST ROW */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.trust-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--text-soft);
  align-items: center;
}

.trust-check {
  width: 18px;
  height: 18px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.trust-item strong {
  color: var(--ink);
  font-weight: 600;
}

/* HIGHLIGHTS */
.highlights {
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  margin-bottom: 24px;
}

.highlights h4 {
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlights li {
  font-size: 14px;
  color: var(--text-soft);
  padding: 7px 0 7px 22px;
  position: relative;
  line-height: 1.5;
}

.highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 12px;
  height: 2px;
  background: var(--hot);
}

.highlights li strong {
  color: var(--ink);
  font-weight: 600;
}

/* PAYMENT BADGES */
.payments {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.payments-label {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-icon {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-soft);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.04em;
}

/* ============ SOCIAL PROOF BAR ============ */
.proof-bar {
  background: var(--ink);
  color: var(--bg);
  padding: 18px 0;
  overflow: hidden;
}

.proof-track {
  display: flex;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}

.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(250, 250, 247, 0.85);
  letter-spacing: -0.005em;
}

.proof-item strong {
  color: var(--gold);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.proof-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============ FEATURE SECTION ============ */
.section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-head .eyebrow {
  margin-bottom: 16px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #4A5D52, #1F3328);
  overflow: hidden;
}

.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-body {
  padding: 28px 32px 32px;
}

.feature-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hot);
  margin-bottom: 10px;
}

.feature-card-body h3 {
  margin-bottom: 10px;
}

.feature-card-body p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ============ SPEC GRID ============ */
.spec-section {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.spec-cell {
  background: var(--surface);
  padding: 28px 20px;
  text-align: center;
}

.spec-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--hot);
}

.spec-icon svg {
  width: 20px;
  height: 20px;
}

.spec-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.spec-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  font-weight: 600;
}

/* SPEC LIST */
.spec-table-wrap {
  max-width: 720px;
  margin: 56px auto 0;
}

.spec-table {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  border-bottom: 1px solid var(--line);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row-label,
.spec-row-val {
  padding: 16px 24px;
  font-size: 14px;
}

.spec-row-label {
  color: var(--text-mute);
  font-weight: 500;
  border-right: 1px solid var(--line);
  background: var(--bg-alt);
}

.spec-row-val {
  color: var(--ink);
  font-weight: 500;
}

/* ============ HOW IT WORKS ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--hot);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 52px;
  height: 52px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ============ COMPARE ============ */
.compare-section {
  padding: 80px 0;
  background: var(--surface);
}

.compare-table {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 1000px;
  margin: 56px auto 0;
  box-shadow: var(--shadow-sm);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row.head {
  background: var(--ink);
  color: var(--bg);
}

.compare-row.head .compare-cell {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-cell {
  padding: 20px 24px;
  font-size: 14.5px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}

.compare-row.head .compare-cell {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-cell:last-child {
  border-right: none;
}

.compare-cell.label {
  color: var(--ink);
  font-weight: 600;
}

.compare-cell.this {
  color: var(--green);
  font-weight: 600;
  background: rgba(26, 127, 79, 0.04);
}

.compare-cell.other {
  color: var(--text-mute);
}

.icon-check,
.icon-x {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.icon-check {
  background: var(--green);
  color: white;
}

.icon-x {
  background: #E0E0E0;
  color: var(--text-mute);
}

/* ============ REVIEWS ============ */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-alt);
}

.reviews-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 56px;
  align-items: end;
}

.reviews-rating-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.reviews-rating-big small {
  font-size: 24px;
  color: var(--text-mute);
}

.reviews-rating-stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 4px;
  margin-top: 8px;
}

.reviews-rating-meta {
  font-size: 14px;
  color: var(--text-mute);
  margin-top: 6px;
}

.rating-breakdown {
  font-size: 13px;
}

.rating-bar-row {
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--text-soft);
}

.rating-bar {
  height: 6px;
  background: var(--line);
  border-radius: var(--r-full);
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: var(--r-full);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.review {
  background: var(--surface);
  padding: 30px 28px;
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
}

.r-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.r-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.r-quote {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.r-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.r-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hot), var(--gold));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.r-info {
  flex-grow: 1;
}

.r-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.r-verified {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}

/* ============ FAQ ============ */
.faq-section {
  padding: 80px 0;
  background: var(--bg);
}

.faq-list {
  max-width: 780px;
  margin: 56px auto 0;
}

details.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.2s;
}

details.faq-item[open] {
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
}

details.faq-item summary {
  padding: 22px 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  letter-spacing: -0.01em;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
  flex-shrink: 0;
}

details[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--ink);
  color: white;
}

.faq-body {
  padding: 0 28px 22px;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============ FINAL CTA ============ */
.final {
  padding: 100px 0;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 61, 0, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 184, 0, 0.12) 0%, transparent 50%);
}

.final-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.final .eyebrow {
  color: var(--gold);
}

.final .eyebrow::before {
  background: var(--gold);
}

.final h2 {
  color: var(--bg);
  margin: 20px 0 20px;
}

.final h2 em.script {
  color: var(--gold);
}

.final p {
  font-size: 17px;
  color: rgba(250, 250, 247, 0.78);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.final-price {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.final-price-now {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--bg);
  letter-spacing: -0.02em;
}

.final-price-was {
  font-size: 20px;
  color: rgba(250, 250, 247, 0.5);
  text-decoration: line-through;
}

.final-price-save {
  background: var(--hot);
  color: white;
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.final .btn-buy {
  padding: 20px 44px;
  height: auto;
  font-size: 16px;
}

.final-trust {
  margin-top: 24px;
  display: inline-flex;
  gap: 24px;
  font-size: 13px;
  color: rgba(250, 250, 247, 0.65);
  flex-wrap: wrap;
  justify-content: center;
}

.final-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.check-tiny {
  width: 14px;
  height: 14px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
}

.sticky-price {
  display: flex;
  flex-direction: column;
}

.sticky-price-now {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}

.sticky-price-was {
  font-size: 12px;
  color: var(--text-mute);
  text-decoration: line-through;
  margin-top: 2px;
}

.sticky-cta .btn-buy {
  flex: 1;
  height: 48px;
  font-size: 14px;
}

/* (Footer styles live in common.css) */

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery {
    position: static;
  }

  .nav {
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .spec-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .reviews-head {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

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

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-cell {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .compare-row.head {
    display: none;
  }

  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .thumbs {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .price-now {
    font-size: 32px;
  }

  .final-price-now {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}