/* ==========================================================================
   Ароматизатор-робот в машину — лендинг
   Преміальний темний automotive-стиль: карбон, гарматний метал, червоний акцент
   ========================================================================== */

/* ---- fonts ---- */
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* display face for headlines — geometric, premium, works well in uppercase */
@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Unbounded-cyrillic.woff2') format('woff2');
  font-weight: 500 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Unbounded-latin.woff2') format('woff2');
  font-weight: 500 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}

/* ---- design tokens ----
   Палітра будується навколо преміального automotive-настрою: майже чорний
   графітовий фон із текстурою карбону, металеві графітові поверхні карток
   і насичений червоний акцент — колір самого робота-ароматизатора.
   Бурштиновий лишається окремим теплим акцентом — тільки для знижок і
   термінових станів, щоб не конкурувати з червоним CTA. */
:root {
  --bg: #0A0B0D;
  --surface: #16181D;
  --surface-2: #1D2025;
  --line: #2B2F36;
  --line-soft: rgba(255, 255, 255, .06);

  --paper: #17191E;
  --paper-soft: #1F2228;

  --ink: #F3F1EA;
  --ink-soft: #ADB2BC;
  --ink-mute: #767B85;

  --paper-ink: #F3F1EA;
  --paper-ink-soft: #9DA2AC;

  --gold: #E8384F;
  --gold-dark: #B81E34;
  --gold-tint: rgba(232, 56, 79, .14);

  --ember: #E8A23A;
  --ember-tint: rgba(232, 162, 58, .14);
  --sage: #33C481;
  --sage-tint: rgba(51, 196, 129, .14);
  --danger: #FF5757;
  --danger-tint: rgba(255, 87, 87, .14);

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-pill: 999px;

  --shadow-s: 0 2px 12px rgba(0, 0, 0, .45);
  --shadow-m: 0 16px 36px -10px rgba(0, 0, 0, .65);
  --shadow-l: 0 30px 70px -16px rgba(0, 0, 0, .75);

  --container: 1180px;
  --container-narrow: 720px;

  --ease: cubic-bezier(.22, 1, .36, 1);

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");

  /* subtle woven carbon-fibre texture for the page background */
  --carbon: repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0px, rgba(255,255,255,.025) 1.5px, transparent 1.5px, transparent 7px),
            repeating-linear-gradient(-45deg, rgba(255,255,255,.02) 0px, rgba(255,255,255,.02) 1.5px, transparent 1.5px, transparent 7px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background-color: var(--bg);
  background-image: var(--carbon), var(--grain);
  background-blend-mode: normal, soft-light;
  background-size: auto, 180px 180px;
  font-family: 'Gilroy', 'AvenirNextCyr', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  cursor: default;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-shadow:
    1px 0 0 rgba(0, 0, 0, .9),
    -1px 0 0 rgba(0, 0, 0, .9),
    0 1px 0 rgba(0, 0, 0, .9),
    0 -1px 0 rgba(0, 0, 0, .9),
    1px 1px 0 rgba(0, 0, 0, .9),
    -1px 1px 0 rgba(0, 0, 0, .9),
    1px -1px 0 rgba(0, 0, 0, .9),
    -1px -1px 0 rgba(0, 0, 0, .9),
    2px 0 0 rgba(0, 0, 0, .8),
    -2px 0 0 rgba(0, 0, 0, .8),
    0 2px 0 rgba(0, 0, 0, .8),
    0 -2px 0 rgba(0, 0, 0, .8),
    1.4px 1.4px 0 rgba(0, 0, 0, .8),
    -1.4px 1.4px 0 rgba(0, 0, 0, .8),
    1.4px -1.4px 0 rgba(0, 0, 0, .8),
    -1.4px -1.4px 0 rgba(0, 0, 0, .8);
}

/* premium geometric display face — headlines, badges, prices, buttons */
h1, h2.title,
.hero__badge, .hero__title, .hero__price-new,
.section-eyebrow, .button,
.price-solo__value, .price-solo__badge,
.ty__title,
.order-step__num, .usage-step__num {
  font-family: 'Unbounded', 'Gilroy', sans-serif;
}

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

b, strong {
  font-weight: 700;
}

