:root {
  --c-light: #F3F1E9;
  --c-beige: #DDD7CB;
  --c-brown-1: #DFBDA1;
  --c-brown-2: #A26769;
  --c-brown-3: #7E5A4C;
  --c-brown-4: #5C3A2E;
  --radius-1: 8px;
  --radius-2: 16px;
  --transition: .2s;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.3;
}

main {
  flex-grow: 1;
}

h1 {
  font-family: "Gabriela", serif;
  font-weight: 400;
}

h2 {
  font-family: "Gabriela", serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
}

h3 {
  font-family: "Gabriela", serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.1;
}

.container {
  max-width: 1258px;
  padding: 0 20px;
  margin: 0 auto;
}

.section-inner {
  padding: 120px 0;
}

.bg-beige {
  background: var(--c-beige);
  color: var(--c-brown-3);
}

.bg-beige h2,
.bg-beige h3 {
  color: var(--c-brown-4);
}

.bg-brown {
  background: var(--c-brown-4);
  color: var(--c-brown-1);
}

.bg-brown h2,
.bg-brown h3 {
  color: var(--c-light);
}

.font-accent {
  font-family: "Gabriela", serif;
  font-weight: 400;
}

.section-title {
  margin-bottom: 40px;
  text-align: center;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 54px;
  border-radius: var(--radius-1);
  transition: background var(--transition);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1;
}

.button:active {
  translate: 0 1px;
}

.button--default {
  background: var(--c-brown-4);
  color: var(--c-light);
}

.button--default:hover {
  background: #855443;
}

.button--light {
  background: var(--c-brown-1);
  color: var(--c-brown-4);
}

.button--light:hover {
  background: #eed4bf;
}

.button--medium {
  background: var(--c-brown-2);
  color: var(--c-light);
}

.button--medium:hover {
  background: #c57d80;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition: background var(--transition);
}

.header--main {
  background: transparent;
}

.header--main.active {
  background: var(--c-brown-4);
}

.header--secondary {
  background: var(--c-brown-4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 24px;
  padding: 10px 0;
  color: var(--c-brown-1);
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 25px;
}

.burger__line {
  position: absolute;
  width: 38px;
  height: 2px;
  background: var(--c-brown-1);
  border-radius: 2px;
  transition: 0.1s;
}

.burger__line:nth-child(1) {
  transform: translateY(-11px);
}

.burger__line:nth-child(3) {
  transform: translateY(11px);
}

.burger.active .burger__line:nth-child(1) {
  transform: translateY(0) rotate(45deg) scaleX(1.1);
}

.burger.active .burger__line:nth-child(3) {
  transform: translateY(0) rotate(-45deg) scaleX(1.1);
}

.burger.active .burger__line:nth-child(2) {
  opacity: 0;
}

.menu__list {
  display: flex;
  gap: 40px;
}

.menu__link {
  transition: var(--transition);
  font-weight: 300;
}

.menu__link:hover {
  color: #fff;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__contact:hover {
  color: #fff;
}

.contact-link {
  font-size: 1.5rem;
  line-height: 1;
  transition: color var(--transition);
}

.header__collapse-contacts {
  display: none;
}

.contact-box__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-box__socials {
  display: flex;
  gap: 4px;
}

.social-link__icon {
  width: 24px;
  height: 24px;
}

.footer {
  overflow: hidden;
  position: relative;
  min-height: max-content;
  background-image: url(../images/footer-bg.jpg);
  background-size: cover;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 0 20px 0;
  text-align: center;
}

.footer__title {
  color: var(--c-light);
}

.footer__contacts {
  margin-bottom: 84px;
  color: var(--c-brown-1);
}

.footer__contacts .contact-link:hover {
  color: #fff;
}

.footer__policy {
  font-size: 0.75rem;
  text-decoration: underline;
  color: var(--c-brown-1);
  transition: color var(--transition);
}

.footer__policy:hover {
  color: #fff;
}

.footer__image {
  position: absolute;
}

.footer__image-1 {
  left: -25px;
  bottom: -100px;
}

.footer__image-2 {
  right: -75px;
  bottom: -90px;
}

.hero {
  overflow: hidden;
  position: relative;
  background-image: url(../images/hero-bg.jpg);
  background-size: cover;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 386px;
  gap: 30px;
  padding: 66px 0 120px 0;
  color: var(--c-light);
}

.hero__content-head {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 89px;
}

.hero__logo {
  width: 178px;
}

.hero__title {
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--c-light);
}

