@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-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;
  --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-white);
  color: var(--color-text);
  font-family: var(--font-family);
  line-height: var(--lh-normal);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

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;
}

.site-header {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
}

.site-header__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.wrapper {
  max-width: var(--page-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--page-padding) 24px;
  overflow-x: hidden;
}

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;
  background: var(--gradient-price);
  font-family: var(--font-family);
  color: var(--color-white);
}

.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;
}

.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: var(--color-red);
  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-color 0.2s ease, filter 0.2s ease;
  animation: cta-pulse 1.5s infinite;
}

.cta-button:hover,
.cta-button:focus {
  background: var(--color-red-hover);
  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;
  gap: var(--gap-sm);
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-dark);
  color: var(--color-white);
}

.models-section__container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2xl);
  width: 100%;
}

.models-section__title {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--gap-lg);
  text-align: start;
}

.models-section__heading {
  max-width: 334px;
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.44px;
  text-align: start;
}

.models-section__subtitle {
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  text-align: left;
}

.models-section__list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xl);
  width: 100%;
}

.model-card {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.model-card__info,
.model-card__price {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--gap-xl);
  background: var(--color-dark);
}

.model-card__info {
  border-bottom: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.model-card__name {
  margin-bottom: var(--gap-md);
  font-size: var(--text-h4);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h4);
  letter-spacing: -0.24px;
}

.model-card__volume {
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.model-card__image {
  overflow: hidden;
  border-left: 1px solid var(--color-border-light);
  border-right: 1px solid var(--color-border-light);
  line-height: 0;
}

.model-card__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.model-card__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-lg);
  min-height: 60px;
  border-radius: var(--radius-lg);
}

.model-card__price-current {
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
  white-space: nowrap;
}

.model-card__price-old {
  font-size: var(--text-lg);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  text-decoration: line-through;
  white-space: nowrap;
}

.ideal-section {
  position: relative;
  padding: var(--section-padding-y) var(--section-padding-x);
  background: url('../images/backideal.webp') center / cover no-repeat;
  color: var(--color-white);
}

.ideal-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--color-dark) 0%,
    rgba(36, 34, 29, 0.44) 100%
  );
  pointer-events: none;
}

.ideal-section__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
  width: 100%;
}

.ideal-section__heading {
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.44px;
}

.ideal-section__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.ideal-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--gap-xl);
  border-bottom: 2px solid var(--color-accent-red);
}

.ideal-item:first-child {
  padding-top: var(--gap-md);
}

.ideal-item__title {
  font-size: var(--text-h6);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: -0.18px;
}

.ideal-item__text {
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.advantages-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-yellow);
  color: var(--color-text-dark);
}

.advantages-section__container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  width: 100%;
}

.advantages-section__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.advantages-section__heading {
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.44px;
}

.advantages-section__subtitle {
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.advantages-section__card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-white);
}

.adv-item {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.adv-item--1 {
  background-image: url('../images/adv1.jpg');
}

.adv-item--2 {
  background-image: url('../images/adv2.jpg');
}

.adv-item--3 {
  background-image: url('../images/adv3.jpg');
}

.adv-item--4 {
  background-image: url('../images/adv4.jpg');
}

.adv-item--1 .adv-item__overlay {
  background: linear-gradient(
    -85deg,
    rgb(0, 0, 0) 36%,
    rgba(0, 0, 0, 0) 85%
  );
}

.adv-item--2 .adv-item__overlay {
  background: linear-gradient(
    96deg,
    rgb(0, 0, 0) 31%,
    rgba(0, 0, 0, 0) 81%
  );
}

.adv-item--3 .adv-item__overlay {
  background: linear-gradient(
    254deg,
    rgb(0, 0, 0) 47%,
    rgba(0, 0, 0, 0) 89%
  );
}

.adv-item--4 .adv-item__overlay {
  background: linear-gradient(
    144deg,
    rgb(0, 0, 0) 17%,
    rgba(0, 0, 0, 0.1) 64%
  );
}

.adv-item__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.adv-item__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  padding: var(--gap-xl);
  color: var(--color-white);
}

.adv-item--right .adv-item__content {
  align-items: flex-end;
  text-align: right;
}

.adv-item--left .adv-item__content {
  align-items: flex-start;
  text-align: left;
}

.adv-item__title {
  font-size: var(--text-h5);
  font-weight: var(--fw-bold);
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.adv-item__text {
  font-size: var(--text-xs);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.adv-item--1 .adv-item__text {
  max-width: 228px;
}

.adv-item--2 .adv-item__text {
  max-width: 199px;
}

.adv-item--4 .adv-item__text {
  max-width: 197px;
}

.specs-section {
  position: relative;
  padding: var(--section-padding-y) var(--section-padding-x);
  background: url('../images/backcharacteristic.webp') center / cover no-repeat;
  color: var(--color-white);
}

.specs-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    162deg,
    rgb(18, 17, 15) 10.1%,
    rgba(36, 34, 29, 0.2) 22.24%,
    rgba(36, 34, 29, 0.2) 45.01%,
    rgb(0, 0, 0) 64.28%
  );
  pointer-events: none;
}

.specs-section__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-2xl);
  width: 100%;
}

.specs-section__heading {
  width: 100%;
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.44px;
  text-align: left;
}

.specs-section__card {
  width: 100%;
  padding: 32px var(--gap-xl);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  background: rgba(12, 10, 4, 0.57);
}

.specs-section__intro {
  margin-bottom: var(--gap-xl);
  font-family: var(--font-family-display);
  font-size: var(--text-h6);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: -0.18px;
}

.specs-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border-light);
}