a {
  color: inherit;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.main_wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

section {
  padding: 52px 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ---- decorative blobs ---- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.blob--gold { background: var(--gold-tint); }
.blob--sage { background: var(--sage-tint); }

/* ---- section titles ---- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--gold-tint);
  color: var(--gold);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

h2.title {
  margin: 0 0 32px;
  font-weight: 800;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: 0em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
}

h2.title .hl {
  color: var(--gold);
}

.section-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 34px;
}

/* ---- buttons ---- */
.button {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  padding: 18px 24px;
  border: none;
  border-radius: var(--radius-m);
  background: var(--gold);
  font-family: 'Unbounded', 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 14px 30px -10px rgba(47, 107, 98, .45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -8px rgba(47, 107, 98, .55);
  filter: brightness(1.04);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px -8px rgba(47, 107, 98, .4);
}

/* ---- form fields ---- */
.field-label {
  display: block;
  margin: 0 0 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  padding: 16px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  background-color: var(--surface-2);
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.field:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-tint);
  outline: none;
}

.field::placeholder {
  color: var(--ink-mute);
  opacity: .8;
}

.order_form {
  margin: 0 0 4px;
}

/* ---- image watermark-crop helpers ---- */
.ph-crop {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}
.ph-crop--tight { aspect-ratio: 1 / 0.93; }
.ph-crop--wide  { aspect-ratio: 1 / 0.62; }

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */

.announce {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 11.5px;
  color: var(--ink-soft);
  position: relative;
  z-index: 2;
}

.announce__deal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ember);
  font-weight: 700;
}

.announce__timer {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.announce__timer .count {
  min-width: 36px;
  padding: 4px 7px;
  border-radius: 7px;
  background: var(--surface);
  color: var(--gold);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  padding: 28px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero__badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 29px;
  line-height: 1.16;
  letter-spacing: 0em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero__title span {
  color: var(--gold);
}

.hero__lead {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
}

.hero__feats {
  display: grid;
  margin: 0 0 24px;
  padding: 4px 16px;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
}

.hero__feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}

.hero__feat + .hero__feat {
  border-top: 1px solid var(--line);
}

.hero__feat-ico {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-tint);
  font-size: 17px;
}

.hero__feat b {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero__feat span {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--ink-mute);
}

.hero__media {
  position: relative;
  margin: 0 0 26px;
}

.hero__media img {
  display: block;
  width: 100%;
  border-radius: var(--radius-l);
}

/* ---- animated deal ribbon (right under the hero photo) ---- */
.deal-ribbon {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin: 0 0 26px;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 5px 0;
  background: linear-gradient(180deg, #ED2A3B, #C21528);
  box-shadow: var(--shadow-s);
}

.deal-ribbon__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: deal-ribbon-scroll 16s linear infinite;
}

.deal-ribbon__half {
  display: flex;
  flex: none;
  align-items: center;
}

.deal-ribbon__item {
  display: flex;
  flex: none;
  align-items: center;
  padding: 0 10px;
}

.deal-ribbon__pct {
  font-family: 'Unbounded', 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,.25);
  white-space: nowrap;
}

.deal-ribbon__robot {
  flex: none;
  height: 22px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}

.deal-ribbon__dot {
  flex: none;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

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

@media (prefers-reduced-motion: reduce) {
  .deal-ribbon__track { animation: none; }
}

/* rotating "gauge" badge — replaces a flat static badge with an animated dial */
.hero__gauge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 96px;
  height: 96px;
  z-index: 2;
}

.hero__gauge__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from -90deg, var(--gold) 0deg, rgba(47,107,98,0) 250deg, var(--gold) 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  animation: gauge-spin 6s linear infinite;
}

@keyframes gauge-spin {
  to { transform: rotate(360deg); }
}

.hero__gauge__core {
  position: absolute;
  inset: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-m);
  text-align: center;
}

.hero__gauge__num {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}

.hero__gauge__unit {
  margin-top: 3px;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero__buy {
  padding: 20px;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--line);
}

.hero__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 16px;
}

.hero__price-old {
  font-size: 15px;
  color: var(--ink-mute);
  text-decoration: line-through;
}

.hero__price-new {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
}

.hero__price-badge {
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: var(--gold-tint);
  color: var(--gold);
  font-weight: 800;
  font-size: 11.5px;
}

.hero__trust {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
}

/* ==========================================================================
   BENEFIT ICON CARDS
   ========================================================================== */

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto;
}

.benefit-card {
  padding: 20px 16px;
  border-radius: var(--radius-m);
  background: linear-gradient(160deg, var(--paper-soft), var(--paper));
  border: 1px solid var(--line);
  color: var(--paper-ink);
}

.benefit-card__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 0 12px;
  border-radius: 12px;
  font-size: 19px;
}

