*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

html {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  font-family: "Onest", "Arial", sans-serif;
  color: #000;
}

body {
  width: 100%;
  height: 100%;

  background-color: #fff;
}

a {
  color: #000;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

textarea {
  resize: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none; 
	margin: 0;
}

input[type='number'],
input[type="number"]:hover,
input[type="number"]:focus {
    appearance:  textfield;
    -moz-appearance: textfield;
}

select,
textarea,
input:matches([type="email"],
  [type="number"],
  [type="password"],
  [type="search"],
  [type="tel"],
  [type="text"],
  [type="url"]) {
  appearance: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  appearance: none;
}

@font-face {
  font-style: normal;
  font-weight: 300;
  font-family: "Onest";

  font-display: swap;
  src:
    url("../fonts/Onest-Light.woff2") format("woff2"),
    url("../fonts/Onest-Light.woff") format("woff");
}

@font-face {
  font-style: normal;
  font-weight: 400;
  font-family: "Onest";

  font-display: swap;
  src:
    url("../fonts/Onest-Regular.woff2") format("woff2"),
    url("../fonts/Onest-Regular.woff") format("woff");
}

@font-face {
  font-style: normal;
  font-weight: 500;
  font-family: "Onest";

  font-display: swap;
  src:
    url("../fonts/Onest-Medium.woff2") format("woff2"),
    url("../fonts/Onest-Medium.woff") format("woff");
}

@font-face {
  font-style: normal;
  font-weight: 600;
  font-family: "Onest";

  font-display: swap;
  src:
    url("../fonts/Onest-SemiBold.woff2") format("woff2"),
    url("../fonts/Onest-SemiBold.woff") format("woff");
} 

@font-face {
  font-style: normal;
  font-weight: 700;
  font-family: "Onest";

  font-display: swap;
  src:
    url("../fonts/Onest-Bold.woff2") format("woff2"),
    url("../fonts/Onest-Bold.woff") format("woff");
} 

.scroll-lock {
  overflow: hidden;
}

.mb-100 {
  margin-bottom: 100px;
}

@media (width < 768px) {
  .mb-100 {
    margin-bottom: 70px;
  }
}

.bg-light {
  background-color: #EBEBEB;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (width < 768px) {
  .container {
    padding: 0 15px;
  }
}

.grid-1 {
  display: grid;
  grid-template-columns:  1fr;
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns:  repeat(2, 1fr);
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (width < 1400px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width < 1080px) {
  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (width < 768px) {
  .grid-1,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  outline: none;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 1000px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  min-height: 54px;
  text-align: center;
  width: 240px;
}

.btn:hover,
.btn:focus {
  background-color: #000;
  color: #fff;
}

.btn--black {
  background-color: #000;
  color: #fff;
}

.btn--black:hover,
.btn--black:focus {
  color: #000;
  background-color: #fff;
}

.btn--icon {
  border: none;
  padding: 0;
  width: auto;
  gap: 10px;
  min-height: 0;
}

.btn__text{
  transition: color 0.3s ease;
}

.btn--icon:hover  .btn__text{
  color: #FF68DD;
}

.btn--icon .btn__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 17px;
  height: 17px;
}

.btn--icon .btn__icon svg {
  width: 100%;
  height: 100%;
}

.btn--icon .btn__number {
  margin-left: 6px;
}

.btn--icon:hover,
.btn--icon:focus {
  color: #000;
  background-color: transparent;
}

.btn-close {
  position: relative;
  border: none;
  padding: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
	border-radius: 50%;
	overflow: hidden;
	transition: opacity 0.3s ease;
  border: 1px solid #000;
}

.btn-close::after {
  content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(0.125turn);
	width: 60%;
	height: 1px;
	background-color: #000;
}

.btn-close:before {
  content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(0.125turn);
	width: 1px;
	height: 60%;
	background-color: #000;
}

.btn-close:hover,
.btn--close:focus {
  opacity: 0.6;
}

.link {
  display: inline-block;
  font-size: 16px;
  line-height: 19px;
  color: #000;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.link.active {
  font-weight: 700;
  border-bottom: 1px solid #000;
}

.link:hover {
  color: #FF68DD;
}

.link--white {
  color: #fff;
}

.link--white:hover {
  opacity: 0.6;
  color: #fff;
}

.link--light {
  color: #fff;
  opacity: 0.6;
}

.link--light:hover {
  opacity: 1;
  color: #fff;
}

.breadcrumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 60px;
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs .link {
  font-size: 12px;
  line-height: 15px;
}

.breadcrumbs li::after {
  content: "|";
  padding: 0 16px;
}

.breadcrumbs li:last-child {
  pointer-events: none;
  font-weight: 700;
}

.breadcrumbs li:last-child::after{
  display: none;
}

.title {
  line-height: 120%;
  color: inherit;
  margin: 0;
}

.title--h1 {
  font-weight: 500;
  font-size: 50px;
}

.title--h2 {
  font-weight: 600;
  font-size: 40px;
  text-transform: uppercase;
}

.title--h3 {
  font-weight: 600;
  font-size: 30px;
  text-transform: uppercase;
}

.title--h4 {
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
}

@media (width < 768px) { 
  .title--h1 {
    font-size: 32px;
  }
  
  .title--h2 {
    font-size: 20px;
  }
  
  .title--h3 {
    font-size: 22px;
    line-height: 28px;
  }  
}

.logo {
  position: relative;
  z-index: 100;
  width: 158px;
  height: 39px;
}

.logo a {
  display: flex;
  width: 100%;
  height: 100%;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media(width < 1024px) {
  .logo {
    width: 100px;
    height: 25px;
  }
}

.video {
  width: 100%;
  position: relative;
}

.video__over {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: none;
}

.video__play {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(36,36,36,0.62);
  transition: .2s ease;
  transition-property: opacity, visibility;
  z-index: 2;
}

.video__btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: transform .2s ease;
  cursor: pointer;
}

.video__btn svg {
  width: 30px;
  height: 30px;
}

.video__btn:hover{
  transform: scale(1.2);
}

.video video {
  width: 100%;
  display: block;
}

.video.playing .video__over {
  display: block;
}

.video.playing .video__play {
  opacity: 0;
  visibility: hidden;
}

.swiper-button-next, 
.swiper-button-prev {
  width: 30px;
  height: 30px;
  z-index: 10;
  background-color: #fff;
  border-radius: 50%;
  color: #000;
}

.swiper-button-next svg, 
.swiper-button-prev svg {
  width: 12px;
  height: 12px;
}

.swiper-button-next::after, 
.swiper-button-next::before, 
.swiper-button-prev::after, 
.swiper-button-prev::before {
  display: none;
}

.custom-input,
.custom-textarea {
  position: relative;
  flex: 1;

  display: flex;
  width: 100%;

  font-size: 16px;
  line-height: 18px;
  color: #000;
}

.custom-input label,
.custom-textarea label {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.custom-input input,
.custom-textarea textarea {
  width: 100%;
  min-height: 58px;
  margin-left: auto;
  padding: 10px 20px;
  border: 1px solid #f4f4f4;
  font: inherit;
  color: inherit;
  outline: none;
  background-color: #f4f4f4;
  transition: border 0.3s ease;
}

.custom-input input::-webkit-input-placeholder,
.custom-textarea textarea ::-webkit-input-placeholder {
  color: #000;
  font-size: 14px;
  line-height: 18px;
  opacity: 0.4;
}

.custom-input input:hover ,
.custom-textarea textarea:hover,
.custom-input input:focus,
.custom-textarea textarea:focus {
  border-color:  #000;
}

.custom-textarea textarea {
  height: 203px;
}

.custom-input__label,
.custom-textarea__label {
  font-size: 14px;
  line-height: 17px;
  color: #000;
  flex: 1;
}

.custom-toggle {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  color: #000;
  font-size: 16px;
  line-height: 20px;
}

.custom-toggle input {
  position: absolute;

  width: 1px;
  height: 1px;
  margin: -1px;

  clip: rect(0 0 0 0);
}

.custom-toggle label {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  padding-left: 26px;

  cursor: pointer;
}

.custom-toggle__icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;

  border: 1px solid #000;
  border-radius: 50%;
}

.custom-toggle__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;

  width: 10px;
  height: 10px;

  background-color: transparent;

  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);

  transition: background-color 0.3s ease;
}

