@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;700&display=swap');

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/oswald-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/oswald-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Layout — фіксований макет 375px (десктоп / планшет) */
  --page-width: 375px;
  --page-padding: 15px;
  --section-padding-y: 48px;
  --section-padding-x: 20px;

  /* Colors */
  --color-white: #fff;
  --color-text: #111;
  --color-text-muted: #cecece;
  --color-dark: #24221d;
  --color-dark-deep: #110e0d;
  --color-black: #010101;
  --color-video-bg: #0d0300;
  --color-dot-inactive: #333;
  --color-dark-gray: #3b3a3a;
  --color-purple-deep: #300b3c;
  --color-purple-card: #4f176c;
  --color-purple-muted: #3e2c48;
  --color-purple-grey: #504059;
  --color-gold: #fffa7b;
  --color-gold-dark: #c46709;
  --color-price-bg: var(--color-purple-deep);
  --color-promo-bg: #510b67;
  --color-promo-border: #d58dff;
  --color-promo-text: #6f1462;
  --color-red: #e50000;
  --color-red-hover: #c40000;
  --color-red-border: #e94f37;
  --color-accent-red: #ff383c;
  --color-yellow: #fc0;
  --color-text-dark: #0c0a04;
  --color-border-dark: rgba(12, 10, 4, 0.15);
  --color-border-light: rgba(255, 255, 255, 0.2);
  --color-brown: #5d1f16;
  --color-tags-bg: rgba(255, 255, 255, 0.15);
  --gradient-price: linear-gradient(to top, var(--color-dark-gray), var(--color-dark-deep));

  /* Typography */
  --font-family: 'Inter', sans-serif;
  --font-family-display: 'Oswald', sans-serif;
  --font-family-condensed: 'Roboto Condensed', sans-serif;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 26px;
  --text-h4: 24px;
  --text-h5: 20px;
  --text-h6: 18px;
  --text-h2: 44px;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-normal: 1.5;
  --lh-heading: 1.2;
  --lh-h4: 1.3;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 16px;

  /* Spacing */
  --gap-xs: 6px;
  --gap-sm: 8px;
  --gap-md: 12px;
  --gap-lg: 20px;
  --gap-xl: 24px;
  --gap-2xl: 48px;
  --gap-3xl: 64px;
  --gap-section: 36px;
}

/* Мобільна версія: fluid typography + відступи (320–430px) */
@media (max-width: 480px) {
  :root {
    --page-width: 100%;
    --page-padding: clamp(12px, 4vw, 20px);
    --section-padding-y: clamp(40px, 12vw, 48px);
    --section-padding-x: clamp(16px, 5vw, 20px);

    --text-xs: clamp(11px, 3.2vw, 12px);
    --text-sm: clamp(13px, 3.8vw, 14px);
    --text-md: clamp(15px, 4.2vw, 16px);
    --text-lg: clamp(16px, 4.8vw, 18px);
    --text-xl: clamp(18px, 5.2vw, 20px);
    --text-2xl: clamp(22px, 7vw, 26px);
    --text-h4: clamp(20px, 6.2vw, 24px);
    --text-h5: clamp(18px, 5.2vw, 20px);
    --text-h6: clamp(16px, 4.8vw, 18px);
    --text-h2: clamp(32px, 8vw, 44px);

    --gap-xs: clamp(5px, 1.6vw, 6px);
    --gap-sm: clamp(6px, 2.2vw, 8px);
    --gap-md: clamp(10px, 3.2vw, 12px);
    --gap-lg: clamp(16px, 5vw, 20px);
    --gap-xl: clamp(20px, 6vw, 24px);
    --gap-2xl: clamp(40px, 12vw, 48px);
    --gap-3xl: clamp(52px, 16vw, 64px);
    --gap-section: clamp(28px, 9vw, 36px);
  }

  body {
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
  }

  .wrapper {
    padding-bottom: clamp(20px, 6vw, 24px);
  }

  .models-section__heading {
    max-width: min(334px, 100%);
  }

  .order-step {
    max-width: min(255px, 100%);
  }

}

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

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  background: var(--color-purple-deep);
  color: var(--color-text);
  font-family: var(--font-family);
  line-height: var(--lh-normal);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.wrapper {
  max-width: var(--page-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--page-padding) 24px;
  overflow-x: hidden;
  background: var(--color-purple-deep);
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: var(--font-family-display);
}

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

main {
  width: 100%;
}