.benefit-card:nth-child(1) .benefit-card__ico { background: #FCE4DE; }
.benefit-card:nth-child(2) .benefit-card__ico { background: #EAE1FB; }
.benefit-card:nth-child(3) .benefit-card__ico { background: #FFF1C2; }
.benefit-card:nth-child(4) .benefit-card__ico { background: #DFF3E6; }

.benefit-card b {
  display: block;
  margin: 0 0 4px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.benefit-card span {
  display: block;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--paper-ink-soft);
}

/* ==========================================================================
   SITUATION LIST
   ========================================================================== */

.situation__list {
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}

.situation-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  border-radius: var(--radius-m);
  background: linear-gradient(160deg, var(--paper-soft), var(--paper));
  border: 1px solid var(--line);
  color: var(--paper-ink);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}

.situation-row:hover {
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.situation-row__ico {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--paper-soft);
  font-size: 16px;
}

.situation-row b {
  display: block;
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 800;
}

.situation-row span {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: var(--paper-ink-soft);
}

/* ==========================================================================
   SHOWCASE — icon use-case cards + real-photo banner
   ========================================================================== */

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto;
}

.showcase-item {
  padding: 22px 14px;
  border-radius: var(--radius-m);
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}

.showcase-item:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}

.showcase-item__ico {
  font-size: 24px;
  margin-bottom: 10px;
}

.showcase-item__name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
}

.showcase-item__range {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--ink-mute);
}

/* ---- lighting mode swatches (robot eye-display colours) ---- */
.modes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}

.mode-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 14px;
  border-radius: var(--radius-m);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  text-align: center;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}

.mode-card:hover {
  border-color: var(--mode-color, var(--gold));
  transform: translateY(-3px);
}

.mode-card__orb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mode-color, var(--gold));
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--mode-color, var(--gold)) 18%, transparent),
              0 0 26px 4px color-mix(in srgb, var(--mode-color, var(--gold)) 55%, transparent);
}

.mode-card__orb--dim {
  opacity: .55;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--mode-color, var(--gold)) 12%, transparent),
              0 0 14px 2px color-mix(in srgb, var(--mode-color, var(--gold)) 30%, transparent);
}

.mode-card b {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
}

.mode-card span {
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-mute);
}

@media (min-width: 640px) {
  .modes__grid { grid-template-columns: repeat(4, 1fr); max-width: 900px; }
}

.use-banner {
  position: relative;
  max-width: 440px;
  margin: 14px auto 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
}

.use-banner img {
  display: block;
  width: 100%;
}

.use-banner__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.86) 78%);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}

.use-banner__cap b {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
}

/* ==========================================================================
   USAGE STEPS ("ЯК КОРИСТУВАТИСЯ")
   ========================================================================== */

.usage-steps__grid {
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}

.usage-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-m);
  background: var(--surface);
  border: 1px solid var(--line);
}

.usage-step__num {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-tint);
  border: 1px solid rgba(232, 56, 79, .3);
  color: var(--gold);
  font-weight: 800;
  font-size: 15px;
}

.usage-step b {
  display: block;
  margin: 0 0 4px;
  font-size: 14.5px;
  font-weight: 800;
}

.usage-step span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.type-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 640px;
  margin: 24px auto 0;
  padding: 24px 0 24px 24px;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.type-banner__copy {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 12px;
}

.type-banner__title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 8px;
  text-transform: uppercase;
}

.type-banner__title span {
  color: var(--gold);
}

.type-banner__sub {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 26ch;
}

.type-banner img {
  display: block;
  flex: none;
  width: 96px;
  aspect-ratio: 1 / 0.8;
  border-radius: var(--radius-s);
  object-fit: cover;
  object-position: top center;
}

.type-banner__word {
  flex: none;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  padding: 16px 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--gold);
  background: var(--surface-2);
  border-left: 1px solid var(--line);
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */

.compare__wrap {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare__table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background: var(--surface);
}

.compare__table th,
.compare__table td {
  padding: 14px 14px;
  font-size: 12.5px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.compare__table tr:last-child td {
  border-bottom: none;
}

.compare__table th {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--surface-2);
}

.compare__table td:first-child,
.compare__table th:first-child {
  text-align: left;
  white-space: normal;
  color: var(--ink);
  font-weight: 700;
  font-size: 12.5px;
  min-width: 170px;
}

.compare__hero-col {
  background: var(--gold-tint);
  color: var(--gold-dark);
}

th.compare__hero-col {
  color: var(--gold);
}

.compare__yes { color: var(--sage); font-weight: 800; }
.compare__no  { color: var(--danger); font-weight: 800; }
.compare__mid { color: var(--ink-mute); font-weight: 700; }

.compare__hint {
  max-width: 720px;
  margin: 12px auto 0;
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-mute);
}