input:checked + .custom-toggle__icon::before {
  background-color: #000;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav .btn {
  display: none;
}

@media(width < 1024px) {
  .nav {
    flex-direction: column;
    flex: 1;
    justify-content: center;
    width: 100%;
  }

  .nav .btn {
    display: flex;
    width: 100%;
    margin-top: auto;
  }
}

.section {
  position: relative;
}

.section__title {
  text-align: center;
  margin: 0 0 20px;
}

.header {
  height: 110px;
}

.header__wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.header__actions {
  display: flex;
  gap: 30px;
}

.header__burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  width: 30px;
  height: 30px;
  padding: 0;
  background: transparent;
  z-index: 50;
  cursor: pointer;
}

.header__burger span {
  display: block;
  width: 26px;
  height: 1px;
  background-color: #000;
  transform-origin: 0 center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__burger span:not(:last-child) {
  margin-bottom: 7px;
}


@media (width < 1024px) {
  .header__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 25;
    padding: 120px 15px 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .header__menu.is-active {
    opacity: 1;
    visibility: visible;
  }

  .header__actions {
    gap: 10px;
    z-index: 100;
  }

  .header__actions .btn--icon {
    gap: 0;
  }

  .header__actions .btn__text {
    display: none;
  }
  
  .header__burger.is-open span:first-child {
    transform: translate(4px,-1px) rotate(0.125turn);
  }

  .header__burger.is-open span:last-child {
    transform: translate(4px,2px) rotate(-0.125turn);
  }

  .header__burger.is-open span:nth-child(even) {
    opacity: 0;
  }
}

@media (width >= 1024px) {
  .header__burger {
    display: none;
  }
}

.promo {
  position: relative;
  background: linear-gradient(270deg, #FFFFFF 60.3%, #E0E0E0 100%);
  min-height: 710px;
  display: flex;
  flex-direction: column;
}

.promo .container {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.promo__wrap {
  display: flex;
  flex: 1;
}

.promo__info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo__title {
  margin-bottom: 20px;
}

.promo__text {
  margin: 0 0 40px;
  max-width: 520px;
  font-size: 20px;
  line-height: 26px;
}

.promo__btn {
  width: 240px;
}

.promo__img {
  width: 50%;
  height: auto;
  align-self: flex-end;
}

.promo__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

@media (width < 768px) {
  .promo {
    background: none;
    min-height: 0;
  }

  .promo__wrap {
    flex-direction: column;
  }
  
  .promo__info {
    margin: 50px 0 0;
    width: 100%;
  }
  
  .promo__text {
    font-size: 14px;
    margin: 0 0 30px;
  }

  .promo__btn {
    width: 100%;
    max-width: 340px;
  }
  
  .promo__img {
    width: 100%;
    max-height: 360px;
  }

  .promo__img {
    width: 280px;
    height: 360px;
    align-self: center;
  }
}

.catalog__btn {
  margin: 30px auto 0;
}

.card {
  position: relative;
  background: #fff;  
  width: 100%;
  min-height: 543px;
}

.card__link {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.card__img {
  position: relative;
  margin-bottom: 10px;
  height: 461px;
  width: 100%;
  overflow: hidden;
}

.card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card__img img:last-child {
  transform: translateX(100%);
}

.card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__title {
  flex: 1;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.card__text {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.02em;
  opacity: 0.4;
  margin: 3px 0 13px;
} 

.card__price {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  padding-right: 45px;
}

.card__btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  min-height: 40px;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  color: #fff;
  z-index: 15;
}

.card__btn:hover,
.card__btn:focus {
  color: rgba(0,0,0,0.5);
  background-color: #fff;
}

.card__btn.active {
  color: #000;
}

.card__icon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.card__icon img,
.card__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card__link:hover .card__icon {
  transform: rotate(-.125turn);
}

.card__link:hover .card__img img:first-child {
  transform: translateX(-100%);
}

.card__link:hover .card__img img:last-child {
  transform: translateX(0);
}

@media (width < 768px) {
  .card {
    min-height: 0;
  }
}

.about-brand__wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1fr;
  grid-template-rows: 1fr min-content;
  grid-template-areas: "img-big title top top"
    "img-big title bottom img-small";
  gap: 20px;
}

.about-brand__title {
  grid-area: title;
}

.about-brand__text {
  font-size: 14px;
  line-height: 140%;
}

.about-brand__text p {
  margin: 0;
}

.about-brand__text--top {
  grid-area: top;
}

.about-brand__text--bottom {
  grid-area: bottom;
}

.about-brand__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-brand__img--big {
  grid-area: img-big;
}

.about-brand__img--small {
  grid-area: img-small;
  height: 280px;
  align-self: end;
}

@media (width < 1240px) {
  .about-brand__wrap {
    grid-template-columns: 2fr 2fr 1fr;
    grid-template-rows: min-content 1fr min-content;
    grid-template-areas: "title title title"
      "img-big top top"
      "img-big bottom img-small";
  }

  .about-brand__title {
    text-align: center;
    margin-bottom: 20px;
  }
}

@media (width < 768px) {
  .about-brand__wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "title"
      "top"
      "img-big "
      "bottom"
      "img-small";
  }

  .about-brand__img--big {
    height: auto;
  }

  .about-brand__img--small {
    height: auto;
  }
}

.banner {
  position: relative;
  height: 740px;
}

.banner__imgs {
  position: absolute;
  z-index: -1;
  display: flex;
  width: 100%;
  height: 100%;
}

.banner__imgs img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.banner__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  background-color: rgba(36,36,36,0.62);
  color: #fff;
}

.banner__title {
  font-weight: 500;
  max-width: 1360px;
  text-align: center;
  padding: 0 40px;
}

@media(width < 768px) {
  .banner__imgs {
    flex-direction: column;
  }

  .banner__imgs img {
    width: 100%;
    height: 50%;
    object-fit: cover;
  }

  .banner__title {
    font-size: 28px;
    padding: 0 15px;
  }
}

[data-accordion=element].is-active > [data-accordion=content] {
  max-height: 100%;
}

[data-accordion=parent].no-transition [data-accordion=content] {
  transition: none;
}

[data-accordion=content] {
  max-height: 0;
  transition: max-height 0.3s ease;
  overflow: hidden;
}

.accordion__element {
  background-color: #f4f4f4;
  overflow: hidden;
  margin-bottom: 10px;
}

.accordion__button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 60px 20px 30px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  font-size: 20px;
  line-height: 26px;
  color: #000;
  transition: color 0.3s ease;
  min-height: 76px;
}