.page-bleed {
  width: calc(100% + var(--page-padding) * 2);
  max-width: calc(100% + var(--page-padding) * 2);
  margin-left: calc(-1 * var(--page-padding));
  margin-right: calc(-1 * var(--page-padding));
}

.hero-image {
  height: auto;
  object-fit: cover;
  display: block;
}

.price-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  background: var(--color-price-bg);
  font-family: var(--font-family-display);
  color: var(--color-white);
}

.price-row {
  display: flex;
  align-self: stretch;
}

.price-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 70px;
  padding: 10px;
}

.price-block--left {
  align-items: center;
}

.price-block--right {
  align-items: center;
  color: var(--color-text-muted);
}

.price-badge {
  background-color: var(--color-red);
  border-radius: 5px;
  padding: 0 10px;
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  line-height: var(--lh-normal);
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.price-current {
  font-size: var(--text-2xl);
  font-weight: var(--fw-semibold);
  line-height: 34px;
  letter-spacing: 0.38px;
  white-space: nowrap;
}

.price-old-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.price-old {
  font-size: var(--text-xl);
  font-weight: var(--fw-regular);
  line-height: 28px;
  letter-spacing: -0.26px;
  text-decoration: line-through;
  white-space: nowrap;
}

.price-promo {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 342px;
  max-width: 100%;
  min-height: 43px;
  padding: 3px 6px;
  border: 1px solid var(--color-promo-border);
  border-radius: 12px;
  background: var(--color-promo-bg);
  font-family: var(--font-family);
  text-align: center;
}

.price-promo__main {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-white);
  white-space: nowrap;
}

.price-promo__dates {
  padding: 1px 2px;
  border-radius: 3px;
  background: var(--color-white);
  font-size: 11.75px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-promo-text);
}

.price-promo__note {
  margin: 0;
  font-size: 7.7px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
  white-space: nowrap;
}

.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-xl);
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-dark);
}

.cta-stock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-xs);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  text-align: center;
}

.cta-stock__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 21px;
  padding: 0 4px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  color: var(--color-dark);
  font-size: var(--text-md);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-normal);
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 55px;
  padding: 6px 12px;
  border: 1px solid var(--color-red-border);
  border-radius: var(--radius-md);
  background: linear-gradient(
    180.39deg,
    #e50000 2.43%,
    #7f0000 156.78%
  );
  box-shadow: 0 4px 5.4px rgba(243, 5, 5, 0.67);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  line-height: var(--lh-normal);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
  animation: cta-pulse 1.5s infinite;
}

.cta-button:hover,
.cta-button:focus {
  background: linear-gradient(
    180.39deg,
    #c40000 2.43%,
    #6b0000 156.78%
  );
  box-shadow: 0 4px 8px rgba(243, 5, 5, 0.8);
  color: var(--color-white);
  animation: none;
  filter: brightness(0.96);
}

.cta-button:disabled {
  cursor: not-allowed;
  opacity: 0.75;
  animation: none;
}

@keyframes cta-pulse {
  0% {
    transform: scale(0.95);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.95);
  }
}

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

.models-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-purple-deep);
  color: var(--color-white);
}

.models-section__container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
  width: 100%;
}

.models-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-lg);
  width: 100%;
}

.models-section__tagline {
  margin: 0;
  display: flex;
  align-items: center;
  height: 28px;
  padding: 2px 8px;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 123, 0.05);
  color: var(--color-gold);
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
}

.models-section__subtitle {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.models-section__footer {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xl);
  width: 100%;
}

.models-section__heading {
  margin: 0;
  max-width: 334px;
  font-family: var(--font-family-display);
  font-size: clamp(30px, 9.6vw, 36px);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.36px;
  text-align: center;
}

.models-section__heading-accent {
  color: #fff07b;
}

.models-section__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.models-section__stock {
  margin: 0;
}

.models-section__cta {
  flex-shrink: 0;
}

.cta-button--gold {
  height: 56px;
  border-color: var(--color-gold-dark);
  background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  box-shadow: 0 4px 5.4px rgba(196, 103, 9, 0.67);
  color: var(--color-black);
  font-size: var(--text-lg);
}

