/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #121212;
  background-color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Хедер */
.announcement-bar {
  background: linear-gradient(54deg, rgba(217, 192, 192, 1) 14%, rgba(217, 192, 192, 1) 100%);
  color: #ffffff;
  padding: 16px 0;
  text-align: center;
  font-size: 20px;
}

.announcement-bar .message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.announcement-bar .material-symbols-outlined {
  font-size: 26px;
  color: #ffffff;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  padding: 20px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  width: 120px;
  height: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__nav a {
  font-size: 16px;
  font-weight: 700;
  color: #121212;
  text-decoration: none;
  transition: color 0.2s;
}

.header__nav a:hover {
  color: #dbbaba;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #121212;
}

.header__actions .icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

.icon-hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 24px;
  height: 24px;
}

.icon-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #121212;
  border-radius: 4px;
}

/* Продукт секция */
.product-section {
  padding: 36px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 30px;
}

.product-gallery__main {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #f3f3f3;
  aspect-ratio: 1 / 1;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.product-gallery__thumbnails img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.product-gallery__thumbnails img:hover,
.product-gallery__thumbnails img.active {
  border-color: #121212;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-info__title {
  font-family: "Carlito", sans-serif;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 0.078em;
  line-height: 1.3;
  color: #121212;
}

.product-info__price {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-info__price .current-price {
  font-size: 26px;
  font-weight: 700;
  color: #dbbaba;
}

.product-info__price .original-price {
  font-size: 20px;
  text-decoration: line-through;
  color: #121212;
}

.product-info__price .badge {
  background: #dbbaba;
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  min-height: 48px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  width: 100%;
  letter-spacing: 0.1em;
}

.btn-primary {
  background: #dbbaba;
  color: #ffffff;
  border-color: #dbbaba;
}

.btn-primary:hover {
  background: #c9a0a0;
}

.btn-secondary {
  background: #ffffff;
  color: #dbbaba;
  border-color: #dbbaba;
}

.btn-secondary:hover {
  background: #f9f5f5;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 15px 0;
}

.payment-icons img {
  height: 24px;
  width: auto;
}

.social-proof {
  background: #feae01;
  color: #000000;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-size: 14px;
  margin-top: 20px;
}

.social-proof .pulse {
  width: 10px;
  height: 10px;
  background: #feae01;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: pulse 2s infinite;
  position: relative;
}

.social-proof .pulse::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #feae01;
  border-radius: 50%;
  position: absolute;
  left: -3px;
  top: -3px;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

/* Секции с изображениями и текстом */
.info-section {
  padding: 36px 0;
}

.info-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.info-section__grid.reverse {
  direction: rtl;
}

.info-section__grid.reverse > * {
  direction: ltr;
}

.info-section__media {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

.info-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.info-section__content {
  padding: 40px;
  background: #ffffff;
}

.info-section__content h2 {
  font-family: "Carlito", sans-serif;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 0.078em;
  line-height: 1.3;
  margin-bottom: 16px;
}

.info-section__content h2 strong {
  color: #121212;
}

.info-section__content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* Слайдер с видео */
.video-slider {
  padding: 36px 0;
  background: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

.video-slider h2 {
  font-family: "Carlito", sans-serif;
  font-size: 31px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.078em;
}

.video-slider__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-slider__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #f3f3f3;
}

.video-slider__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Таблица сравнения */
.comparison-table {
  padding: 36px 0;
  background: #ffffff;
}

.comparison-table h2 {
  font-family: "Carlito", sans-serif;
  font-size: 31px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.078em;
}

.comparison-table table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table th {
  background: #f3f3f3;
  padding: 15px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}

.comparison-table td {
  padding: 15px 30px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table .row-label {
  background: #121212;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  text-align: left;
  padding-left: 20px;
}

.comparison-table .check {
  color: #53af01;
  font-size: 24px;
}

.comparison-table .cross {
  color: #999;
  font-size: 24px;
}

/* Футер */
.footer-wave {
  background: #b89292;
  height: 30px;
  position: relative;
  overflow: hidden;
}

.footer-wave svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #f7efef;
}

.footer {
  background: #b89292;
  color: #ffffff;
  padding: 32px 0 20px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer h3 {
  font-family: "Carlito", sans-serif;
  font-size: 23px;
  margin-bottom: 15px;
  letter-spacing: 0.078em;
}

.footer p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer a {
  color: #ffffff;
  text-decoration: underline;
}

.footer input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: #ffffff;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer .btn-signup {
  background: #ffffff;
  color: #b89292;
  border: 2px solid #ffffff;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  font-size: 14px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
  font-size: 11px;
}

/* Декоративные элементы */
.highlight {
  color: #6d388b;
  font-weight: 400;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-gallery {
    position: relative;
    top: 0;
  }

  .product-gallery__thumbnails {
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
  }

  .info-section__grid {
    grid-template-columns: 1fr;
  }

  .info-section__content {
    padding: 20px;
  }

  .video-slider__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .header__nav {
    display: none;
  }

  .announcement-bar {
    font-size: 16px;
    padding: 12px 0;
  }

  /* Адаптивные стили для таблицы сравнения */
  .comparison-table {
    padding: 24px 0;
  }

  .comparison-table h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .comparison-table table {
    max-width: 100%;
    margin: 0 auto;
  }

  .comparison-table th {
    padding: 12px 8px;
    font-size: 14px;
  }

  .comparison-table td {
    padding: 12px 8px;
    font-size: 14px;
  }

  .comparison-table .row-label {
    font-size: 14px;
    padding-left: 12px;
  }

  .comparison-table .check,
  .comparison-table .cross {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .comparison-table {
    padding: 16px 0;
  }

  .comparison-table h2 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .comparison-table table {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
  }

  .comparison-table th {
    padding: 10px 6px;
    font-size: 12px;
  }

  .comparison-table td {
    padding: 10px 6px;
    font-size: 12px;
  }

  .comparison-table .row-label {
    font-size: 12px;
    padding-left: 8px;
    font-weight: 600;
  }

  .comparison-table .check,
  .comparison-table .cross {
    font-size: 16px;
  }
}
.form {
    display: flex;
    flex-direction: column;
}
.form input {
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
}
.form_button {
    background: #dbbaba;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    border: 2px solid transparent;
    border-radius: 8px;
    border-color: #dbbaba;
    cursor: pointer;
}
.docs-container {
  max-width: 880px;
  margin: 10px auto;
}
.wrapper {
  padding: 10px;
}
.docs-img {
  max-width: 50px;
  margin: 10px auto;
}