.accordion__button-text {
  text-align: start;
}

.accordion__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 26px;
  right: 30px;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.accordion__icon svg {
  width: 100%;
  height: 100%;
}

.accordion__element.is-active > .accordion__button .accordion__icon {
  transform: rotate(0.125turn);
}

.accordion__wrapper {
  padding: 8px 60px 30px 30px;
  max-width: 850px;
}

.accordion__wrapper p {
  margin: 0;
}

@media (width < 768px) {

}

.subscribe {
  min-height: 120px;
  background: #ebebeb;
  padding: 33px 0;
}

.subscribe__form form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.subscribe__title {
  width: calc((100% - 40px)/3);
  max-width: 325px;
}

.form__text {
  font-size: 8px;
  line-height: 10px;
  opacity: 0.6;
  margin-top: 4px;
}

.subscribe__form .btn {
  width: calc((100% - 40px)/3);
  max-width: 325px;
}

.subscribe__form .custom-input {
  flex-direction: column;
  width: calc((100% - 40px)/3);
  max-width: 325px;
}

.subscribe__form .custom-input input {
  border: none;
  background-color: transparent;
  border-bottom: 2px solid  #ACACAC;
  padding: 7px 0;
  min-height: 0;
}

.subscribe__form  .custom-input input::-webkit-input-placeholder {
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: #000;
  opacity: 0.6;
}