/* ==========================================================================
   SPECS TILES
   ========================================================================== */

.specs__layout {
  display: grid;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}

.specs__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.specs__tile {
  padding: 16px;
  border-radius: var(--radius-m);
  background: linear-gradient(160deg, var(--paper-soft), var(--paper));
  border: 1px solid var(--line);
  color: var(--paper-ink);
  text-align: center;
}

.specs__tile b {
  display: block;
  font-size: 17px;
  font-weight: 800;
}

.specs__tile span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--paper-ink-soft);
}

.specs__diagram {
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
}

.specs__meta {
  max-width: 560px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-mute);
}

/* ==========================================================================
   CHECKLIST
   ========================================================================== */

.checklist__list {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checklist-item__ico {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--sage);
  font-weight: 800;
  font-size: 12px;
}

.checklist-item span {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.checklist-item b {
  color: var(--ink);
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */

.reviews_stats_block {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 400px;
  margin: 0 auto 28px;
  padding: 18px 20px;
  border-radius: var(--radius-m);
  background: var(--surface);
  border: 1px solid var(--line);
}

.reviews_stats_block__num {
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.reviews_stats_block__stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 13px;
}

.reviews_stats_block p {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: var(--ink-mute);
}

.reviews__scroller {
  display: flex;
  gap: 12px;
  max-width: 100%;
  margin: 0 auto;
  padding: 4px 20px 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.reviews__scroller::-webkit-scrollbar {
  display: none;
}

.review_item {
  flex: 0 0 84%;
  scroll-snap-align: start;
  padding: 20px;
  border-radius: var(--radius-m);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
  color: var(--ink);
}

.review_item .text_block p {
  color: var(--ink);
  font-weight: 500;
}

/* photo attached to a review — placeholder now, real <img class="review_item__photo">
   later. Both share the exact same box so all four stay perfectly proportional. */
.review_item__photo,
.review_item__photo-placeholder {
  display: flex;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-s);
  margin: 0 0 16px;
}

.review_item__photo {
  display: block;
  object-fit: cover;
}

.review_item__photo-placeholder {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 2px dashed var(--paper-ink-soft);
  background: var(--paper-soft);
  text-align: center;
}

.review_item__photo-placeholder .icon {
  font-size: 26px;
  opacity: .55;
}

.review_item__photo-placeholder .label {
  max-width: 75%;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--paper-ink-soft);
}

.review_item .text_block p {
  margin: 12px 0 16px;
  font-size: 14px;
  line-height: 1.55;
}

.author_block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-badge {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 13px;
}

.author_info_block .author_info {
  font-weight: 800;
  font-size: 13.5px;
}

.author_info_block .text {
  margin-top: 2px;
  font-size: 11.5px;
  color: var(--gold-dark);
  font-weight: 700;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq__list {
  display: grid;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-m);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}

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

.faq-item summary::after {
  content: '+';
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  transition: transform .25s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__body {
  padding: 0 18px 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ==========================================================================
   GENERIC SURFACE CARD (palette section wrapper)
   ========================================================================== */

.surface-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--line);
}

/* ==========================================================================
   ORDER STEPS
   ========================================================================== */

.order-steps__list {
  display: grid;
  max-width: 560px;
  margin: 0 auto;
  padding: 4px 18px;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
}

.order-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.order-step + .order-step {
  border-top: 1px solid var(--line);
}

.order-step__ico {
  position: relative;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-tint);
  font-size: 19px;
}

.order-step__num {
  position: absolute;
  right: -3px;
  bottom: -3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--surface);
  color: #fff;
  font-weight: 800;
  font-size: 10px;
}

.order-step b {
  display: block;
  margin: 0 0 4px;
  font-size: 14.5px;
  font-weight: 800;
}

.order-step span {
  display: block;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ==========================================================================
   CTA BAND (order)
   ========================================================================== */

.cta-band {
  padding: 52px 0 60px;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 0 auto;
  padding: 24px;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--line);
}

.cta-band__thumb {
  width: 100%;
  margin: 0 0 18px;
}

.cta-band__thumb img {
  display: block;
  width: 100%;
  border-radius: var(--radius-l);
}

.cta-band__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin: 0 0 20px;
}

.cta-band__price .old {
  font-size: 14px;
  color: var(--ink-mute);
  text-decoration: line-through;
}

.cta-band__price .new {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
}

.cta-band__price .badge {
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: var(--gold-tint);
  color: var(--gold);
  font-weight: 800;
  font-size: 11.5px;
}