.hero__image {
  position: absolute;
  bottom: 0;
}

.hero__image-1 {
  left: 0;
  translate: -43% 12%;
}

.hero__image-2 {
  right: 0;
  translate: 44% 15%;
}

.hero__advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.short-advantage {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-2);
  background: var(--c-brown-3);
}

.short-advantage__title {
  margin-bottom: 6px;
}

.short-advantage__text {
  color: var(--c-brown-1);
}

.hero__button {
  display: none;
}

.hero__form {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-2);
}

.form {
  background: var(--c-beige);
  color: var(--c-brown-4);
}

.form__title {
  margin-bottom: 12px;
}

.form__subtitle {
  margin-bottom: 20px;
}

.form__fields {
  margin-bottom: 12px;
}

.fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.field {
  position: relative;
}

.field::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
}

.field:has([name="name-form"])::before {
  background-image: url(../images/icon-user.svg);
  background-repeat: no-repeat;
  background-size: contain;
      z-index: 2;
}

.field:has([name="phone"])::before {
  background-image: url(../images/icon-phone.svg);
  background-repeat: no-repeat;
  background-size: contain;
      z-index: 2;
}

.field:has([name="email"])::before {
  background-image: url(../images/icon-mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
      z-index: 2;
}

.field:has([name="city"])::before {
  background-image: url(../images/icon-map.svg);
  background-repeat: no-repeat;
  background-size: contain;
      z-index: 2;
}

.field .input {
  width: 100%;
  height: 54px;
  padding: 0 0 0 42px;
  border-radius: var(--radius-1);
  background: var(--c-light);
}

.input::placeholder {
  color: #A49E94;
}

.form__button {
  width: 100%;
  margin-bottom: 12px;
}

.form__message {
  font-size: 12px;
  text-align: center;
}

.form__message a {
  display: inline;
  text-decoration: underline;
}

.slider {
  position: relative;
}

.swiper-button {
  top: 50%;
  translate: 0 -50%;
  width: 20px;
  height: 40px;
  padding: 0;
  margin: 0;
}

.swiper-button-prev {
  left: -50px;
}

.swiper-button-next {
  right: -50px;
}

.swiper-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-button-prev:before {
  background-image: url(../images/icon-arrowhead-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.swiper-button-next:before {
  background-image: url(../images/icon-arrowhead-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.swiper-button:after {
  display: none;
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius-2);
}

.product-card__image-wrapper {
  position: relative;
  height: 340px;
}

.product-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: 16px;
  background: var(--c-light);
}

.product-card__name {
  margin-bottom: 12px;
}

.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  line-height: 1;
}

.product-card__price span {
  font-size: 12px;
  text-decoration: line-through;
}

.product-card__button {
  height: 36px;
  padding: 0 14px;
}

.variants__button {
  margin: 40px auto 0 auto;
}

.seps__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-2);
  background: var(--c-brown-3);
}

.step__icon {
  width: 80px;
  height: 80px;
}

.step__content {
  text-align: center;
}

.step__title {
  margin-bottom: 6px;
}



.steps__button {
  margin: 40px auto 0 auto;
}



.banner {
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  border-radius: var(--radius-2);
  background: var(--c-brown-1);
}