@media(width < 768px) {
  .subscribe {
    min-height: 0;
    padding: 70px 0;
  }
  
  .subscribe__form form {
    flex-direction: column;
    gap: 30px;
  }
  
  .subscribe__title {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .subscribe__form .btn {
    width: 100%;
    max-width: 100%;
  }
  
  .subscribe__form .custom-input {
    width: 100%;
    max-width: 100%;
  }
}

.footer {
  background-color: #000;
  color: #fff;
  min-height: 392px;
  padding-top: 50px;
}

.footer__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:50px;
}

.footer__item {
  color: #fff;
}

.footer__item:nth-child(3n+2) {
  justify-self: center;
}

.footer__item:nth-child(3n+3) {
  justify-self: end;
}

.footer__text {
  font-size: 8px;
  line-height: 10px;
  text-align: right;
  color: #fff;
  opacity: 0.6;
  max-width: 170px;
}

.footer__logo {
  width: 100%;
  max-width: 1178px;
  height: 212px;
  overflow: hidden;
  margin: 20px auto 0;
}

.footer__logo .logo {
  width: 100%;
  height: 289px;
}

.footer__logo svg {
  width: 100%;
  height: 100%;
  color: #3D3D3D;
}

@media(width <768px) {
  .footer {
    min-height: 0;
  }

  .footer__wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__item:nth-child(3n+3) {
    justify-self: center;
  }

  .footer__item {
    justify-self: center;
  }

  .footer__text {
    text-align: center;
    color: #fff;
  }

  .footer__logo {
    height: 60px;
    margin-top: 40px;
  }
  
  .footer__logo .logo {
    height: 84px;
  }
}