.cta-band__trust {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer_section {
  padding: 20px 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
  color: var(--ink-mute);
  position: relative;
  z-index: 1;
}

.footer_section a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   MOBILE STICKY CTA
   ========================================================================== */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, .4);
  transform: translateY(100%);
  transition: transform .3s var(--ease);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__price {
  flex: none;
}

.sticky-cta__price .old {
  font-size: 12px;
  color: var(--ink-mute);
  text-decoration: line-through;
}

.sticky-cta__price .new {
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
}

.sticky-cta .button {
  margin: 0;
  flex: 1 1 auto;
  padding: 13px 18px;
  font-size: 14px;
}

/* ==========================================================================
   how-order-img (thank-you "next steps")
   ========================================================================== */

.how-order-img {
  display: block;
  min-height: 100px;
  padding: 18px 84px 18px 20px;
  background-color: var(--surface);
  background-size: 52px !important;
  background-position: right 18px center !important;
  background-repeat: no-repeat !important;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  position: relative;
}

.how-order-img.img1 { background-image: url("../images/order1.png"); }
.how-order-img.img2 { background-image: url("../images/order2.png"); }
.how-order-img.img3 { background-image: url("../images/order3.png"); }
.how-order-img.img4 { background-image: url("../images/order4.png"); }

.how-order-img .title {
  margin: 0 0 4px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--gold);
}

.how-order-img .description {
  max-width: 210px;
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

[data-aos] {
  transition-timing-function: var(--ease) !important;
}

/* ==========================================================================
   RESPONSIVE — TABLET
   ========================================================================== */

@media (min-width: 640px) {
  section { padding: 68px 0; }

  h2.title { font-size: 30px; }

  .benefits__grid { grid-template-columns: repeat(4, 1fr); max-width: 900px; }

  .showcase__grid { grid-template-columns: repeat(4, 1fr); max-width: 900px; }
  .use-banner { max-width: 520px; }

  .usage-steps__grid { grid-template-columns: 1fr 1fr; max-width: 720px; }

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

  .specs__layout { grid-template-columns: 1fr 1fr; align-items: center; max-width: 780px; }
  .specs__tiles { grid-template-columns: repeat(2, 1fr); }

  .review_item { flex-basis: 46%; }

  .hero__title { font-size: 36px; }
}

/* ==========================================================================
   RESPONSIVE — DESKTOP
   ========================================================================== */

@media (min-width: 1024px) {
  .sticky-cta { display: none; }

  section { padding: 88px 0; }

  h2.title { font-size: 36px; }

  .section-head { max-width: 720px; margin-bottom: 48px; }

  .hero__inner {
    max-width: var(--container);
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
  }

  .hero__copy { order: 1; }
  .hero__right { order: 2; }

  .showcase__grid { max-width: 1000px; }

  .review_item { flex-basis: 30%; }

  .compare__table { min-width: 0; }
}

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */

.ty {
  min-height: 100vh;
  background-color: var(--bg);
  background-image: var(--grain);
  background-blend-mode: soft-light;
  background-size: 180px 180px;
  overflow-x: hidden;
}

.ty__hero {
  position: relative;
  padding: 56px 20px 64px;
  background: radial-gradient(120% 140% at 20% -10%, #2A0810 0%, var(--gold-dark) 42%, var(--bg) 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
}

.ty__hero .blob {
  background: rgba(255, 255, 255, .18);
  opacity: 1;
}

.ty__badge-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .35);
  animation: ty-pop .5s var(--ease);
}

.ty__badge-icon svg {
  width: 40px;
  height: 40px;
}

@keyframes ty-pop {
  0% { transform: scale(.35); opacity: 0; }
  70% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}

.ty__title {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0em;
  text-transform: uppercase;
}

.ty__subtitle {
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .92);
}

.ty__card {
  position: relative;
  z-index: 2;
  max-width: 460px;
  width: calc(100% - 40px);
  margin: -36px auto 0;
  padding: 26px 24px 10px;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-l);
  overflow: hidden;
  text-align: left;
  color: var(--ink);
}

.ty__ribbon {
  position: absolute;
  top: 16px;
  right: -38px;
  width: 160px;
  padding: 6px 0;
  background: var(--sage);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(38deg);
  box-shadow: 0 3px 8px rgba(0, 0, 0, .18);
}

.ty__ribbon.is-warn {
  background: var(--gold);
  color: #FFFFFF;
}

.ty__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  flex-wrap: wrap;
}

.ty__row:last-child {
  border-bottom: none;
}