.banner::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url(../images/rounded-cornder.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.banner--left {
  clip-path: polygon(0 0, 100% 0, 100% 101%, 0% 72%);
  margin-bottom: -90px;
}

.banner--left::before {
  bottom: 111px;
  rotate: -85deg;
  left: -1px;
}

.banner--right {
  clip-path: polygon(0 0, 100% 28%, 100% 100%, 0% 100%);
}

.banner--right::before {
  rotate: 95deg;
  right: -1px;
  top: 111px;
}

.banner__content {
  padding: 50px 50px 50px 50px;
}

.banner--left .banner__content {
  padding-right: 74px;
}

.banner--right .banner__content {
  align-content: flex-end;
  padding-left: 74px;
  padding-bottom: 80px;
}



.text-devider {
  width: 100px;
  height: 4px;
  margin: 16px 0;
  background: var(--c-brown-2);
  border-radius: 2px;
}



.banner__image-wrapper {
  overflow: hidden;
  position: relative;
  min-height: 400px;
  border-radius: var(--radius-2);
}

.banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight {
  color: var(--c-brown-1);
}



.callback__inner {
  position: relative;
  display: grid;
  grid-template-columns: 594px 1fr;
  padding: 60px 0;
}

.callback__title {
  margin-bottom: 20px;
}

.callback__subtitle {
  margin-bottom: 40px;
}

.callback__image {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
}

.callback__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
}

.callback__form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 12px;
}

.callback__form-message {
  text-align: left;
  color: var(--c-brown-1);
}

.why__row {
  display: grid;
  grid-template-columns: 1fr 698px;
  gap: 30px;
}



.why__image-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-2);
  height: 553px;
}

.why__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion__item {
  padding-bottom: 22px;
  background: var(--c-light);
  border-radius: var(--radius-2);
  transition: var(--transition);
}

.accordion__button {
  position: relative;
  width: 100%;
  padding: 22px 78px 0 28px;
  background: var(--c-light);
  border-radius: var(--radius-2);
  text-align: left;
}



.accordion__button-icon {
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 36px;
  transition: rotate var(--transition);
  translate: 0 calc(-50% + 12px);
}

.accordion__item.active .accordion__button-icon {
  rotate: 90deg;
}

.accordion__button-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  width: 26px;
  border-bottom: 2px solid var(--c-brown-4);
  background: var(--c-brown-4);
  transform: opacity var(--transition);
}



.accordion__button-icon span:nth-child(2) {
  rotate: 90deg;
}

.accordion__item.active .accordion__button-icon span:nth-child(1) {
  opacity: 0;
}

.accordion__content {
  overflow: hidden;
  position: relative;
  height: 0;
  transition: height var(--transition);
}

.accordion__content-inner {
  padding: 12px 28px 0 28px;
}

.reviews {
  background: var(--c-brown-1);
}

.reviews__title {
  color: var(--c-brown-4);
}





.review__title {
  margin-bottom: 12px;
  color: var(--c-brown-4);
}

.review__subtitle {
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--c-brown-2);
}

.review__text {
  color: var(--c-brown-4);
}

.page-button-back {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
  color: var(--c-brown-4);
}

.page-button-back__arrow {
  width: 6px;
  height: 12px;
  fill: var(--c-brown-4);
}

.page-secondary {
  height: 100%;
}



.product__inner {
  display: grid;
  grid-template-columns: 594px 1fr;
  gap: 30px;
  padding-bottom: 120px;
}



.product__slider-full {
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: var(--radius-2);
}

.product__image-wrapper {
  position: relative;
  height: 594px;
}

.product__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__slider-thumbs {
  position: relative;
  padding: 0 40px;
}

.product__image-thumb-wrapper {
  overflow: hidden;
  position: relative;
  height: 100px;
  border-radius: 12px;
}

.product__image-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__slider-thumbs .swiper-button-prev {
  left: 0;
}

.product__slider-thumbs .swiper-button-next {
  right: 0;
}

.swiper-button {
  width: 18px;
  height: 36px;
}

.product__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}



h3.product__price {
  color: var(--c-brown-2);
}



.product__title {
  margin-bottom: 20px;
}









.list-default ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 25px;
  list-style: disc;
}



.paragraphs p {
  margin-bottom: 12px;
}

.paragraphs p:last-child {
  margin-bottom: 0;
}

.paragraphs b {
  font-weight: 500;
}

.product__button {
  width: max-content;
}

.modal-overlay {
  position: fixed;
  z-index: 199;
  inset: 0;
  display: none;
  background: #281914;
  opacity: .5;
}

.modal-overlay.active {
  display: block;
}

.modal {
  position: fixed;
  z-index: 200;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: none;
  background: var(--c-light);
  border-radius: var(--radius-2);
  opacity: 0;
}