.cta-button--gold:hover,
.cta-button--gold:focus {
  background: linear-gradient(180deg, var(--color-gold) 0%, #a85607 100%);
  box-shadow: 0 4px 8px rgba(196, 103, 9, 0.8);
  color: var(--color-black);
}

.model-card {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 120px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: var(--color-purple-card);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: var(--color-white);
}

.model-card--one {
  background-image: url('../imagesm1200/Cardone.webp');
}

.model-card--two {
  background-image: url('../imagesm1200/Cardtwo.webp');
}

.model-card--three {
  background-image: url('../imagesm1200/Cardthree.webp');
}

.model-card__info {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 24px;
  background: none;
}

.model-card__name {
  margin: 0 0 12px;
  font-family: var(--font-family-display);
  font-size: var(--text-h4);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h4);
  letter-spacing: -0.24px;
}

.model-card__volume {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.ideal-section {
  position: relative;
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-purple-muted) url('../imagesm1200/backideal.webp') center / cover
    no-repeat;
  color: var(--color-white);
}

.ideal-section__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
  width: 100%;
}

.ideal-section__heading {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: clamp(30px, 9.6vw, 36px);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.36px;
  text-align: center;
}

.ideal-section__heading-accent {
  color: var(--color-gold);
}

/* Верхній відступ звільняє місце під скутер на фоні секції (351/335 ширини блока) */
.ideal-section__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 104.8%;
}

.ideal-item {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 24px;
}

.ideal-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.ideal-item__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.ideal-item__title {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: var(--text-h6);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: -0.18px;
}

.ideal-item__accent {
  color: var(--color-gold);
}

.ideal-item__text {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.advantages-section {
  position: relative;
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-purple-deep) url('../imagesm1200/backtab.webp') center / cover
    no-repeat;
  color: var(--color-white);
}

.advantages-section__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  width: 100%;
}

.advantages-section__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.advantages-section__heading {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: clamp(30px, 9.6vw, 36px);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.36px;
  color: var(--color-white);
}

.advantages-section__subtitle {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-white);
}

.advantages-section__card {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  width: 100%;
}

/* Картки експортовані з макета цілком — фото і текст запечені в зображенні */
.adv-item {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.specs-section {
  position: relative;
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-purple-grey) url('../imagesm1200/backcharacter.webp') center / cover
    no-repeat;
  color: var(--color-white);
  overflow: hidden;
}

.specs-section__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-section);
  width: 100%;
}

.specs-section__title {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  width: 100%;
  text-align: center;
}

.specs-section__heading {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: clamp(30px, 9.6vw, 36px);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.36px;
}

.specs-section__subtitle {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

/* Таблиця експортована з макета цілком — текст запечений у зображенні */
.specs-section__table {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.dimensions-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-purple-grey);
  color: var(--color-white);
}

.dimensions-section__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  align-items: center;
}

.dimensions-section__heading {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: clamp(30px, 9.6vw, 36px);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.36px;
  max-width: 335px;
  text-align: center;
}

.dimensions-section__subtitle {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  max-width: 335px;
  text-align: center;
}

.dimensions-section__figure {
  width: 100%;
  margin: 0;
  height: 351px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

/* У scooter.webp запечена прозора рамка під тінь (4px з боків, 8px знизу).
   Розтягуємо зображення на її величину, щоб фото заповнило контейнер без відступів. */
.dimensions-section__image {
  display: block;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  max-width: none;
  margin: 0 -4px;
  object-fit: fill;
}

.dimensions-section__features {
  width: 335px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.dimensions-section__features-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.dimensions-feature {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dimensions-feature__media {
  width: 150px;
  height: 96px;
  border: 1px solid #bfbfbf;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.dimensions-feature__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dimensions-feature__text {
  width: 100%;
  margin-top: 8px;
  text-align: center;
}

.dimensions-feature__line {
  margin: 0;
  font-size: 10px;
  font-weight: var(--fw-semibold);
  line-height: 1.8;
  text-transform: uppercase;
  color: var(--color-white);
  letter-spacing: 0;
}

.dimensions-feature__line--muted-70 {
  color: rgba(255, 255, 255, 0.7);
}

.dimensions-feature__line--muted-50 {
  color: rgba(255, 255, 255, 0.5);
}

.video-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-purple-deep);
  color: var(--color-white);
}

.video-section__container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2xl);
  width: 100%;
  align-items: center;
}

.video-section__heading {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: clamp(30px, 9.6vw, 36px);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.36px;
  text-align: center;
  width: 100%;
}

.video-section__wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.video-section__player {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  background: var(--color-black);
  object-fit: cover;
  vertical-align: middle;
}