.ty__label {
  flex: none;
  width: 84px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.ty__value {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 700;
  font-size: 15.5px;
  overflow-wrap: anywhere;
  color: var(--ink);
}

.ty__value.ty__price {
  color: var(--gold);
  font-size: 20px;
  font-weight: 800;
}

.ty__check {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: none;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
}

.ty__check--ok {
  background: var(--sage-tint);
  color: var(--sage);
}

.ty__check--warn {
  background: var(--gold-tint);
  color: var(--gold);
}

.ty__back {
  max-width: 320px;
  margin: 28px auto 0;
}

.ty__next {
  max-width: 460px;
  width: calc(100% - 40px);
  margin: 40px auto 0;
}

.ty__next-title {
  margin: 0 0 16px;
  font-weight: 800;
  font-size: 17px;
  text-align: center;
  text-transform: uppercase;
  color: var(--ink);
}

.ty__next-list {
  display: grid;
  gap: 12px;
}

.ty__footer-space {
  height: 56px;
}

/* ==========================================================================
   UPSELL OFFER (thank-you page)
   ========================================================================== */

.upsell {
  position: relative;
  max-width: 460px;
  width: calc(100% - 40px);
  margin: 32px auto 0;
  padding: 24px 22px 22px;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 5px var(--gold-tint), var(--shadow-l);
  overflow: hidden;
}

.upsell__badge {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.upsell__media {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 18px;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.upsell__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.upsell__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  color: var(--ink);
}

.upsell__text {
  margin: 0 0 18px;
  font-size: 13.5px;
  line-height: 1.6;
  text-align: center;
  color: var(--ink-soft);
}

.upsell__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 0 0 18px;
}

.upsell__price .num {
  font-size: 30px;
  font-weight: 800;
  color: var(--gold);
}

.upsell__price .unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-mute);
}

.upsell__form {
  margin: 0;
}

.upsell__form .field {
  margin-bottom: 10px;
}

.upsell__note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-mute);
}

@media (min-width: 640px) {
  .ty__title { font-size: 32px; }
  .ty__hero { padding: 72px 20px 84px; }
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust_bar {
  padding: 18px 0;
  position: relative;
  z-index: 1;
}

.trust_bar__list {
  display: flex;
  width: 100%;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
  overflow: hidden;
}

.trust_bar__item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}

.trust_bar__item + .trust_bar__item {
  border-left: 1px solid var(--line);
}

.trust_bar__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.3;
}

.trust_bar__item b {
  color: var(--gold);
  font-size: 13.5px;
  font-weight: 800;
  white-space: nowrap;
}

.trust_bar__item span.trust_bar__label {
  font-size: 9.5px;
  line-height: 1.25;
  color: var(--ink-mute);
}

.trust_bar__icon {
  flex: none;
  font-size: 17px;
  line-height: 1;
}

@media (min-width: 480px) {
  .trust_bar__item { gap: 10px; padding: 16px 14px; }
  .trust_bar__item span.trust_bar__label { font-size: 11.5px; }
}

/* ==========================================================================
   HERO MEDIA BADGE
   ========================================================================== */

.hero__media-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .03em;
  box-shadow: 0 10px 20px -8px rgba(47, 107, 98, .5);
}

/* ==========================================================================
   BENEFIT CHIPS (hero trust strip)
   ========================================================================== */

.benefits_list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
}

.benefit_item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.3;
}

.benefit_item::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ==========================================================================
   DYNAMIC PRICE CARD (price-solo) — synced with the qty picker
   ========================================================================== */

.price-solo {
  position: relative;
  overflow: hidden;
  margin: 0 0 16px;
  padding: 16px 18px;
  border-radius: var(--radius-m);
  background: var(--surface);
  border: 1px solid var(--line);
}

.price-solo__badge {
  position: absolute;
  top: 13px;
  left: -36px;
  z-index: 1;
  width: 144px;
  padding: 4px 0;
  background: var(--gold);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .03em;
  text-align: center;
  transform: rotate(-40deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
}

.price-solo__info {
  text-align: right;
}

.price-solo__label {
  margin: 0 0 6px;
  font-size: 11.5px;
  color: var(--ink-mute);
}

.price-solo__row {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.price-solo__old {
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  color: var(--ink-mute);
  text-decoration: line-through;
  transition: color .2s var(--ease);
}

.price-solo__value {
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  transition: color .2s var(--ease);
}

/* ==========================================================================
   QUANTITY (KG) PICKER
   ========================================================================== */

.qty_picker-wrap {
  margin: 4px 0 14px;
  padding: 14px 14px;
  border-radius: var(--radius-m);
  background: var(--surface);
  border: 1px solid var(--line);
}

.qty_picker-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--ink);
}

.qty_picker-label .selected-qty {
  color: var(--gold);
  font-weight: 800;
}