.modal.active {
  display: block;
}

.modal.fade {
  opacity: 1;
}

.modal__button-close {
  position: absolute;
  z-index: 200;
  top: 18px;
  right: 18px;
  opacity: .6;
  transition: var(--transition);
}

.modal__button-close:hover {
  opacity: 1;
}

.modal__button-close-icon {
  pointer-events: none;
  width: 24px;
  height: 24px;
}

.modal-promotion {
  max-width: 800px;
  width: calc(100% - 40px);
  padding: 80px 30px;
  text-align: center;
}

.modal-promotion__title {
  margin-bottom: 24px;
  font-size: 3.25rem;
  color: var(--c-brown-3);
}

.modal-promotion__title .highlight {
  color: var(--c-brown-2);
}

.modal-promotion__text {
  font-size: 1.5rem;
  color: var(--c-brown-3);
}

.modal-callback {
  max-width: 410px;
  width: 100%;
  padding: 68px 20px 40px 20px;
  background: var(--c-beige);
}

.modal-callback .hero__form {
  padding: 0;
}

@media (max-width: 1500px) {
  .footer__image {
    width: 33vw;
  }

  .hero__image {
    display: none;
  }
}

@media (max-width: 1360px) {
  .swiper-button {
    display: none;
  }

  .product__slider-thumbs .swiper-button {
    display: block;
  }
}