.video-section__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(180deg, #d602f4 0%, #7d018e 100%);
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
  color: var(--color-white);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.video-section__play:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.video-section__play.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.video-section__play.is-playing .video-section__play-icon--play {
  display: none;
}

.video-section__play:not(.is-playing) .video-section__play-icon--pause {
  display: none;
}

.video-section__play-icon {
  display: block;
}

.video-section__play-icon--play {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 44px solid currentColor;
}

.video-section__play-icon--pause {
  position: relative;
  width: 40px;
  height: 48px;
}

.video-section__play-icon--pause::before,
.video-section__play-icon--pause::after {
  content: '';
  position: absolute;
  top: 0;
  width: 12px;
  height: 48px;
  background: currentColor;
}

.video-section__play-icon--pause::before {
  left: 4px;
}

.video-section__play-icon--pause::after {
  right: 4px;
}

.video-section__cta {
  width: 100%;
}

/* Жовтий фон — плоский еквівалент розмитого еліпса #fdc401/75% на білому з макета */
.supplier-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: #fdd340;
  color: var(--color-purple-deep);
}

.supplier-section__container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2xl);
  width: 100%;
}

.supplier-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-lg);
  width: 100%;
  text-align: center;
}

.supplier-section__logo {
  display: block;
  width: 98px;
  height: auto;
}

.supplier-section__heading {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: clamp(30px, 9.6vw, 36px);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.36px;
}

.supplier-section__intro {
  margin: 0;
  font-size: var(--text-md);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.supplier-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.supplier-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 32px;
  background: #252323 center / cover no-repeat;
  color: var(--color-white);
}

/* Фони з макета — світіння всередині картки запечене в зображенні */
.supplier-card:nth-child(1) {
  background-image: url('../imagesm1200/zoneone.webp');
}

.supplier-card:nth-child(2) {
  background-image: url('../imagesm1200/zonetwo.webp');
}

.supplier-card:nth-child(3) {
  background-image: url('../imagesm1200/zonethree.webp');
}

.supplier-card:nth-child(4) {
  background-image: url('../imagesm1200/zonefour.webp');
}

.supplier-card:first-child {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.supplier-card:last-child {
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.supplier-card__icon {
  display: block;
}

.supplier-card__title {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--text-h6);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: -0.18px;
}

.supplier-card__text {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.supplier-card__list {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  font-size: var(--text-xs);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.reviews-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-purple-grey);
  color: var(--color-white);
}

.reviews-section__container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2xl);
  width: 100%;
}

.reviews-section__header {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  width: 100%;
  align-items: center;
}

.reviews-section__heading {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: clamp(30px, 9.6vw, 36px);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.36px;
  text-align: center;
}

.reviews-section__heading-accent {
  color: #fff07b;
}

.reviews-section__subtitle {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  text-align: center;
}

.reviews-carousel {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2xl);
  width: 100%;
}

.reviews-carousel__viewport {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

.reviews-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.reviews-carousel__track {
  display: flex;
  transition: transform 0.35s ease;
}

.reviews-carousel__track.is-dragging {
  transition: none;
}

.reviews-carousel__slide {
  flex: 0 0 100%;
  margin: 0;
  display: flex;
  justify-content: center;
}

.reviews-carousel__image {
  display: block;
  width: 320px;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.reviews-carousel__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.reviews-carousel__buttons {
  display: flex;
  width: 137px;
  justify-content: space-between;
}

.reviews-carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  cursor: pointer;
  line-height: 0;
}

.reviews-carousel__btn img {
  display: block;
  width: 24px;
  height: 24px;
}

.reviews-carousel__dots {
  display: flex;
  gap: var(--gap-sm);
  align-items: center;
  justify-content: center;
}

.reviews-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.reviews-carousel__dot.is-active {
  background: var(--color-white);
}

/* Секція — цілий кадр з макета 375x629; у HTML лише заголовок поверх фото */
.producer-section {
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 375 / 629;
  overflow: hidden;
  padding: var(--section-padding-y) var(--section-padding-x);
  color: var(--color-purple-deep);
}

.producer-section__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.producer-section__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-md);
  width: 100%;
}

.producer-section__heading {
  margin: 0;
  width: 100%;
  font-family: var(--font-family-display);
  font-size: clamp(30px, 9.6vw, 36px);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.36px;
  text-align: center;
}

.producer-section__subtitle {
  margin: 0;
  width: 100%;
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  text-align: center;
}

.order-steps-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-purple-deep) url('../imagesm1200/backdelivery.webp') center / cover
    no-repeat;
  color: var(--color-white);
}