.qty_picker-area {
  margin: -4px 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.qty_picker-area .selected-area {
  color: var(--gold);
  font-weight: 800;
  font-size: 15px;
}

.qty_picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.qty_pill {
  position: relative;
}

.qty_pill__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.qty_pill__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 14px 5px;
  border-radius: var(--radius-s);
  border: 1.5px solid var(--line);
  background: var(--surface-2);
  cursor: pointer;
  text-align: center;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

.qty_pill__kg {
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
}

.qty_pill__old {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
  text-decoration: line-through;
}

.qty_pill__new {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}

.qty_pill__input:checked + .qty_pill__label {
  border-color: var(--gold);
  background: var(--gold-tint);
  transform: translateY(-1px);
}

.qty_pill__input:checked + .qty_pill__label .qty_pill__kg {
  color: var(--gold);
}

.qty_pill__input:focus-visible + .qty_pill__label {
  background: var(--gold-tint);
}

/* ==========================================================================
   SQUARE-METER CALCULATOR
   ========================================================================== */

.area_calc-wrap {
  margin: 0 0 16px;
  padding: 14px 14px;
  border-radius: var(--radius-m);
  background: var(--surface);
  border: 1px solid var(--line);
}

.area_calc-label {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--ink);
}

.area_calc-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.area_calc-input {
  margin: 0;
  flex: 1 1 auto;
}

.area_calc-unit {
  flex: none;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-mute);
}

.area_calc-result {
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-mute);
  transition: color .2s var(--ease);
}

.area_calc-result.is-active {
  color: var(--ink-soft);
}

.area_calc-result b {
  color: var(--gold);
  font-weight: 800;
}

/* ==========================================================================
   COLOUR PICKER (real Barko palette)
   ========================================================================== */

.color_picker-wrap {
  margin: 4px 0 16px;
  padding: 14px 14px 6px;
  border-radius: var(--radius-m);
  background: var(--surface);
  border: 1px solid var(--line);
}

.color_picker-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--ink);
}

.color_picker-label .selected-color {
  color: var(--gold);
  font-weight: 800;
}

.color_picker-scroll {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.color_picker {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 4px;
  max-height: 232px;
  overflow-y: auto;
  padding: 2px 2px 8px;
  scrollbar-width: none;
}

.color_picker::-webkit-scrollbar {
  display: none;
}

.color_picker-track {
  flex: none;
  width: 6px;
  margin: 2px 0 8px;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.color_picker-thumb {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 40%;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  transition: top .08s linear;
}

.swatch {
  position: relative;
}

.swatch__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.swatch__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 8px 3px 11px;
  border-radius: var(--radius-s);
  cursor: pointer;
  text-align: center;
  transition: background .2s var(--ease);
}

.swatch__circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .35), inset 0 -3px 5px rgba(0, 0, 0, .28), inset 0 2px 3px rgba(255, 255, 255, .25);
  border: 3px solid var(--surface-2);
  outline: 1px solid var(--line);
  outline-offset: 0;
  transition: transform .2s var(--ease), outline-color .2s var(--ease), outline-offset .2s var(--ease);
}

.swatch__circle--outline {
  border-color: var(--line);
}

.swatch__name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink-soft);
}

.swatch__input:checked + .swatch__label .swatch__circle {
  transform: scale(1.12);
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.swatch__input:checked + .swatch__label .swatch__name {
  color: var(--gold);
  font-weight: 800;
}

.swatch__input:focus-visible + .swatch__label {
  background: var(--gold-tint);
}

@media (min-width: 420px) {
  .color_picker { grid-template-columns: repeat(5, 1fr); }
}

@media (min-width: 1024px) {
  .color_picker { grid-template-columns: repeat(10, 1fr); max-height: none; overflow: visible; }
  .color_picker-track { display: none; }
}

/* decorative full palette showcase (larger swatches, no inputs) */
.palette-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.palette-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.palette-grid__circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--surface-2);
  box-shadow: var(--shadow-s), inset 0 -3px 6px rgba(0, 0, 0, .25);
}

.palette-grid__name {
  font-size: 10.5px;
  font-weight: 600;
  text-align: center;
  color: var(--ink-mute);
}

@media (min-width: 640px) {
  .palette-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (min-width: 1024px) {
  .palette-grid { grid-template-columns: repeat(10, 1fr); max-width: 1040px; }
}

/* ==========================================================================
   COLOR SELECT (order form: compact photo swatches, red / black)
   ========================================================================== */

.color-select {
  margin: 0 0 16px;
}

.color-select__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.color-opt__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.color-opt__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 5px 10px 5px 5px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: var(--surface-2);
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

.color-opt__thumb {
  flex: none;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 35%, #efe9db 0%, #d6cdb8 62%, #b7ac93 100%);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}

.color-opt__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.color-opt__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-soft);
}