@media (max-width: 1199px) {
  body {
    font-size: 1rem;
  }

  .button {
    padding: 0 16px;
  }

  .header__contact {
    font-size: 1.25rem;
  }

  .menu__list {
    gap: 20px;
  }

  .footer__inner {
    padding-top: 80px;
  }

  .footer__contacts {
    margin-bottom: 60px;
  }

  .footer__image-1 {
    bottom: -30px;
  }

  .footer__image-2 {
    bottom: -20px;
  }

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

  .hero__col:nth-child(2) {
    display: none;
  }

  .hero__content-head {
    margin-bottom: 60px;
  }

  .hero__button {
    display: flex;
    margin: 32px auto 0 auto;
  }

  .banner--left .banner__content {
    padding-right: 0;
  }

  .banner--right .banner__content {
    padding-left: 0;
  }

  .callback__image {
    width: 37vw;
  }

  .why__row {
    grid-template-columns: 1fr 590px;
  }

  .product__inner {
    grid-template-columns: 424px 1fr;
  }

  .product__image-wrapper {
    height: 394px;
  }

  .product__image-thumb-wrapper {
    height: 80px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 2.125rem;
  }

  .header {
    background: var(--c-brown-4);
  }

  .header__inner {
    padding: 16px 0;
  }

  .burger {
    display: flex;
  }

  .header__collapse {
    position: fixed;
    z-index: 99;
    top: 74px;
    translate: -100% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    left: 0;
    width: 100%;
    padding: 40px 20px;
    background: var(--c-brown-1);
    transition: var(--transition);
    color: var(--c-brown-4);
  }

  .header__collapse.active {
    translate: 0 0;
  }

  .header__collapse-contacts {
    display: block;
  }

  .menu__list {
    flex-direction: column;
    gap: 24px;
  }

  .menu__link {
    font-size: 1.0625rem;
    font-weight: 400;
    text-align: center;
  }

  .menu__link:hover {
    color: var(--c-brown-4);
  }

  .section-inner {
    padding: 100px 0;
  }

  .banner__content {
    padding: 30px;
  }

  .callback__inner {
    grid-template-columns: 430px 1fr;
  }

  .callback__form-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .field {
    width: 100%;
  }

  .callback__image {
    width: 43vw;
  }

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

  .why__col:nth-child(1) {
    display: none;
  }

  .product__inner {
    display: flex;
    flex-direction: column;
  }

  .product__col:nth-child(1) {
    max-width: 600px;
  }

  .modal-promotion__title {
    font-size: 2.125rem;
  }

  .modal-promotion__text {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .header__button {
    height: 48px;
  }

  .footer__policy {
    max-width: 320px;
  }

  .hero__inner {
    padding: 32px 0 80px 0;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__content-head {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
    text-align: center;
  }

  .hero__image-2 {
    position: relative;
    inset: auto;
    translate: 0 0;
    display: block;
    max-width: 320px;
    margin-bottom: -10px;
  }

  .hero__advantages {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .banner::before {
    display: none;
  }

  .banner--left,
  .banner--right {
    clip-path: none;
  }

  .banner--left {
    margin-bottom: 16px;
  }

  .banner--left .banner__content,
  .banner--right .banner__content {
    padding: 30px;
  }

  .banner__image-wrapper {
    order: -1;
    min-height: 300px;
    margin-bottom: -50px;
    clip-path: polygon(0 0, 100% 0, 100% 101%, 0% 78%);
  }

  .banner--right .banner__image-wrapper {
    margin-bottom: -32px;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 0% 101%);
  }

  .added-sets__inner {
    padding-bottom: 180px;
  }

  .callback__inner {
    grid-template-columns: 1fr;
    padding-top: 208px;
    padding-bottom: 80px;
  }

  .callback__title {
    text-align: center;
  }

  .callback__subtitle {
    text-align: center;
  }

  .callback__form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .callback__image {
    top: 0;
    left: 50%;
    right: auto;
    translate: -50% -39%;
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 575px) {
  .header__contact {
    display: none;
  }

  .header__button {
    height: 40px;
  }

  h2 {
    font-size: 24px;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .footer {
    background-image: url(../images/footer-bg-mobile.jpg);
  }

  .footer__inner {
    padding-bottom: 0;
  }

  .footer__contacts {
    margin-bottom: 32px;
  }

  .footer__image-1 {
    display: none;
  }

  .footer__image-2 {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 320px;
    margin-top: -10px;
    margin-bottom: -10px;
  }

  .hero__title {
    font-size: 24px;
  }

  .short-advantage__title {
    font-size: 1.125rem;
  }

  .short-advantage__text {
    font-size: 0.875rem;
  }

  body {
    font-size: 0.875rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  .section-inner {
    padding: 80px 0;
  }

  .product-card__price {
    font-size: 0.875rem;
  }

  .product-card__button {
    height: 32px;
  }

  .banner__image-wrapper {
    min-height: 215px;
  }

  .banner--left .banner__content,
  .banner--right .banner__content {
    padding: 20px;
  }

  .added-sets__inner {
    padding-bottom: 180px;
  }

  .callback__form {
    gap: 16px;
  }

  .callback__form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .callback__form-message {
    text-align: center;
  }

  .accordion__item {
    padding-bottom: 20px;
  }

  .accordion__button {
    padding: 20px 78px 0 20px;
  }

  .accordion__content-inner {
    padding: 12px 20px 0 20px;
  }

  .variants,
  .steps,
  .reviews {
    overflow: hidden;
  }

  .swiper {
    overflow: initial;
  }

  .product {
    overflow: hidden;
  }

  .product__inner {
    padding-bottom: 80px;
  }

  .product__slider-full {
    margin-bottom: 12px;
  }

  .product__image-wrapper {
    height: auto;
    aspect-ratio: 1;
  }

  .product__slider-thumbs {
    padding: 0;
  }

  .product__slider-thumbs .swiper-button {
    display: none;
  }

  .product__image-thumb-wrapper {
    height: auto;
    aspect-ratio: 1;
  }

  .product__info {
    gap: 20px;
  }

  .product__title {
    margin-bottom: 12px;
  }

  .modal-promotion {
    width: 100%;
    padding-top: 88px;
    border-radius: 0;
  }

  .modal__button-close {
    opacity: 1;
  }

  .form__title {
    font-size: 1.5rem;
  }

  .modal-promotion__title {
    margin-bottom: 16px;
    font-size: 1.5rem;
  }

  .modal-promotion__text {
    font-size: 0.875rem;
  }
}

@media (max-width: 479px) {
  .hero__button {
    width: 100%;
  }

  .variants__button {
    margin-top: 32px;
    width: 100%;
  }

  .steps__button {
    width: 100%;
    margin-top: 32px;
  }

  .product__button {
    width: 100%;
    margin-top: 12px;
  }

  .modal-callback {
    max-width: 100%;
    border-radius: 0;
  }
}