.about-block {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  min-height: 500px;
}

.about-block:last-child {
  margin-bottom: 0;
}

.about-block:nth-child(even) {
  flex-direction: row-reverse;
}

.about-block__img {
  flex: 1;
  width: 100%;
}

.about-block__text {
  flex: 1;
  padding-top: 40px;
}

@media(width < 768px) {
  .about-block {
    flex-direction: column;
  }

  .about-block:nth-child(even) {
    flex-direction: column;
  }

  .about-block__text {
    padding-top: 0;
  }
}

.about-video {
  display: flex;
  gap: 20px;
}

.about-video .video {
  flex: 1;
}

.about-video__text {
  flex: 1;
  padding-top: 40px;
}

@media(width <768px) {
  .about-video {
    flex-direction: column;
  }
}

.about-promo {
  height: 640px;
  display: flex;
  flex-direction:column;
  justify-content: flex-end;
  align-items: center;
}

.about-promo__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-promo__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-promo__content {
  max-width: 1360px;
  padding: 70px 40px;
}

.about-promo__title{
  margin-bottom: 10px;
  text-align: center;
}

.about-promo__subtitle{
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  margin: 0;
}

@media(width < 768px) {
  .about-promo__content {
    padding: 70px 15px;
  }
 
  .about-promo__subtitle{
    font-size: 14px;
  }
}

.product-card {
  position: relative;
  background-color: #F4F4F4;
  padding: 20px 30px 20px 20px;
  display: grid;
  gap: 15px;
  grid-template-columns: 80px 1fr;
  align-items: center;
}

.product-card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

.product-card__img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__info {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center; 
}

.product-card__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
}

.product-card__details {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 40px;
  align-items: center;
}

.product-card__details dt {
  font-weight: 300;
  font-size: 12px;
  line-height: 15px;
  opacity: 0.8;
}

.product-card__details dd {
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}

.product-card__price {
  font-size: 24px;
  line-height: 31px;
  flex-shrink: 0;
}

.product-card__del {
  position: absolute;
  right: 10px;
  top: 10px
}

.product-card .quantity {
  position: relative;
  z-index: 5;
}

