/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #1A1A1A;
  background: #F5EBE1;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, opacity 0.3s ease;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header__logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1A1A1A;
  flex-shrink: 0;
}

.header__logo-dot {
  color: #E84D4D;
}

.header__logo:hover {
  opacity: 0.7;
}

/* Phone */
.header__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #1A1A1A;
  padding: 10px 20px;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 50px;
  transition: 0.3s;
}

.header__phone:hover {
  border-color: rgba(26, 26, 26, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.header__phone-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #E84D4D;
}

/* ===== Sale Section ===== */
.sale {
  padding: 110px 0 40px;
  background: #F5EBE1;
}

.sale__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.sale__container--centered {
  text-align: center;
}

.sale__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #1A1A1A;
  text-transform: uppercase;
}

.sale__title span {
  color: #E84D4D;
}


/* ===== Ticker ===== */
.ticker {
  background: #2D2D2D;
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
  position: relative;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}

.ticker__track span {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 0 32px;
  flex-shrink: 0;
  position: relative;
}

.ticker__track span::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #E84D4D;
  border-radius: 50%;
}

.ticker__track span::before {
  display: none;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Product Section ===== */
.product {
  padding: 80px 0;
  background: #F5EBE1;
}

.product__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.product__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.product__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product__wrapper + .product__wrapper {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(200, 170, 145, 0.25);
}

/* Slider */
.product__slider {
  position: relative;
}

.product__slider-main {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(200, 170, 145, 0.1);
  aspect-ratio: 3 / 4;
}

.product__slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.product__slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.product__slider-arrow svg {
  width: 22px;
  height: 22px;
  color: #1a1a1a;
}

.product__slider-arrow:hover {
  background: #E84D4D;
}

.product__slider-arrow:hover svg {
  color: #fff;
}

.product__slider-arrow--prev {
  left: 16px;
}

.product__slider-arrow--next {
  right: 16px;
}

.product__slider-counter {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.product__slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.product__slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #9B8070;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.product__slider-dot--active {
  background: #9B8070;
  transform: scale(1.2);
}

/* Product Info */
.product__info {
  padding: 10px 0;
}

.product__color {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.product__color-label {
  font-size: 14px;
  color: #888;
}

.product__color-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.product__name {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 8px;
}

.product__article {
  font-size: 13px;
  color: #999;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

/* Pricing */
.product__pricing {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.product__discount {
  background: #E84D4D;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  flex-shrink: 0;
}

.product__prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product__price-old {
  font-size: 15px;
  color: #bbb;
  text-decoration: line-through;
}

.product__price-current-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product__price-label {
  font-size: 13px;
  color: #888;
}

.product__price-current {
  font-size: 32px;
  font-weight: 800;
  color: #E84D4D;
  line-height: 1;
}

/* Product Details */
.product__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
  border-top: 1px solid rgba(200, 170, 145, 0.2);
}

.product__detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(200, 170, 145, 0.15);
}

.product__detail-label {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product__detail-value {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 500;
}

/* Order Button */
.product__order-btn {
  display: block;
  width: 100%;
  padding: 18px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #E84D4D 0%, #D94040 100%);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 8px 30px rgba(232, 77, 77, 0.3);
}

.product__order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 77, 77, 0.4);
}

/* ===== Reviews Section ===== */
.reviews {
  padding: 80px 0;
  background: #F5EBE1;
}

.reviews__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.reviews__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.reviews__carousel {
  display: flex;
  align-items: center;
  gap: 20px;
}

.reviews__track-wrapper {
  flex: 1;
  overflow: hidden;
}

.reviews__track {
  display: flex;
  transition: transform 0.5s ease;
}

.reviews__slide {
  flex: 0 0 calc(100% / 3);
  padding: 0 10px;
}

.reviews__slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews__slide img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.reviews__arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(26, 26, 26, 0.15);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.reviews__arrow svg {
  width: 22px;
  height: 22px;
  color: #1a1a1a;
}

.reviews__arrow:hover {
  background: #E84D4D;
  border-color: #E84D4D;
}

.reviews__arrow:hover svg {
  color: #fff;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.reviews__dot--active {
  background: #E84D4D;
  border-color: #E84D4D;
  transform: scale(1.2);
}

/* ===== Steps Section ===== */
.steps {
  padding: 80px 0;
  background: #F5EBE1;
}

.steps__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.steps__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.steps__card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.steps__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.steps__card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.steps__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(155, 128, 112, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.steps__icon svg {
  width: 22px;
  height: 22px;
  color: #9B8070;
}

.steps__card-text h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.steps__card-text p {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

.steps__number {
  font-size: 64px;
  font-weight: 700;
  color: rgba(155, 128, 112, 0.15);
  line-height: 1;
  text-align: right;
  margin-top: 12px;
}

/* ===== Benefits Section ===== */
.benefits {
  padding: 80px 0;
  background: #F5EBE1;
}

.benefits__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.benefits__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

.benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.benefits__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(155, 128, 112, 0.1);
  border: 1px solid rgba(155, 128, 112, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefits__icon svg {
  width: 24px;
  height: 24px;
  color: #9B8070;
}

.benefits__text h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.benefits__text p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}


/* ===== Footer ===== */
.footer {
  background: #1A1A1A;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.footer__container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.footer__left {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1;
}

.footer__logo-dot {
  color: #E84D4D;
}

.footer__logo:hover {
  opacity: 0.7;
}

.footer__center {
  text-align: center;
  flex: 1;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.footer__promo {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.footer__promo strong {
  color: #E84D4D;
  font-weight: 600;
}

.footer__category {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.footer__email {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

.footer__email:hover {
  color: #fff;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__contact {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

.footer__contact:hover {
  color: #fff;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer__link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.15);
  text-underline-offset: 3px;
}

.footer__link:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

/* ===== Inner Pages ===== */
.page {
  padding: 120px 0 80px;
  background: #F5EBE1;
  min-height: calc(100vh - 120px);
}

.page__container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

.page__back {
  display: inline-block;
  font-size: 13px;
  color: #9B8070;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  transition: color 0.3s ease;
}

.page__back:hover {
  color: #1a1a1a;
}

.page__title {
  font-size: 40px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page__content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 32px 0 16px;
}

.page__content p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.page__content a {
  color: #E84D4D;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page__content a:hover {
  color: #1a1a1a;
}

.page__content ul {
  list-style: none;
  margin: 12px 0 20px;
  padding: 0;
}

.page__content ul li {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.page__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E84D4D;
}

@media (max-width: 768px) {
  .page {
    padding: 100px 0 60px;
  }

  .page__container {
    padding: 0 20px;
  }

  .page__title {
    font-size: 32px;
    margin-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 80px 0 48px;
  }

  .page__container {
    padding: 0 16px;
  }

  .page__title {
    font-size: 26px;
  }

  .page__content h2 {
    font-size: 20px;
  }
}

/* ===== Modal ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal--open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 460px;
  margin: 20px;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  animation: modalIn 0.35s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
  padding: 0;
}

.modal__close:hover {
  color: #1a1a1a;
}

.modal__title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.modal__product-info {
  background: rgba(155, 128, 112, 0.08);
  border: 1px solid rgba(155, 128, 112, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
}

.modal__product-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.modal__product-info strong {
  color: #1a1a1a;
  font-weight: 600;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal__field {
  position: relative;
}

.modal__field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #9B8070;
  pointer-events: none;
}

.modal__input {
  width: 100%;
  padding: 14px 18px 14px 48px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1A1A1A;
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.modal__input:focus {
  border-color: #9B8070;
  box-shadow: 0 0 0 3px rgba(155, 128, 112, 0.1);
}

.modal__input::placeholder {
  color: #aaa;
}

.modal__select {
  cursor: pointer;
  background-image: none;
}

.modal__select option {
  font-size: 14px;
  padding: 8px;
}

.modal__submit {
  margin-top: 8px;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #2D2D2D;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.modal__submit:hover {
  background: #444;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .header__container {
    padding: 0 24px;
  }

  .header__logo {
    font-size: 18px;
  }

  .sale__container {
    padding: 0 24px;
  }

  .sale__title {
    font-size: 40px;
  }


  .product__wrapper {
    gap: 40px;
  }

  .product__section-title {
    font-size: 30px;
  }

  .product__name {
    font-size: 26px;
  }

  .product__price-current {
    font-size: 30px;
  }

  .reviews__title {
    font-size: 32px;
  }

  .steps__title {
    font-size: 32px;
  }

  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits__title {
    font-size: 32px;
  }

  .benefits__grid {
    gap: 32px 40px;
  }
}

@media (max-width: 768px) {
  .sale {
    padding: 90px 0 32px;
  }

  .sale__container {
    padding: 0 20px;
  }

  .sale__title {
    font-size: 32px;
  }

  .product {
    padding: 60px 0;
  }

  .product__container {
    padding: 0 20px;
  }

  .product__wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product__slider-main {
    max-width: 500px;
    margin: 0 auto;
  }

  .product__section-title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .reviews {
    padding: 60px 0;
  }

  .reviews__container {
    padding: 0 20px;
  }

  .reviews__slide {
    flex: 0 0 50%;
  }

  .reviews__title {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .reviews__arrow {
    width: 44px;
    height: 44px;
  }

  .steps {
    padding: 60px 0;
  }

  .steps__container {
    padding: 0 20px;
  }

  .steps__title {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .benefits {
    padding: 60px 0;
  }

  .benefits__container {
    padding: 0 20px;
  }

  .benefits__title {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__top {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer__container {
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .header__container {
    padding: 0 16px;
    height: 64px;
  }

  .header__logo {
    font-size: 16px;
  }

  .header__phone {
    padding: 8px 14px;
    font-size: 12px;
  }

  .sale {
    padding: 80px 0 24px;
  }

  .sale__title {
    font-size: 26px;
  }

  .product {
    padding: 48px 0;
  }

  .product__container {
    padding: 0 16px;
  }

  .product__section-title {
    font-size: 22px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
  }

  .product__slider-arrow {
    width: 36px;
    height: 36px;
  }

  .product__slider-arrow svg {
    width: 18px;
    height: 18px;
  }

  .product__name {
    font-size: 24px;
  }

  .product__pricing {
    padding: 16px;
    gap: 14px;
  }

  .product__discount {
    font-size: 12px;
  }

  .product__price-current {
    font-size: 28px;
  }

  .product__order-btn {
    padding: 16px;
    font-size: 16px;
  }

  .reviews {
    padding: 48px 0;
  }

  .reviews__container {
    padding: 0 16px;
  }

  .reviews__slide {
    flex: 0 0 100%;
  }

  .reviews__title {
    font-size: 22px;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
  }

  .reviews__arrow {
    width: 38px;
    height: 38px;
  }

  .reviews__arrow svg {
    width: 18px;
    height: 18px;
  }

  .reviews__carousel {
    gap: 10px;
  }

  .steps {
    padding: 48px 0;
  }

  .steps__container {
    padding: 0 16px;
  }

  .steps__title {
    font-size: 22px;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps__card {
    min-height: auto;
    padding: 20px;
  }

  .steps__number {
    font-size: 48px;
  }

  .benefits {
    padding: 48px 0;
  }

  .benefits__container {
    padding: 0 16px;
  }

  .benefits__title {
    font-size: 22px;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
  }

  .benefits__icon {
    width: 48px;
    height: 48px;
  }

  .benefits__icon svg {
    width: 20px;
    height: 20px;
  }

  .benefits__text h3 {
    font-size: 16px;
  }

  .benefits__text p {
    font-size: 13px;
  }

  .footer {
    padding: 32px 0;
  }

  .footer__container {
    padding: 0 16px;
  }

  .footer__logo {
    font-size: 18px;
  }
  .sale__container{
    gap: 10px;
  }
  .sale__title{
    margin-bottom: 25px;
  }
}