.specs-row {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: var(--gap-xl) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.specs-row:last-child {
  border-bottom: none;
}

.specs-row__label {
  flex: 1;
  min-width: 0;
  font-family: var(--font-family);
  font-size: var(--text-md);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.specs-row__value {
  flex-shrink: 0;
  font-family: var(--font-family-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: -0.18px;
  text-align: right;
  white-space: nowrap;
}

.specs-row--multiline {
  align-items: flex-start;
}

.specs-row--multiline .specs-row__label {
  flex: 0 1 auto;
  max-width: calc(50% - 10px);
}

.specs-row--multiline .specs-row__value {
  flex: 0 1 calc(50% - 10px);
  min-width: 0;
  margin-left: auto;
  text-align: right;
  white-space: normal;
}

.dimensions-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-black);
  color: var(--color-white);
}

.dimensions-section__container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
  width: 100%;
}

.dimensions-section__heading {
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.44px;
}

.dimensions-section__figure {
  width: 100%;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dimensions-section__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.video-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-video-bg);
  color: var(--color-white);
}

.video-section__container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2xl);
  width: 100%;
}

.video-section__heading {
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.44px;
}

.video-section__player {
  width: 100%;
  min-height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-video-placeholder);
}

.reviews-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-black);
  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%;
}

.reviews-section__heading {
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.44px;
}

.reviews-section__subtitle {
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.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;
}

.reviews-carousel__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.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 {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  line-height: 0;
}

.reviews-carousel__btn img {
  display: block;
  width: 48px;
  height: 48px;
}

.reviews-carousel__btn--prev img {
  transform: rotate(180deg);
}

.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: var(--color-dot-inactive);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.reviews-carousel__dot.is-active {
  background: var(--color-white);
}

.producer-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-yellow);
  color: var(--color-text-dark);
}

.producer-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-2xl);
  width: 100%;
}

.producer-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-lg);
  width: 100%;
  text-align: center;
}

.producer-section__heading {
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.44px;
  text-align: left;
  align-self: flex-start;
}

.producer-section__logo {
  display: block;
  width: auto;
  max-width: 95px;
  height: auto;
  object-fit: contain;
  align-self: flex-start;
}

.producer-section__intro {
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.producer-section__card {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}

.producer-item {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  padding: var(--gap-xl) 32px;
  border-bottom: 1px solid var(--color-border-dark);
}

.producer-item:last-child {
  border-bottom: none;
}

.producer-item__icon {
  display: block;
  flex-shrink: 0;
}

.producer-item__icon--sm {
  width: 24px;
  height: 25px;
}

.producer-item__icon--md {
  width: 32px;
  height: 32px;
}

.producer-item__title {
  font-size: var(--text-h6);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: -0.18px;
}

.producer-item__text {
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.equipment-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-3xl);
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-black);
  color: var(--color-white);
}

.equipment-section__container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
  width: 100%;
}

.equipment-section__heading {
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.44px;
  text-align: left;
}

.equipment-section__card {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.equipment-section__tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 10px;
  background: var(--color-tags-bg);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  font-size: 13px;
}

.equipment-section__tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.equipment-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 34px;
  padding: 2px 6px;
  border: 1px solid var(--color-white);
  border-radius: var(--radius-lg);
  font-size: var(--text-xs);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  white-space: nowrap;
}

.equipment-tag__icon {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

@media (max-width: 480px) {
  .specs-section {
    background-size: 100% 100%;
  }

  .equipment-section__tags {
    padding: 16px 8px;
  }

  .equipment-section__tags-row {
    gap: 6px;
  }

  .equipment-tag {
    height: 30px;
    padding: 2px 4px;
    gap: 3px;
    font-size: 11px;
  }

  .equipment-tag__icon {
    width: 20px;
    height: 20px;
  }
}

.equipment-section__image-wrap {
  height: 335px;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--color-brown);
}

.equipment-section__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.equipment-section__cta {
  width: 100%;
}

.faq-section {
  position: relative;
  padding: var(--section-padding-y) var(--section-padding-x);
  background: url('../images/backfaq.webp') center / 100% 100% no-repeat;
  color: var(--color-white);
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.faq-section__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-2xl);
  width: 100%;
}

.faq-section__header {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  width: 100%;
  text-align: center;
}

.faq-section__heading {
  font-family: var(--font-family-display);
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.44px;
  text-align: left;
}

.faq-section__subtitle {
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  text-align: left;
}

.faq-section__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.faq-item.is-open {
  gap: var(--gap-md);
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: var(--gap-sm);
  border: none;
  border-radius: var(--radius-lg);
  background: var(--color-yellow);
  color: var(--color-text-dark);
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  line-height: var(--lh-normal);
  text-align: left;
  cursor: pointer;
}

.faq-item__question {
  flex: 1;
  min-width: 0;
}

.faq-item__icon {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(90deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
}

.faq-item__answer {
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.order-steps-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-black);
  color: var(--color-white);
}

.order-steps-section__container {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2xl);
  width: 100%;
}

.order-steps-section__heading {
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.44px;
}

.order-steps-section__heading-accent {
  color: var(--color-yellow);
}

.order-steps-section__list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
  width: 100%;
}

.order-step {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  max-width: 255px;
}

.order-step__icon {
  display: block;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.order-step__icon--truck {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.1);
}

.order-step__icon--truck img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.order-step__title {
  font-size: var(--text-h5);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h4);
  letter-spacing: -0.2px;
}

.order-step__label {
  color: var(--color-yellow);
}

.order-form-section {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-dark);
}

.order-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.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);
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.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: var(--color-text-muted);
  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 {
  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;
}