.order-steps-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-2xl);
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.order-steps-section__heading {
  margin: 0;
  width: 100%;
  font-family: var(--font-family-display);
  font-size: clamp(30px, 9.6vw, 36px);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.36px;
  text-align: center;
  color: var(--color-white);
}

.order-steps-section__heading-accent {
  color: #fff07b;
}

.order-steps-section__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: 100%;
}

.order-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-md);
  width: 335px;
  max-width: 100%;
  text-align: center;
}

.order-step__icon {
  display: block;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
}

.order-step__title {
  margin: 0;
  font-family: var(--font-family-display);
  font-size: var(--text-h5);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h4);
  letter-spacing: -0.2px;
  text-align: center;
  color: var(--color-white);
  max-width: 255px;
  width: 100%;
}

.order-step__label {
  color: #fff07b;
}

.order-form-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-purple-deep);
}

.order-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.color-picker {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  margin: 0 0 var(--gap-lg);
  padding: 0;
  border: 0;
}

.color-picker__legend {
  padding: 0;
  margin-bottom: var(--gap-md);
  color: var(--color-white);
  font-size: var(--text-md);
  line-height: var(--lh-normal);
}

.color-option {
  display: block;
  cursor: pointer;
}

.color-option__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.color-option__card {
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline-color 0.2s ease;
}

.color-option__input:checked + .color-option__card {
  outline-color: var(--color-gold);
}

.color-option__input:focus-visible + .color-option__card {
  outline-color: var(--color-white);
}

.field-icon-wrap {
  position: relative;
  margin-bottom: var(--gap-lg);
}

.field-icon-wrap .form-input {
  width: 100%;
  height: 66px;
  padding: 0 16px 0 50px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: var(--text-md);
  line-height: var(--lh-normal);
}

.field-icon-wrap .form-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.field-icon-wrap select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}

.field-icon-wrap select.form-input:required:invalid {
  color: rgba(255, 255, 255, 0.55);
}

.field-icon-wrap select.form-input option {
  color: var(--color-text);
  background: var(--color-white);
}

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

.field-icon--color {
  filter: none;
}

.order-form__turnstile {
  display: flex;
  justify-content: center;
  margin-bottom: var(--gap-lg);
}

.order-form__submit-wrap {
  width: 100%;
}

.order-form__submit {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.order-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.site-footer {
  padding: var(--gap-xl) var(--section-padding-x) var(--gap-2xl);
  background: var(--color-purple-deep);
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__copy {
  margin-bottom: var(--gap-xs);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--gap-xs);
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

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

.site-footer__sep {
  color: rgba(255, 255, 255, 0.25);
}

body.thank-you-page {
  min-height: 100vh;
  background: var(--color-dark);
  color: var(--color-white);
}

body.thank-you-page .wrapper {
  background: transparent;
  padding-bottom: var(--gap-2xl);
}

.thank-you-main {
  padding: var(--section-padding-y) 0;
}

.thank-you-section__title {
  font-family: var(--font-family-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.2px;
  margin-bottom: var(--gap-lg);
  padding-left: var(--gap-md);
  border-left: 4px solid var(--color-yellow);
}

.thank-you-section__text {
  font-size: var(--text-md);
  line-height: var(--lh-normal);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--gap-md);
}

.thank-you-section__actions {
  margin-top: var(--gap-xl);
}

.thank-you-section__actions .cta-button {
  display: inline-flex;
  width: 100%;
  max-width: 100%;
  animation: none;
}

/* Віджет «Зараз на сайті» — від #ideal-section до #hero-image-end */
.online-visitors-widget {
  position: fixed;
  top: 150px;
  right: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateX(110%);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s;
  pointer-events: none;
}

.online-visitors-widget--visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .online-visitors-widget {
    transition: none;
  }
}

.online-visitors-widget .online-visitors-widget__item {
  border-radius: 5px 0 0 5px;
  padding: 10px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
  position: relative;
}

.online-visitors-widget .online-visitors-widget__item .online-visitors-widget__title {
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0.2px;
}

.online-visitors-widget .online-visitors-widget__item b {
  font-weight: 700;
  font-size: 20px;
  padding-left: 40px;
}

.online-visitors-widget.online-visitors-widget_dark .online-visitors-widget__item {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.online-visitors-widget.online-visitors-widget_dark
  .online-visitors-widget__item:first-child::before {
  content: '';
  display: block;
  background: url('../icons/online-visitors-widget-people.png') no-repeat 0 0 / contain;
  width: 26px;
  height: 24px;
  position: absolute;
  left: 10px;
  bottom: 9px;
}