.color-opt__check {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  opacity: 0;
  transform: scale(.5);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}

.color-opt__input:checked + .color-opt__card {
  border-color: var(--gold);
  background: var(--gold-tint);
}

.color-opt__input:checked + .color-opt__card .color-opt__name {
  color: var(--gold);
}

.color-opt__input:checked + .color-opt__card .color-opt__check {
  opacity: 1;
  transform: scale(1);
}

.color-opt__input:focus-visible + .color-opt__card {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ==========================================================================
   SCARCITY LINE
   ========================================================================== */

.products_count {
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
}

.products_count span {
  margin: 0 3px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: var(--danger);
  color: #fff;
  font-weight: 700;
}

/* ==========================================================================
   VIDEO SHOWCASE (self-hosted, muted autoplay-on-scroll loop)
   ========================================================================== */

.video-section {
  padding: 52px 0;
}

.video-frame {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow-l), 0 0 90px -20px rgba(232, 56, 79, .35);
  aspect-ratio: 4 / 5;
}

.video-frame__el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame__mute {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  background: rgba(10, 11, 13, .72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  pointer-events: none;
}

.video-caption {
  max-width: 480px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-mute);
}

/* ==========================================================================
   STORY (2-col text + photo, description sections)
   ========================================================================== */

.story {
  padding: 0;
}

.story .container {
  display: grid;
  gap: 24px;
}

.story__visual img,
.section-image img {
  display: block;
  width: 100%;
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
}

/* ---- product spotlight: showroom-pedestal card for cutout product photos ---- */
.product-spotlight {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius-l);
  background: radial-gradient(ellipse at 50% 32%, #efe9db 0%, #d6cdb8 58%, #b7ac93 100%);
  box-shadow: var(--shadow-m), inset 0 2px 10px rgba(255,255,255,.5), inset 0 -18px 30px rgba(0,0,0,.12);
  border: 1px solid var(--line);
}

.product-spotlight img {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.35));
}

.text_block {
  max-width: 560px;
  margin: 0 auto;
}

.text_block p {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.text_block p:last-child {
  margin: 0;
}

.text_block p b {
  color: var(--ink);
}

.text_block p .hl-key {
  color: var(--gold);
  font-weight: 800;
}

.text_block p.lead {
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--ink);
}

@media (min-width: 1024px) {
  .story .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
  }

  .story--reverse .container { direction: rtl; }
  .story--reverse .container > * { direction: ltr; }

  .text_block { max-width: none; }
}

/* ==========================================================================
   SPECS SHEET (label / value rows)
   ========================================================================== */

.specs_table {
  display: grid;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto;
}

.specs_row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px 14px 18px;
  border-radius: var(--radius-m);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
}

.specs_label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.specs_label::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.specs_value {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

@media (min-width: 640px) {
  .specs_table { grid-template-columns: 1fr 1fr; }
  .specs_row:first-child { grid-column: 1 / -1; }
}

/* ==========================================================================
   GALLERY (real install photos grid)
   ========================================================================== */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
  box-shadow: var(--shadow-s);
  aspect-ratio: 4 / 3;
}

.gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.04);
}


/* ==========================================================================
   LIVE ORDER TOAST
   ========================================================================== */

.live-toast {
  position: fixed;
  left: 50%;
  top: calc(14px + env(safe-area-inset-top));
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: calc(100vw - 32px);
  padding: 12px 16px;
  border-radius: var(--radius-m);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-l);
  transform: translate(-50%, -14px) scale(.97);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}

.live-toast.is-visible {
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
}

.live-toast__icon {
  flex: none;
  font-size: 18px;
  line-height: 1;
}

.live-toast__text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.live-toast__text b {
  color: var(--gold);
}

@media (min-width: 1024px) {
  .live-toast {
    left: auto;
    right: 22px;
    top: 22px;
    transform: translateY(-14px) scale(.97);
  }

  .live-toast.is-visible {
    transform: translateY(0) scale(1);
  }
}

/* ==========================================================================
   SIMPLE STATIC PAGE (politics)
   ========================================================================== */

.page-hero {
  padding: 64px 0 28px;
  text-align: center;
}

.page-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
}

.static-copy h3 {
  margin: 32px 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}

.static-copy p {
  margin-bottom: 18px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.static-copy a {
  color: var(--gold);
  text-decoration: underline;
}