@media (width < 768px) {
  .product-card {
    padding: 10px 30px 10px 10px;
    align-items: start;
  }

  .product-card__info {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-card__title {
    font-size: 16px;
    line-height: 20px;
    padding-top: 10px;
  }
}

.quantity {
  display: flex;
  align-items: center;
}

.quantity__btn {
	position: relative;
  border: none;
  padding: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background-color: transparent;
	border-radius: 50%;
	overflow: hidden;
	transition: opacity 0.3s ease;
  border: 1px solid #000;
}

.quantity__btn:hover,
.quantity__btn:focus {
	opacity: 0.8;
}

.quantity__btn:disabled {
	opacity: 0.4;
}

.quantity__btn::after {
  content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
	height: 1px;
	background-color: #000;
}

.quantity__btn[data-plus]::before {
  content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 1px;
	height: 60%;
	background-color: #000;
}

.quantity__amount {
  height: 32px;
  width: 40px;
  margin: 0 4px;
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
}

.quantity__amount input {
  padding: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: transparent;
  border: 0;
  outline: 0;
  color: inherit;
  font-size: 24px;
  line-height: 31px;
}

.accept {
  position: fixed;
  bottom: 30px;
  left: 40px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 500;
}

.accept.active {
  opacity: 1;
  visibility: visible;
}

.accept__btn {
  margin-left: auto;
  margin-top: 20px;
  width: 80px;
}

@media(width < 768px) {
  .accept {
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
    padding: 20px;
  }
}

.size-btn label {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 30px;
  height: 31px;
  background-color: #f4f4f4;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.size-btn__text {
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.size-btn__text {
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.size-btn input {
  position: absolute;

  width: 1px;
  height: 1px;
  margin: -1px;

  clip: rect(0 0 0 0);
}

.size-btn label:has(input:checked) {
  border-color: #000;
}

.product__wrap {
  display: grid;
  grid-template-columns: 50% 50%;
}

.product__slider {
  margin-bottom: 10px;
}

.product__slider img {
  height: auto;
  width: 100%;
  user-select: none;
}

.product__slider-mini .product__img {
  height: 105px;
  width: auto;
}

.product__slider-mini img {
  height: 100%;
  width: auto;
  user-select: none;
}

.product__info {
  margin-left: 20px;
}

.product__title {
  font-weight: 700;
  font-size: 34px;
  line-height: 43px;
  margin:  0 0 5px;
}

.product__details {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 6px;
}

.product__details-name {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  position: relative;
}

.product__details-name:hover  .sizes-table {
  opacity: 1;
  visibility: visible;
}

.product__price-block {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.product__price {
  font-size: 32px;
  line-height: 41px;
  margin-right: 20px;
}

.product__doli {
  border: none;
  height: 36px;
  background: #F4F4F4;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  color: #000;
  transition: opacity 0.3s ease;
}

.product__doli:hover,
.product__doli:focus {
  opacity: 00.7;
}

.product__colors {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.product__color-link {
  display: block;
  width: 30px;
  height: 30px;
  transition: opacity 0.3s ease;
}

.product__color-link.active {
  border-bottom: 2px solid #000;
}

.product__color-link:hover,
.product__color-link:focus {
  opacity: 0.8;
}

.product__size {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.product__btns {
  display: flex;
  margin-bottom: 40px;
}

.product__btns .btn--icon {
  width : 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid #000;
  color: #fff;
  margin-left: 30px;
}

.product__btns .btn__icon {
  width : 25px;
  height: 22px;
}

.product__btns .btn--icon.active {
  color: #000;
}

.product__block-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

.product__desc {
  margin-bottom:  40px;
}

.product__desc p {
  font-size: 14px;
  line-height: 120%;
  margin:  0 0 10px;
}

@media(width < 768px) {
  .product__wrap {
    grid-template-columns: 100%;
  }

  .product__slider-mini .product__img {
    height: 60px;
  }

  .product__info {
    margin: 0 0 20px;
  }
}

.filter {
  margin-bottom: 20px;
}

.filter__all {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

.filter__all .btn__icon {
  width: 14px;
  height: 20px;
  transition: transform 0.3s ease;
}

@media(width >= 768px) {
  .filter__all {
    display: none;
  }
}

.filter__wrap {
  display: flex;
  gap: 30px;
}

.filter__block {
  position: relative;
}

.filter__block.sort {
  margin-left: auto;
}

.filter__btn .btn__icon {
  width: 12px;
  height: 12px;
}

.filter__list {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  margin: 0;
  padding: 10px;
  background-color: #fff;
  z-index:20;
  width: fit-content;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.filter__block.active .filter__list{
  opacity: 1;
  visibility: visible;
}

.filter__block:has(.active) .filter__btn .btn__icon {
  transform: rotate(0.25turn);
}

@media(width < 768px) {
  .filter__wrap {
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
  }

  .filter__wrap.active {
    max-height: 100%;
  }

  .filter__block.sort {
    margin-left: 0;
  }

  .filter__btn {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    padding: 10px 0;
    border-radius: 0;
    font-size: 14px;
    line-height: 18px;
    justify-content: space-between;
  }

  .filter__btn .btn__icon {
    transform: rotate(-0.25turn);
    transition: transform 0.3s ease;
  }

  .filter__block.active .filter__btn  .btn__icon{
    transform: rotate(0);
  }

  .filter__list {
    width: 100%;
    position: relative;
    height: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .filter__list .custom-toggle:not(:last-child) {
    margin-bottom: 15px;
  }

  .filter__block.active .filter__list{
    max-height: 100%;
    padding: 10px;
  }
}

.sizes-btn {
  width: 20px;
  height: 20px;
  border:none;
  background-color: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0;
}

.sizes-table {
  background-color: #fff;
  padding: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transform: translateY(100%);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sizes-table__title {
  font-size: 20px;
  line-height: 120%;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.sizes-table__row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  border-bottom: 1px solid  rgba(0,0,0,0.3);
  padding: 10px 0;
}

.sizes-table__head {
  font-weight: 700;
}

.sizes-table .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0;
}

@media(width <768px) {
  .sizes-table {
    padding: 20px 0;
    position: relative;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .sizes-table.active {
    display: block;
  }

  .sizes-table__title {
    text-align: left;
  }

  .sizes-table .btn-close {
    opacity: 1;
  }
}

.cart__bottom {
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  margin-top: 20px;
}

.cart__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F4F4F4;
  border-radius: 100px;
  padding: 20px;
  gap: 20px;
  margin: 0 0 20px;
}

.cart__total-text {
  font-size: 14px;
  line-height: 18px;
}

.cart__total-sum {
  font-size: 24px;
  line-height: 31px;
}

.cart__bottom .custom-input {
  margin-bottom: 20px;
}

.cart__bottom .custom-input input {
  border-radius: 1000px;
  min-height: 62px;
  padding-right: 70px;
}

.cart__bottom .btn {
  width: 100%;
}

.cart__bottom .custom-input .btn{
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
  height: 62px;
}

@media(width < 1024px) {
  .checkout .grid-2 {
    grid-template-columns: 1fr;
  }
}

.checkout .form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__row {
  display: flex;
  gap: 20px;
}

@media(width < 1024px) {
  .form__row {
    flex-direction: column;
  }
}

.order {
  background-color: #f4f4f4;
  padding: 20px;
}

.order__item {
  display: grid;
  grid-template-columns: 1fr 100px;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 19px;
  gap: 20px;
}

.order__item:last-child {
  margin-bottom: 0;
}

.order__top {
  font-size: 14px;
  line-height: 18px;
  opacity: 0.4;
  margin-bottom: 13px;
}

.delivery {
  background-color: #f4f4f4;
  padding: 20px;
  border-top: 1px solid rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px
}

.delivery__name {
  margin-right: auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}

.total {
  background-color: #f4f4f4;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.total__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}

.total__price {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}

.pay {
  padding: 20px 0 38px;
}

.pay .custom-toggle{
  margin-bottom: 15px;
}

.pay__text {
  font-size: 12px;
  line-height: 14px;
}

.pay__text a {
  font-weight: 700;
  border-bottom: 1px solid #000;
  transition: border-color 0.3s ease;
}

.pay__text a:hover,
.pay__text a:focus {
  border-color: transparent;
}

.checkout__right .btn {
  width: 100%;
}



