html {
  font-size: calc(16 * (100vw / 1920)) !important;

  @media (max-width: 1440px) {
    font-size: calc(16 * (100vw / 1920)) !important;
  }

  @media (max-width: 1280px) {
    font-size: calc(16 * (100vw / 1920)) !important;
  }

  @media (max-width: 960px) {
    font-size: calc(16 * (100vw / 960)) !important;
  }

  /* @media (max-width: 768px) {
    font-size: calc(16 * (100vw / 768)) !important;
  } */

  @media (max-width: 480px) {
    font-size: calc(16 * (100vw / 480)) !important;
  }

  @media (max-width: 360px) {
    font-size: calc(16 * (100vw / 360)) !important;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  padding: 1rem 3rem;
  transition: all 0.3s ease;
  border-bottom: 1.33px solid rgba(255, 255, 255, 0.3);
}

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

.header__logo img {
  height: 3.375rem;
  width: 9.375rem;
}

.header__menu {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.header__menu-item a {
  color: #fff;
  font-weight: 300;
  font-size: 1.315rem;
  line-height: 1.5;
  letter-spacing: -0.05em;
  padding: 0.625rem 2rem;
  padding-top: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.header__menu-item a:hover {
  border-color: #ffffff4d;
}

.active-link {
  position: relative;
  pointer-events: none;
  cursor: default;
}

.active-link::before {
  content: "";
  position: absolute;
  left: 0.667rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.667rem;
  height: 0.667rem;
  background-color: #e64410;
  border-radius: 50%;
}

.header__buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header__icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  background-color: transparent;
}

.header__icon-btn:hover {
  border-color: #ffffff4d;
}

.header__icon-btn img {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  object-fit: contain;
  filter: invert(0);
}

.header__cart-btn {
  position: relative;
}

.header__cart-count {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  background-color: #e64410;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__burger-btn {
  display: none;
}

.header__burger {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  filter: invert(1);
}

/* Адаптив хедер  */

@media (max-width: 960px) {
  .header {
    padding: 1rem 3rem;
    border-bottom: 1px solid #ffffff4d;
  }

  .header__nav {
    display: none;
  }

  .header__burger-btn {
    display: flex;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 1rem;
  }

  .header__logo img {
    height: 2.5rem;
    width: 6.938rem;
  }

  .header__buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .header__icon-btn {
    width: 3rem;
    height: 3rem;
  }

  .header__icon-btn img {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* Поиск  */

.search {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  background-color: rgba(13, 20, 33, 0.5);
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.2s,
    opacity 0.2s ease;
}

.search--open {
  visibility: visible;
  opacity: 1;
}

.search__container {
  position: relative;
  z-index: 110;
  display: flex;
  gap: 2.5rem;
  width: 100vw;
  min-height: auto;
  background-color: #fcf7f3;
  padding: 2rem 3rem 2.5rem;
}

.search__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

.search__search-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

.search-bar__input {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.search-bar__input-icon {
  padding: 0.5rem;
}

.search-bar__input img {
  width: 1.25rem;
  height: 1.25rem;
  filter: invert(1);
}

.search-bar__input input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 1rem;
  padding: 0.5rem 0;
  color: #121011;
}

.search-bar__input input::placeholder {
  color: #475467;
}

.search-bar__close-icon {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 1rem;
}

.search-bar__close-icon img {
  width: 1rem;
  height: 1rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.search-bar__close-icon:hover img {
  opacity: 1;
}

.search__description {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: auto;
}

.search__message {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  max-width: 40rem;
  margin: auto;
}

.search__message-line {
  font-size: 2rem;
  color: #121011;
  letter-spacing: -0.05em;
}

.search__message-line--secondary {
  font-size: 1.25rem;
  color: #121011;
  line-height: 1.4;
  letter-spacing: -0.05em;
}

.search__success {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.search__success-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.success-header-count,
.success-header-link {
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: #667085;
  transition: all 0.2s ease;
}

.success-header-link {
  text-decoration: underline;
}

.success-header-link:hover {
  color: #121011;
}

.search__success-list {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
}

/* .search__success-list::-webkit-scrollbar {
  display: none;
} */

.search__success-list-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 19.813rem;
  max-width: 19.813rem;
  /*height: 30.688rem;*/
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.search__success-list-item:hover .list-item__info-title h4,
.search__success-list-item:hover .list-item__info-title h3,
.search__success-list-item:hover .list-item__info-price {
  color: #e64410;
}

.list__item-link {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list-item__info-title h4,
.list-item__info-title h3,
.list-item__info-price {
  color: #121011;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.05em;
  transition: color 0.2s ease;
}

.list__item-image {
  width: 100%;
  height: 23.125rem;
  object-fit: cover;
}

.list-item__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list-item__info-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.list-item__info-title h4,
.list-item__info-title h3,
.list-item__info-price {
  color: #121011;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.list-item__info-price {
  font-size: 1.5rem;
}

/* Поиск адаптив  */

@media (max-width: 1440px) {
  .search__message-line {
    font-size: 1.5rem;
  }

  .search__message-line--secondary {
    font-size: 1rem;
  }
}

@media (max-width: 960px) {
  .search__success-list {
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .search__success-list::-webkit-scrollbar {
    height: 4px;
  }

  .search__success-list::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 4px;
  }

  .search__success-list::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 4px;
  }

  .search__success-list-item {
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .search__success-list {
    gap: 1rem;
  }

  .search__success-list-item {
    width: 16rem;
    height: 26rem;
  }

  .list__item-image {
    height: 19rem;
  }
}

@media (max-width: 480px) {
  .search__container {
    padding: 2rem 1rem 2.5rem;
  }

  .search__success-list {
    gap: 0.75rem;
    margin-right: -1rem;
  }

  .search__success-list::-webkit-scrollbar {
    display: none;
  }

  .search__success-list-item {
    width: 14rem;
    height: 23rem;
  }

  .search__success-list-item:last-child {
    margin-right: 1rem;
  }

  .list__item-image {
    height: 16rem;
  }

  .list-item__info-price {
    font-size: 1.25rem;
  }

  .list-item__info-title h4,
  .list-item__info-title h3 {
    font-size: 0.875rem;
  }
}

/* Меню  */

.menu {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  background-color: rgba(13, 20, 33, 0.5);
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.2s,
    opacity 0.2s ease;
}

.menu--open {
  visibility: visible;
  opacity: 1;
}

.menu__container {
  position: relative;
  z-index: 110;
  display: flex;
  flex-direction: column;
  width: 100vw;
  min-height: 25rem;
  background-color: #fcf7f3;
}

.menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.688rem;
  padding: 1rem 3rem;
  width: 100%;
  border-bottom: 1px solid #0000004d;
}

.menu__header-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.icon-btn img {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  object-fit: contain;
}

.icon-btn--search img,
.icon-btn--cart img {
  filter: invert(1);
}

.icon-btn--close img {
  filter: none;
  width: 1.25rem;
  height: 1.25rem;
}

.menu__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 3rem 3rem 2.5rem 3rem;
}

.menu__content-list {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
}

.menu__content-list li {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.05em;
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
  display: inline-block;
  width: auto;
  transition: color 0.2s ease;
}

.menu__content-list li a {
  color: black;
}

.menu__content-list li:hover {
  opacity: 0.8;
  transition: all 0.2s ease;
}

/* Меню адаптив  */

@media (max-width: 480px) {
  .menu__header {
    padding: 1rem;
    height: auto;
  }

  .menu__header-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .icon-btn {
    width: 3rem;
    height: 3rem;
  }

  .icon-btn img {
    width: 1.25rem;
    height: 1.25rem;
  }

  .icon-btn--close img {
    width: 1rem;
    height: 1rem;
  }
}



/* Основной контент  */

.container {
  max-width: 1920px;
}

.main {
  width: 100%;
  overflow-x: hidden;
}

/* Хиро  */

.hero {
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), url("../assets/images/main-page/hero-section/hero-section-background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  display: flex;
  position: relative;
}

.hero__container {
  width: 100%;
  margin: 10.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero__title-wrapper {
  display: flex;
  align-items: center;
  padding: 0 4rem;
  border-bottom: 1.33px solid rgba(255, 255, 255, 0.3);
  max-height: auto;
  gap: 6.5rem;
}

.hero__title {
  font-size: 1.667rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: #fff;
  min-width: 34.5rem;
  text-transform: uppercase;
  margin-top: 1rem;
}

.hero__title-right {
  display: block;
  text-align: right;
}

.hero__title-left {
  display: block;
  text-align: left;
}

.hero__subtitle-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0 4rem;
  border-bottom: 1.33px solid rgba(255, 255, 255, 0.3);
  max-height: 11.7rem;
}

.hero__description {
  font-size: 11.6rem;
  font-weight: 400;
  letter-spacing: -0.08em;
  color: #fff;
}

.hero__catalog-link {
  position: absolute;
  width: 19.625rem;
  height: 19.625rem;
  bottom: 4.083rem;
  right: 10.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  padding: 2rem;
  backdrop-filter: blur(4px);
  border: 1.33px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  isolation: isolate;
}

.hero__catalog-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease-out;
  z-index: -1;
}

.hero__catalog-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.7) 30%,
    rgba(255, 255, 255, 0.3) 60%,
    rgba(255, 255, 255, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.2s ease-out;
  z-index: -1;
}

.hero__catalog-link:hover::after {
  opacity: 1;
}

.hero__catalog-link:hover::before {
  background: transparent;
}

.hero__catalog-link {
  transition:
    backdrop-filter 0.2s ease-out,
    border 0.2s ease-out;
}

.hero__catalog-link:hover {
  backdrop-filter: blur(6px);
  border: 1.33px solid rgba(255, 255, 255, 0.6);
}

.hero__catalog-link > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid white;
  transition: all 0.2s ease-out;
  position: relative;
  z-index: 1;
}

.hero__catalog-link span {
  text-wrap: nowrap;
  color: white;
  font-size: 1.5rem;
  font-weight: 300;
  transition: color 0.2s ease-out;
}

.hero__catalog-link img {
  transition: filter 0.2s ease-out;
  width: 1rem;
  height: 1rem;
}

.hero__catalog-link:hover span {
  color: black;
}

.hero__catalog-link:hover > div {
  border-bottom-color: black;
}

.hero__catalog-link:hover img {
  filter: brightness(0) invert(0);
}

/* Адаптив Хиро  */

@media (max-width: 960px) {
  .hero {
    height: 56.25rem;
  }

  .hero__container {
    margin-top: 8.5rem;
  }

  .hero__title-wrapper {
    padding: 0 3rem;
    gap: 2.5rem;
  }

  .hero__title {
    font-size: 1rem;
    min-width: 21.125rem;
    margin-top: 0;
  }

  .hero__description {
    font-size: 5rem;
  }

  .hero__catalog-link {
    width: 19.75rem;
    height: 19.75rem;
    bottom: 3rem;
    right: 3rem;
  }

  .hero__catalog-link span {
    font-size: 1.5rem;
    font-weight: 400;
  }

  .hero__catalog-link img {
    width: 0.75rem;
    height: 0.75rem;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 62.5rem;
  }

  .hero__container {
    margin-top: 7.5rem;
  }

  .hero__title-wrapper {
    flex-direction: column;
    padding: 0 1rem;
    gap: 0;
  }

  .hero__title-wrapper h2 {
    margin-left: -2rem;
  }

  .hero__title {
    font-size: 1rem;
    min-width: 21.25rem;
    margin-top: 0;
    margin-right: auto;
  }

  .hero__description {
    font-size: 4.375rem;
    line-height: 1.1;
  }

  .hero__subtitle-wrapper {
    padding: 0 1rem;
  }

  .hero__catalog-link {
    width: 0px;
    height: 0px;
    bottom: 4rem;
    right: 50%;
    transform: translateX(50%);
    border-radius: 0;
    padding: 0.5rem 1rem;
    backdrop-filter: none;
    border: none;
    background: none;
    isolation: auto;
    margin-bottom: 1rem;
  }

  .hero__catalog-link span {
    font-size: 1.5;
    font-weight: 300;
  }

  .hero__catalog-link img {
    width: 0.75rem;
    height: 0.75rem;
    margin-top: 0;
  }
}

@media (max-width: 360px) {
  .hero {
    height: 50rem;
  }

  .hero__container {
    margin-top: 8.75rem;
  }

  .hero__title-wrapper {
    flex-direction: column;
    padding: 0 1rem;
    gap: 0;
  }

  .hero__title-wrapper h2 {
    margin-left: -2rem;
  }

  .hero__title {
    font-size: 0.875rem;
    min-width: 19.25rem;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0.5rem;
  }

  .hero__description {
    font-size: 3.125rem;
    line-height: 1;
  }
}

/* Качество */

.quality {
  width: 100%;
  background-color: #fcf7f3;
  height: 75rem;
  display: flex;
  position: relative;
}

.quality::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75.167rem;
  height: 100%;
  border: 1.33px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.quality__container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  justify-content: center;
  align-items: center;
}

.quality__container-text-block {
  position: relative;
  width: 100%;
  height: 11.688rem;
  border-bottom: 1.33px solid rgba(0, 0, 0, 0.2);
  padding: 0 4rem;
  display: flex;
  align-items: center;
  background-color: transparent;
}

.quality__container-text-block--left {
  justify-content: flex-start;
  position: relative;
}

.quality__container-text-block--center {
  justify-content: center;
  position: relative;
}

.quality__container-text-block--right {
  justify-content: flex-end;
  position: relative;
}

.quality__container-text-block h2 {
  font-size: 11.667rem;
  font-weight: 400;
  letter-spacing: -0.08em;
  color: #121011;
  margin-top: -1rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.quality__container-text-block p {
  font-size: 1.667rem;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.2;
  color: #121011;
  text-transform: uppercase;
  position: absolute;
  padding-left: 2.5rem;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
}

.quality__container-text-block p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 1.333rem;
  height: 1.333rem;
  background-color: #e64410;
  border-radius: 50%;
}

.quality__container-text-block--left-span {
  left: 57.083rem;
}

.quality__container-text-block--center-span-left {
  left: 4rem;
}

.quality__container-text-block--center-span-right {
  right: 11.167rem;
  left: auto;
}

.quality__container-text-block--right-span-left {
  left: 25.333rem;
}

.quality-image {
  max-width: 19.167rem;
  max-height: 16.667rem;
  position: absolute;
  z-index: 2;
}

.quality-image-one {
  right: 15.167rem;
  top: 9.25rem;
}

.quality-image-two {
  left: 4rem;
  bottom: 12.333rem;
}

.quality-horizontal-line {
  display: none;
}

.quality-vertical-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.33px;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.quality-vertical-line--left {
  left: 21.95rem;
}

.quality-vertical-line--center-left {
  left: 47.917rem;
}

.quality-vertical-line--center-right {
  right: 39rem;
}

.quality-vertical-line--right {
  right: 3rem;
}

.quality-diagonal-lines {
  position: absolute;
  left: 21.95rem;
  top: 0;
  width: calc(47.917rem - 21.95rem);
  height: 31.6rem;
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1.33px, transparent 0.125rem, transparent 1.5rem);
  pointer-events: none;
  z-index: 0;
}

.quality__container-text-block--center {
  border-left: none;
}

.quality-diagonal-lines-bottom {
  position: absolute;
  right: 3rem;
  bottom: 0;
  width: 36rem;
  height: 20rem;
  background-image: repeating-linear-gradient(125deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1.33px, transparent 0.125rem, transparent 1.5rem);
  pointer-events: none;
  z-index: 0;
}

.mobile-span {
  display: none;
}

/* Качество адаптив */

@media (max-width: 960px) {
  .quality {
    height: 56.25rem;
  }

  .quality::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 56.25rem;
    height: 100%;
    border: 1.33px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    pointer-events: none;
  }

  .quality__container-text-block {
    padding: 0 3rem;
    height: 8.75rem;
    border-bottom: none;
  }

  .quality__container-text-block h2 {
    font-size: 6.25rem;
    margin-bottom: 0;
  }

  .quality__container-text-block p {
    font-size: 1.125rem;
    position: absolute;
    padding-left: 2.5rem;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .quality__container-text-block p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 1rem;
    height: 1rem;
  }

  .quality__container-text-block--left-span {
    left: 31.875rem;
  }

  .quality__container-text-block--center-span-left {
    left: 3.656rem;
    width: 12.563rem;
  }

  .quality__container-text-block--center-span-right {
    right: 2.5rem;
    left: auto;
    width: 13.688rem;
  }

  .quality__container-text-block--right-span-left {
    left: 7.438rem;
    width: 15rem;
  }

  .quality-image {
    width: 10rem;
    max-height: 8.75rem;
  }

  .quality-image-one {
    right: 3rem;
    top: 6.688rem;
  }

  .quality-image-two {
    left: 3rem;
    bottom: 7.625rem;
  }

  .quality-vertical-line {
    width: 1px;
  }

  .quality-vertical-line--left {
    left: 11.208rem;
  }

  .quality-vertical-line--center-left {
    left: 50%;
  }

  .quality-vertical-line--center-right {
    display: none;
  }

  .quality-vertical-line--right {
    right: 5.604rem;
  }

  .quality-diagonal-lines {
    left: 11.208rem;
    top: 0;
    width: 18.8rem;
    height: 23.7rem;
    background-image: repeating-linear-gradient(125deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 1.33px, transparent 0.125rem, transparent 1rem);
  }

  .quality-diagonal-lines-bottom {
    right: 0;
    bottom: 0;
    width: 5.604rem;
    height: 15rem;
    background-image: repeating-linear-gradient(125deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 1.33px, transparent 0.125rem, transparent 1rem);
  }
}

@media (max-width: 480px) {
  .quality {
    height: 52.5rem;
  }

  .quality::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 56.25rem;
    height: 100%;
    border: 1.33px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    pointer-events: none;
  }

  .quality__container-text-block {
    padding: 0.5rem 1rem;
    height: 4.375rem;
  }

  .quality__container-text-block h2 {
    font-size: 4.375rem;
  }

  .quality__container-text-block p {
    display: none;
  }

  .quality-image {
    width: 10rem;
    max-height: 8.75rem;
  }

  .quality-image-one {
    right: 1rem;
    top: 2rem;
    width: 10rem;
    height: 8.75rem;
  }

  .quality-image-two {
    left: 5.25rem;
    bottom: 3rem;
    width: 10rem;
    height: 8.75rem;
  }

  .mobile-span {
    display: block;
    position: absolute;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    max-width: 12.875rem;
  }

  .mobile-span span {
    display: block;
    position: relative;
    padding-left: 1.75rem;
    margin: 0;
  }

  .mobile-span span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 1rem;
    height: 1rem;
    background-color: #e64410;
    border-radius: 50%;
  }

  .mobile-span--geometry {
    top: 10.938rem;
    left: 1rem;
  }

  .mobile-span--package {
    top: 13.25rem;
    left: 15.1rem;
  }

  .mobile-span--check {
    top: 33.9rem;
    left: 15.1rem;
  }

  .mobile-span--accuracy {
    top: 35.438rem;
    left: 1rem;
  }

  .quality-horizontal-line {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
  }

  .quality-horizontal-line--top {
    top: 23.313rem;
  }

  .quality-horizontal-line--center {
    top: 32rem;
  }

  .quality-horizontal-line--bottom {
    bottom: 13rem;
  }

  .quality-vertical-line {
    width: 1px;
  }

  .quality-vertical-line--left {
    display: none;
  }

  .quality-vertical-line--center-left {
    left: 50%;
  }

  .quality-vertical-line--center-right {
    display: none;
  }

  .quality-vertical-line--right {
    display: none;
  }

  .quality-diagonal-lines {
    left: 0;
    top: 0;
    width: 15rem;
    height: 23.3rem;
    background-image: repeating-linear-gradient(125deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 1.33px, transparent 0.125rem, transparent 1rem);
  }

  .quality-diagonal-lines-bottom {
    display: none;
  }
}

@media (max-width: 360px) {
  .quality {
    height: 52.5rem;
  }

  .quality__container-text-block {
    padding: 0rem 1rem;
    height: 3.125rem;
  }

  .quality__container-text-block h2 {
    font-size: 3.125rem;
  }

  .quality__container-text-block p {
    display: none;
  }

  .quality-image {
    width: 8.625rem;
    height: 7.5rem;
  }

  .quality-image-one {
    right: 1rem;
    top: 2rem;
  }

  .quality-image-two {
    left: 3.75rem;
    bottom: 4rem;
  }

  .mobile-span {
    font-size: 0.875rem;
    max-width: 11.125rem;
  }

  .mobile-span span {
    display: block;
    position: relative;
    padding-left: 1.75rem;
    margin: 0;
  }

  .mobile-span span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 50;
    margin: auto 0;
    width: 1rem;
    height: 1rem;
    background-color: #e64410;
    border-radius: 50%;
  }

  .mobile-span--geometry {
    top: 10.938rem;
    left: 1rem;
  }

  .mobile-span--package {
    top: 14.25rem;
    left: 10.6rem;
  }

  .mobile-span--check {
    top: 32rem;
    left: 9.8rem;
  }

  .mobile-span--accuracy {
    top: 35.438rem;
    left: 1rem;
  }

  .quality-horizontal-line {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
  }

  .quality-horizontal-line--top {
    top: 23.6rem;
  }

  .quality-horizontal-line--center {
    top: 30.5rem;
  }

  .quality-horizontal-line--bottom {
    bottom: 15rem;
  }

  .quality-diagonal-lines {
    left: 0;
    top: 0;
    width: 11.3rem;
    height: 23.6rem;
    background-image: repeating-linear-gradient(125deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 1px, transparent 0.125rem, transparent 1rem);
  }
}

/* Категории  */

.categories {
  width: 100%;
  background-color: #252324;
  height: 100vh;
  max-height: 62.063rem;
  position: relative;
}

.categories::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -5rem;
  left: auto;
  transform: translateY(-50%);
  width: 75.167rem;
  height: 74.8rem;
  border: 1.33px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.categories__container {
  padding: 2rem 4rem 4.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* gap: 6.25rem; */
}

.categories__title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  /* padding-bottom: 1rem; */
  position: relative;
}

.categories__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4rem;
  right: -4rem;
  height: 1.33px;
  background-color: rgba(255, 255, 255, 0.2);
}

.categories__title h2 {
  color: white;
  font-size: 8.75rem;
  letter-spacing: -0.08em;
  line-height: 1;
  transition: color 0.3s ease;
}

.categories__title-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1.33px solid white;
  margin-bottom: 1rem;
  transition: border-bottom-color 0.3s ease;
}

.categories__title-link a {
  color: white;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.categories__title-link svg {
  width: 1rem;
  height: 1rem;
}

.categories__title-link svg path {
  transition: stroke 0.3s ease;
}

.categories__title-link:hover {
  border-bottom-color: #e64410;
}

.categories__title-link:hover a {
  color: #e64410;
}

.categories__title-link:hover svg path {
  stroke: #e64410;
}

.categories-list--wrapper {
  position: relative;
  margin-top: auto;
}

.categories-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow-x: auto;
}

.categories-list::-webkit-scrollbar {
  display: none;
}

.categories-list li {
  position: relative;
  overflow: hidden;
  min-width: 26.5rem;
  max-width: 26.5rem;
  height: 35.5rem;
}

.categories-list li a {
  display: block;
  text-decoration: none;
}

.categories-list img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.categories-list li:hover img {
  transform: scale(1.05);
}

.categories-list li::after {
  content: attr(data-title);
  position: absolute;
  bottom: 1.5rem;
  left: 1.333rem;
  color: #121011;
  font-size: 1.667rem;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.2;
  z-index: 1;
  pointer-events: none;
}

.categories-lines {
  border: 1.33px solid #ffffff33;
}

.categories-list--slider-btn {
  position: absolute;
  top: 52.5%;
  z-index: 20;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background-color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease;
}

.categories-list--slider-btn:disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.prev-btn,
.next-btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.prev-btn {
  left: -0.5rem;
}

.prev-btn img {
  transform: rotate(180deg);
}

.next-btn {
  right: -0.5rem;
}

.categories-list--slider-btn img {
  filter: invert(1);
  transition: filter 0.3s ease;
}

.categories-list--slider-btn:hover {
  background-color: #e64410;
}

.categories-list--slider-btn:hover img {
  filter: invert(0);
}

/* Категории адаптив */

@media (max-width: 960px) {
  .categories {
    min-height: auto;
    padding-bottom: 4rem;
  }

  .categories::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translateY(-50%);
    width: 56.25rem;
    height: 56.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
  }

  .categories__container {
    padding: 0 2rem;
    gap: 14.25rem;
  }

  .categories__title {
    margin-top: 2rem;
  }

  .categories__title h2 {
    font-size: 6.25rem;
  }

  .categories__title-link a {
    font-size: 1.5rem;
  }

  .categories__title-link svg {
    width: 0.75rem;
    height: 0.75rem;
  }

  .categories-list {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
  }

  .categories-list li {
    min-width: 19.875rem;
    max-width: 19.875rem;
    height: 28.75rem;
    scroll-snap-align: start;
  }

  .categories-list li a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .categories-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .categories {
    min-height: auto;
    padding-bottom: 0;
  }

  .categories__container {
    padding: 3rem 1rem 9.125rem;
    gap: 11rem;
  }

  .categories__title {
    margin-top: 0;
  }

  .categories__title h2 {
    font-size: 4.375rem;
  }

  .categories__title-link {
    margin-bottom: 0.85rem;
  }

  .categories__title-link a {
    font-size: 1.25rem;
  }

  .categories__title-link svg {
    width: 0.75rem;
    height: 0.75rem;
  }

  .categories-list {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
  }

  .categories-list li {
    min-width: 19.875rem;
    max-width: 19.875rem;
    height: 28.75rem;
    scroll-snap-align: start;
  }

  .categories-list li a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .categories-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 360px) {
  .categories {
    min-height: auto;
    padding-bottom: 0;
  }

  .categories__container {
    padding: 3rem 1rem 3rem;
  }

  .categories__title {
    margin-top: 0;
  }

  .categories__title h2 {
    font-size: 3.125rem;
  }
}

/* Лучшее */

.best {
  width: 100%;
  background-color: #fcf7f3;
  /*min-height: 75rem;*/
  position: relative;
}

.best__container {
  /*padding: 0 4rem 8.396rem;*/
  padding: 0 4rem 0.396rem;
  display: flex;
  flex-direction: column;
  gap: 3.333rem;
}

.best__title {
  margin-top: 3.917rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  /* padding-bottom: 1rem; */
  position: relative;
  border-bottom: 1.33px solid rgba(0, 0, 0, 0.3);
}

.best__title h2 {
  color: black;
  font-size: 8.75rem;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1;
  transition: color 0.3s ease;
}

.best__title-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1.33px solid black;
  margin-bottom: 1rem;
  transition: border-bottom-color 0.3s ease;
}

.best__title-link a {
  color: black;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.best__title-link svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
}

.best__title-link svg path {
  stroke: black;
  transition: stroke 0.3s ease;
}

.best__title-link:hover {
  border-bottom-color: #e64410;
}

.best__title-link:hover a {
  color: #e64410;
}

.best__title-link:hover svg path {
  stroke: #e64410;
}

.best__list {
  display: grid;
  gap: 2.083rem;
}

.best__list-top {
  /*grid-template-columns: 26.417rem 26.417rem 54.833rem;*/
  grid-template-columns: 26.417rem 26.417rem 26.417rem 26.417rem;
}

.best__list-bottom {
  grid-template-columns: 54.833rem 26.417rem 26.417rem;
}

/*.best__list-top .best__list-product-card:nth-child(3) a img {
  min-height: 43.333rem;
  max-height: 43.333rem;
}

.best__list-bottom .best__list-product-card:nth-child(1) a img {
  min-height: 43.333rem;
  max-height: 43.333rem;
}*/

.best__list-container {
  display: flex;
  flex-direction: column;
  gap: 3.333rem;
}

.best__list-product-card {
  position: relative;
}

.best__list-product-card a {
  display: block;
  color: inherit;
}

.best__list-product-card a img {
  width: 100%;
  height: 30.833rem;
  object-fit: cover;
  position: relative;
}

.best__list-product-card-cart {
  height: 4rem;
  width: 4rem;
  position: absolute;
  bottom: 1.354rem;
  right: 1.354rem;
  z-index: 30;
}

.best__list-product-card-content {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.333rem;
}

.best__list-product-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.333rem;
}

.best__list-product-card-info h4 {
  color: #121011;
  font-size: 1.333rem;
  letter-spacing: -0.05em;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.best__list-product-card-info h3 {
  color: #121011;
  font-size: 2rem;
  letter-spacing: -0.05em;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.best__list-product-card-content p {
  color: #121011;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.best__list-product-card a:hover .best__list-product-card-info h4,
.best__list-product-card a:hover .best__list-product-card-info h3,
.best__list-product-card a:hover .best__list-product-card-content p {
  color: #e64410;
}

.best__list-product-card-image-wrapper {
  position: relative;
  width: 100%;
}

.best__list-product-card a img {
  width: 100%;
  height: 30.833rem;
  object-fit: contain;
  display: block;
}

/*.best__list-top .best__list-product-card:nth-child(3) .best__list-product-card-image-wrapper img,
.best__list-bottom .best__list-product-card:nth-child(1) .best__list-product-card-image-wrapper img {
  min-height: 43.333rem;
  max-height: 43.333rem;
}*/

.best__list-product-card-cart {
  position: absolute;
  bottom: 3.5rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 0;
}

.best__list-product-card-cart img {
  max-width: 1.25rem;
  max-height: 1.25rem;
  object-fit: contain;
  transition: filter 0.3s ease;
  filter: brightness(0);
}

.best__list-product-card-image-wrapper:hover .best__list-product-card-cart {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.best__list-product-card-cart:hover {
  background-color: #e64410;
}

.best__list-product-card-cart:hover img {
  filter: brightness(0) invert(1);
}

.best__list-product-card-cart:active {
  transform: scale(0.95);
}

/* Лучшее адаптив*/

@media (max-width: 960px) {
  .best {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .best__container {
    padding: 6.25rem 3rem 4rem;
    gap: 2.5rem;
  }

  .best__title {
    margin-top: 0;
  }

  .best__title h2 {
    font-size: 7.5rem;
  }

  .best__title-link a {
    font-size: 1.5rem;
  }

  .best__title-link svg {
    width: 0.75rem;
    height: 0.75rem;
  }

  .best__list-container {
    gap: 2rem;
  }

  .best__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .best__list-top,
  .best__list-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

/*  .best__list-top .best__list-product-card:not(:nth-child(3)),
  .best__list-bottom .best__list-product-card:not(:nth-child(1)) {
    width: calc(50% - 0.75rem);
    height: 30.625rem;
  }

  .best__list-top .best__list-product-card:nth-child(3),
  .best__list-bottom .best__list-product-card:nth-child(1) {
    width: 41.125rem;
    height: 40.063rem;
  }

  .best__list-top .best__list-product-card:not(:nth-child(3)) .best__list-product-card-image-wrapper img,
  .best__list-bottom .best__list-product-card:not(:nth-child(1)) .best__list-product-card-image-wrapper img {
    height: 23.125rem;
    min-height: auto;
    max-height: none;
    object-fit: cover;
  }

  .best__list-top .best__list-product-card:nth-child(3) .best__list-product-card-image-wrapper img,
  .best__list-bottom .best__list-product-card:nth-child(1) .best__list-product-card-image-wrapper img {
    height: 32.5rem;
    min-height: auto;
    max-height: none;
    object-fit: cover;
  }

  .best__list-bottom .best__list-product-card:nth-child(1) {
    order: 3;
  }

  .best__list-bottom .best__list-product-card:nth-child(2) {
    order: 2;
  }

  .best__list-bottom .best__list-product-card:nth-child(3) {
    order: 1;
  }
*/
  .best__list-product-card {
    width: auto;
  }

  .best__list-product-card a img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .best__list-product-card-cart {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    width: 2.5rem;
    height: 2.5rem;
    bottom: 1rem;
    right: 1rem;
  }

  .best__list-product-card-cart img {
    max-width: 1.25rem;
    max-height: 1.25rem;
    object-fit: contain !important;
  }

  .best__list-product-card-content {
    margin-top: 1.5rem;
    gap: 1rem;
  }

  .best__list-product-card-info h3 {
    font-size: 1.5rem;
  }

  .best__list-product-card-info h4 {
    font-size: 1rem;
  }

  .best__list-product-card-content p {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .best {
    min-height: auto;
    padding-bottom: 0;
  }

  .best__container {
    padding: 6.25rem 1rem;
    gap: 1.5rem;
  }

  .best__title {
    margin-top: 0;
  }

  .best__title h2 {
    font-size: 4.375rem;
  }

  .best__title-link {
    margin-bottom: 0.85rem;
  }

  .best__title-link a {
    font-size: 1.25rem;
  }

  .best__list-container {
    gap: 1rem;
  }

  .best__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .best__list-top,
  .best__list-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .best__list-top .best__list-product-card:nth-child(3),
  .best__list-bottom .best__list-product-card:nth-child(1) {
    width: 100%;
    height: 31.25rem;
  }

  .best__list-top .best__list-product-card:not(:nth-child(3)),
  .best__list-bottom .best__list-product-card:not(:nth-child(1)) {
    width: calc(50% - 0.5rem);
    height: 22.5rem;
  }

  .best__list-top .best__list-product-card:not(:nth-child(3)) .best__list-product-card-image-wrapper img,
  .best__list-bottom .best__list-product-card:not(:nth-child(1)) .best__list-product-card-image-wrapper img {
    height: 14.938rem;
    object-fit: cover;
  }

  .best__list-top .best__list-product-card:nth-child(3) .best__list-product-card-image-wrapper img,
  .best__list-bottom .best__list-product-card:nth-child(1) .best__list-product-card-image-wrapper img {
    height: 23.688rem;
    object-fit: cover;
  }

  .best__list-product-card {
    width: auto;
  }

  .best__list-product-card a img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .best__list-product-card-cart {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    width: 2rem;
    height: 2rem;
    bottom: 0.75rem;
    right: 0.75rem;
  }

  .best__list-product-card-cart img {
    max-width: 1rem;
    max-height: 1rem;
  }

  .best__list-product-card-content {
    margin-top: 1rem;
    gap: 0.75rem;
  }

  .best__list-product-card-info h3 {
    font-size: 1.5rem;
  }

  .best__list-product-card-info h4 {
    font-size: 1rem;
  }

  .best__list-product-card-content p {
    font-size: 1.5rem;
  }
}

@media (max-width: 360px) {
  .best__container {
    padding: 5.375rem 1rem 5rem;
    gap: 2.5rem;
  }

  .best__title h2 {
    font-size: 3.125rem;
  }

  .best__title-link {
    margin-bottom: 0.85rem;
  }

  .best__title-link a {
    font-size: 1.25rem;
  }

  .best__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .best__list-top,
  .best__list-bottom {
    gap: 0.75rem;
  }

  .best__list-top .best__list-product-card:nth-child(3),
  .best__list-bottom .best__list-product-card:nth-child(1) {
    height: 25rem;
  }

  .best__list-top .best__list-product-card:not(:nth-child(3)),
  .best__list-bottom .best__list-product-card:not(:nth-child(1)) {
    height: 20rem;
  }

  .best__list-top .best__list-product-card:not(:nth-child(3)) .best__list-product-card-image-wrapper img,
  .best__list-bottom .best__list-product-card:not(:nth-child(1)) .best__list-product-card-image-wrapper img {
    height: 13.188rem;
    object-fit: cover;
  }

  .best__list-top .best__list-product-card:nth-child(3) .best__list-product-card-image-wrapper img,
  .best__list-bottom .best__list-product-card:nth-child(1) .best__list-product-card-image-wrapper img {
    height: 18.188rem;
    object-fit: cover;
  }

  .best__list-product-card {
    width: auto;
  }

  .best__list-product-card a img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .best__list-product-card-cart {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    width: 2rem;
    height: 2rem;
    bottom: 0.75rem;
    right: 0.75rem;
  }

  .best__list-product-card-cart img {
    max-width: 1rem;
    max-height: 1rem;
  }

  .best__list-product-card-content {
    margin-top: 1.5rem;
    gap: 0.75rem;
  }

  .best__list-product-card-info h3 {
    font-size: 1.25rem;
  }

  .best__list-product-card-info h4 {
    font-size: 0.875rem;
  }

  .best__list-product-card-content p {
    font-size: 1.25rem;
  }
}

/* Акция  */

.offer {
  width: 100%;
  background-image: url("../assets/images/main-page/offer-section/offer-section-background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 58.333rem;
  display: flex;
  position: relative;
}

.offer__container {
  display: flex;
  flex-direction: column;
  gap: 2.667rem;
  margin: auto;
  text-align: center;
  padding-bottom: 5rem;
}

.offer__container h2,
h3 {
  color: white;
  font-weight: 400;
}

.offer__container h2 {
  font-size: 6.667rem;
  letter-spacing: -0.08em;
}

.offer__container h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: -0.05em;
}

.offer-link {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: auto;
  gap: 1rem;
  border-bottom: 1.33px solid white;
  transition: border-bottom-color 0.3s ease;
}

.offer-link a {
  color: white;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.offer-link svg {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.25rem;
}

.offer-link svg path {
  transition: stroke 0.3s ease;
}

.offer-link:hover {
  border-bottom-color: #e64410;
}

.offer-link:hover a {
  color: #e64410;
}

.offer-link:hover svg path {
  stroke: #e64410;
}

/* Акция адаптив */

@media (max-width: 960px) {
  .offer {
    height: 43.75rem;
  }

  .offer__container {
    padding: 2rem;
    gap: 2rem;
  }

  .offer__container h2 {
    font-size: 4.375rem;
  }

  .offer__container h3 {
    font-size: 1.125rem;
  }

  .offer-link {
    padding-top: 2rem;
    margin-bottom: 2rem;
  }

  .offer-link a {
    font-size: 1.5rem;
  }

  .offer-link svg {
    width: 1rem;
    height: 0.85rem;
    margin-bottom: 0.1rem;
  }
}

@media (max-width: 480px) {
  .offer-link {
    padding-top: 1.125rem;
    margin-bottom: 1.125rem;
  }
}

@media (max-width: 360px) {
  .offer__container {
    padding: 0 2rem;
  }

  .offer__container h2 {
    font-size: 3.125rem;
  }

  .offer-link {
    padding-top: 1rem;
    margin-bottom: 1rem;
  }

  .offer-link a {
    font-size: 1.25rem;
  }
}

/* Преимущества */

.advantages {
  width: 100%;
  background-color: #fcf7f3;
  min-height: 75rem;
  position: relative;
}

.advantages__container {
  padding: 6rem 4rem 12.167rem;
  display: flex;
  flex-direction: column;
  gap: 3.333rem;
}

.advantages__title-wrapper {
  display: flex;
  flex-direction: column;
}

.advantages__title {
  display: flex;
  flex-direction: column;
  position: relative;
}

.advantages__title-item {
  display: block;
  width: 100%;
  font-size: 8.75rem;
  line-height: 1.1;
  letter-spacing: -0.08em;
}

.advantages__title-item--right,
.advantages__title-item--left {
  border-bottom: 1.33px solid rgba(0, 0, 0, 0.3);
}

.advantages__title-item--right {
  text-align: right;
}

.advantages__title-item--left {
  text-align: left;
}

.advantages__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.advantages__list li {
  display: flex;
  flex-direction: column;
  width: 26.5rem;
  height: 33.333rem;
  padding: 2rem;
}

.advantages__list h3 {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.advantages__list p {
  margin-top: auto;
  font-size: 1.333rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.05em;
}

.advantages__list li img {
  margin: -2rem;
  object-fit: cover;
}

.advantages__list li:nth-child(1),
.advantages__list li:nth-child(7) {
  background-color: #252324;
  color: white;
}

.advantages__list li:nth-child(2),
.advantages__list li:nth-child(4),
.advantages__list li:nth-child(5),
.advantages__list li:nth-child(8) {
  background-color: #fcf7f3;
  color: #121011;
  border-top: 1.33px solid rgba(0, 0, 0, 0.4);
  border-bottom: 1.33px solid rgba(0, 0, 0, 0.4);
}

.advantages__list li:nth-child(2) h3,
.advantages__list li:nth-child(4) h3,
.advantages__list li:nth-child(5) h3,
.advantages__list li:nth-child(8) h3 {
  color: inherit;
}

.advantages__dots {
  display: none;
}

/* Преимущества адаптив*/

@media (max-width: 960px) {
  .advantages {
    min-height: auto;
  }

  .advantages__container {
    padding: 6.25rem 3rem;
    gap: 2.5rem;
  }

  .advantages__title-item {
    font-size: 6.25rem;
  }

  .advantages__list {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 1rem;
    margin-right: -3rem;
  }

  .advantages__list::-webkit-scrollbar {
    display: none;
  }

  .advantages__list li {
    flex-shrink: 0;
    width: 18.75rem;
    height: 25rem;
    scroll-snap-align: start;
  }

  .advantages__list li img {
    height: 25rem;
    object-fit: cover;
  }

  .advantages__list h3 {
    font-size: 1.5rem;
  }

  .advantages__list p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .advantages {
    min-height: auto;
  }

  .advantages__container {
    padding: 6.25rem 1rem 3.25rem;
    gap: 2.5rem;
    position: relative;
  }

  .advantages__title-item {
    font-size: 4.375rem;
  }

  .advantages__list {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 0;
    scroll-snap-type: x mandatory;
  }

  .advantages__list::-webkit-scrollbar {
    display: none;
  }

  .advantages__list li {
    flex-shrink: 0;
    padding: 1rem;
    width: 17.5rem;
    height: 21.5rem;
    scroll-snap-align: start;
  }

  .advantages__list li:last-child {
    margin-right: 3rem;
  }

  .advantages__list li img {
    height: 22.5rem;
    object-fit: cover;
  }

  .advantages__list h3 {
    font-size: 1.25rem;
  }

  .advantages__list p {
    font-size: 1rem;
  }

  .advantages__dots {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
  }

  .advantages__dots span {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #d0d5dd;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    cursor: pointer;
  }

  .advantages__dots span.active {
    background-color: #475467;
  }
}

@media (max-width: 360px) {
  .advantages__container {
    padding: 5rem 1rem 2.5rem;
    gap: 3rem;
  }

  .advantages__title-item {
    font-size: 3.125rem;
  }
}

/* Заявка  */

.application {
  width: 100%;
  background-color: #252324;
  height: 62.063rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.application::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: 0;
  right: 0;
  height: 1.33px;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 1;
}

.application::after {
  content: "";
  position: absolute;
  bottom: 5rem;
  left: 0;
  right: 0;
  height: 1.33px;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 1;
}

.application__container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 84rem;
  margin: auto;
  height: 100%;
  padding: 3rem;
}

.application__container-img {
  position: absolute;
  z-index: 100;
  max-width: 12.5rem;
  max-height: 12.5rem;
}

.application__container-img:nth-child(2) {
  top: 3rem;
  left: 12rem;
  width: 8.75rem;
  height: 8.75rem;
}

.application__container-img:nth-child(3) {
  top: 3rem;
  right: 0;
  width: 100%;
  height: 100%;
}

.application__container-img:nth-child(4) {
  top: 11.563rem;
  right: 7rem;
  width: 8.75rem;
  height: 8.75rem;
}

.application__container-img:nth-child(5) {
  bottom: 12.75rem;
  right: 7.563rem;
  width: 12.25rem;
  height: 100%;
}

.application__container-img:nth-child(6) {
  bottom: 7.5rem;
  right: 18rem;
  width: 8.75rem;
  height: 8.75rem;
}

.application__container-img:nth-child(7) {
  bottom: 3rem;
  left: 28.5rem;
  width: 8.75rem;
  height: 8.75rem;
}

.application__container-img:nth-child(8) {
  bottom: 19rem;
  left: 5rem;
  width: 8.75rem;
  height: 8.75rem;
  z-index: 11;
}

.application__container-img:nth-child(9) {
  bottom: 24rem;
  left: -4rem;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.application__container::before {
  content: "";
  position: absolute;
  top: 5rem;
  bottom: 5rem;
  left: 50%;
  transform: translate(-50%);
  width: 50rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.application__container-text {
  display: flex;
  flex-direction: column;
  max-width: 66.083rem;
  gap: 2rem;
  text-align: center;
  margin: auto;
}

.application__container-text h2,
h3 {
  color: white;
}

.application__container-text h2 {
  font-size: 5.75rem;
  letter-spacing: -0.08em;
  max-width: 49.563rem;
}

.application__container-text h3 {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.05em;
  max-width: 26.938rem;
  text-transform: uppercase;
  margin: auto;
}

.application-link {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: auto;
  border-bottom: 1px solid white;
  transition: border-bottom-color 0.2s ease;
}

.application-link-button {
  color: white;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.05em;
  text-decoration: none;
  transition: color 0.2s ease;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.application-link svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
}

.application-link svg path {
  transition: stroke 0.2s ease;
}

.application-link:hover {
  border-bottom-color: #e64410;
}

.application-link:hover button {
  color: #e64410;
}

.application-link:hover svg path {
  stroke: #e64410;
}

/* Фоновые линии  */

.application-vertical-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #ffffff4d;
  pointer-events: none;
}

.application-horizontal-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ffffff4d;
  pointer-events: none;
}

.application-vertical-line--left {
  left: -4rem;
}

.application-vertical-line--center-left {
  left: 17rem;
}

.application-vertical-line--center-right {
  right: 17rem;
}

.application-vertical-line--right {
  right: -4rem;
}

.application-horizontal-line--center-bottom {
  bottom: 23.25rem;
  margin: 0 -4rem;
}

.application-diagonal-lines {
  position: absolute;
  left: -4rem;
  top: 5.15rem;
  width: 21rem;
  height: 33.5rem;
  background-image: repeating-linear-gradient(130deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5) 1.33px, transparent 0.125rem, transparent 1.5rem);
  pointer-events: none;
  z-index: 0;
}

.application-diagonal-lines-bottom {
  position: absolute;
  right: -4rem;
  bottom: 5rem;
  width: 21rem;
  height: 18.25rem;
  background-image: repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 1.33px, transparent 0.125rem, transparent 1.5rem);
  pointer-events: none;
  z-index: 0;
}

/* Заявка адаптив */

@media (max-width: 960px) {
  .application {
    height: 56.25rem;
  }

  .application::before {
    top: 5rem;
    height: 1px;
  }

  .application::after {
    bottom: 5rem;
    height: 1px;
  }

  .application__container {
    padding: 3rem 2rem;
    width: 100%;
  }

  .application__container::before {
    top: 5rem;
    bottom: 5rem;
    left: 50%;
    width: 46.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .application__container-img {
    position: absolute;
    z-index: 100;
    max-width: 12.5rem;
    max-height: 12.5rem;
  }

  .application__container-img:nth-child(2) {
    top: 4.875rem;
    left: 9.875rem;
    width: 8.75rem;
    height: 8.75rem;
  }

  .application__container-img:nth-child(3) {
    top: 3rem;
    right: 3rem;
    width: 12.5rem;
    height: 12.5rem;
  }

  .application__container-img:nth-child(4) {
    top: 11.563rem;
    right: 10.25rem;
    width: 8.75rem;
    height: 8.75rem;
  }

  .application__container-img:nth-child(5) {
    display: none;
  }

  .application__container-img:nth-child(6) {
    display: none;
  }

  .application__container-img:nth-child(7) {
    bottom: 6.375rem;
    right: 6.75rem;
    width: 8.75rem;
    height: 8.75rem;
  }

  .application__container-img:nth-child(8) {
    bottom: 5rem;
    left: 10.375rem;
    width: 8.75rem;
    height: 8.75rem;
    z-index: 2;
  }

  .application__container-img:nth-child(9) {
    bottom: 9.375rem;
    left: 3.125rem;
    width: 12.5rem;
    height: 12.5rem;
    z-index: 1;
  }

  .application__container-text {
    max-width: 49.563rem;
    gap: 2rem;
  }

  .application__container-text h2 {
    font-size: 4.375rem;
  }

  .application__container-text h3 {
    font-size: 1.25rem;
  }

  .application-link {
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .application-link-button {
    font-size: 1.5rem;
  }

  .application-link-button svg {
    width: 0.75rem;
    height: 0.75rem;
  }

  .application-vertical-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #ffffff4d;
    pointer-events: none;
  }

  .application-horizontal-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ffffff4d;
    pointer-events: none;
  }

  .application-vertical-line--left {
    left: 2rem;
  }

  .application-vertical-line--center-left {
    left: 14.5rem;
  }

  .application-vertical-line--center-right {
    right: 14.5rem;
  }

  .application-vertical-line--right {
    right: 2rem;
  }

  .application-horizontal-line--center-bottom {
    bottom: 21.25rem;
  }

  .application-diagonal-lines {
    left: 2rem;
    top: 5.07rem;
    width: 12.5rem;
    height: 29.85rem;
    background-image: repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3) 1px, transparent 0.125rem, transparent 1.25rem);
  }

  .application-diagonal-lines-bottom {
    right: 2rem;
    bottom: 5rem;
    width: 12.5rem;
    height: 16.25rem;
    background-image: repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3) 1px, transparent 0.125rem, transparent 1.25rem);
  }
}

@media (max-width: 480px) {
  .application {
    height: 56.25rem;
  }

  .application__container {
    padding: 3rem 2rem;
  }

  .application__container-img {
    position: absolute;
    z-index: 100;
    max-width: 8.75rem;
    max-height: 8.75rem;
  }

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

  .application__container-img:nth-child(3) {
    top: 1.75rem;
    left: 0;
    width: 8.75rem;
    height: 8.75rem;
  }

  .application__container-img:nth-child(4) {
    top: 4.75rem;
    right: -2rem;
    width: 8.75rem;
    height: 8.75rem;
  }

  .application__container-img:nth-child(5) {
    display: none;
  }

  .application__container-img:nth-child(6) {
    display: none;
  }

  .application__container-img:nth-child(7) {
    display: none;
  }

  .application__container-img:nth-child(8) {
    bottom: 2.5rem;
    left: 0;
    width: 8.75rem;
    height: 8.75rem;
  }

  .application__container-img:nth-child(9) {
    bottom: 6.375rem;
    left: 23.5rem;
    width: 8.75rem;
    height: 8.75rem;
  }

  .application__container-text {
    max-width: 49.563rem;
    gap: 2rem;
  }

  .application__container-text h2 {
    font-size: 4.375rem;
  }

  .application__container-text h3 {
    font-size: 1rem;
  }

  .application-link {
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .application-link-button {
    font-size: 1.25rem;
  }

  .application-link-button svg {
    width: 0.75rem;
    height: 0.75rem;
  }

  .application-vertical-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #ffffff4d;
    pointer-events: none;
  }

  .application-horizontal-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ffffff4d;
    pointer-events: none;
  }

  .application-vertical-line--left {
    left: 2rem;
  }

  .application-vertical-line--center-left {
    left: 7.25rem;
  }

  .application-vertical-line--center-right {
    right: 7.25rem;
  }

  .application-vertical-line--right {
    right: 2rem;
  }

  .application-horizontal-line--center-bottom {
    bottom: 21.25rem;
  }

  .application-diagonal-lines {
    width: 5.3rem;
  }

  .application-diagonal-lines-bottom {
    width: 5.3rem;
  }
}

@media (max-width: 360px) {
  .application {
    height: 46.313rem;
  }

  .application::before {
    display: none;
  }

  .application::after {
    display: none;
  }

  .application__container-img {
    position: absolute;
    z-index: 100;
    max-width: 6.375rem;
    max-height: 6.25rem;
  }

  .application__container-img:nth-child(3) {
    top: 2.25rem;
    left: 0;
    width: 6.375rem;
    height: 6.25rem;
  }

  .application__container-img:nth-child(4) {
    top: 4.75rem;
    right: -1rem;
    width: 6.375rem;
    height: 6.25rem;
  }

  .application__container-img:nth-child(8) {
    bottom: 2rem;
    left: 0;
    width: 6.375rem;
    height: 6.25rem;
  }

  .application__container-img:nth-child(9) {
    bottom: 2.75rem;
    left: 17.063rem;
    width: 6.375rem;
    height: 6.25rem;
  }

  .application__container-text {
    max-width: 100%;
  }

  .application__container-text h2 {
    font-size: 3.125rem;
  }

  .application__container-text h3 {
    font-size: 0.875rem;
  }

  .application-link {
    padding-top: 1rem;
    margin-bottom: 1rem;
  }

  .application-vertical-line--left {
    left: 0.75rem;
  }

  .application-vertical-line--center-left {
    left: 5.438rem;
  }

  .application-vertical-line--center-right {
    right: 5.438rem;
  }

  .application-vertical-line--right {
    right: 0.75rem;
  }

  .application-horizontal-line--center-bottom {
    bottom: 11.313rem;
  }

  .application-diagonal-lines {
    left: 0.75rem;
    top: 5.07rem;
    width: 4.7rem !important;
    height: 29.85rem;
  }

  .application-diagonal-lines-bottom {
    right: 0.75rem;
    bottom: 0;
    width: 4.7rem !important;
    height: 11.313rem;
    background-image: repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3) 1px, transparent 0.125rem, transparent 1.25rem);
  }
}

/* Модальное окно заявки  */

.application-modal {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(13, 20, 33, 0.5);
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.2s,
    opacity 0.2s ease;
}

.application-modal--open {
  visibility: visible;
  opacity: 1;
}

.application-modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 26.875rem;
  background-color: #f2ebe6;
  padding: 1.5rem;
}

.application-modal-close-button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 1rem;
  right: 1rem;
  min-width: 1.5rem;
  min-height: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0.5rem;
  background: none;
  border: none;
}

.application-modal-close-button:hover {
  opacity: 0.6;
}

.application-modal-content-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.application-modal-content-header h3,
h4 {
  font-weight: 400;
  color: #121011;
}

.application-modal-content-header h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.application-modal-content-header h4 {
  font-size: 1rem;
  line-height: 1.2;
}

.application-modal-content-main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.application-modal__text-fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.application-modal__text-fields input {
  background: transparent;
  border: none;
  border-bottom: 1.33px solid #87898f;
  outline: none;
  width: 100%;
  padding: 0.75rem 0 0.75rem 0.25rem;
  font-size: 1rem;
  color: #121011;
  letter-spacing: -0.02em;
  max-width: 27.917rem;
  transition: all 0.2s ease;
}

.application-modal__text-fields input:hover {
  border-bottom-color: #101828;
}

.application-modal__text-fields input::placeholder {
  color: #667085;
}

.application-modal__text-fields input:focus {
  border-bottom-color: #101828;
}

.application-modal__dropzone {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.application-modal__dropzone-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 9.125rem;
  border: 1px dashed #1210114d;
  border-radius: 4px;
}

.application-modal__dropzone-wrapper-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  max-width: 15rem;
  text-align: center;
}

.application-modal__dropzone-wrapper-text p {
  color: #101828;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.application-modal__dropzone-wrapper-text span {
  color: #87898f;
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.application-modal__dropzone-wrapper-text button {
  color: #475467;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-decoration: underline;
  transition: all 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.application-modal__dropzone-wrapper-text button:hover {
  color: #121011;
}

.application-modal__dropzone-file {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3.25rem;
  border: 1px dashed #1210114d;
  border-radius: 4px;
  padding: 0.5rem 1rem;
}

.application-modal__upload-label {
  color: #475467;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-decoration: underline;
  transition: all 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.application-modal__upload-label:hover {
  color: #121011;
}

.application-modal__file-input {
  display: none;
}

.dropzone-file__info {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0.625rem;
}

.dropzone-file__info-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropzone-file__info-title span {
  color: #555555;
  font-size: 0.75rem;
}

.dropzone-file__delete-button {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dropzone-file__delete-button:hover {
  opacity: 0.8;
}

.application-modal__policy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #1a1f2e;
}

.policy-checkbox {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: black;
}

.policy-text {
  color: #121011;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  flex: 1;
}

.policy-text-link {
  text-decoration: underline;
  color: #121011;
  transition: all 0.2s ease;
}

.policy-text-link:hover {
  color: #e64410;
}

.policy-submit-button {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 3.375rem;
  background-color: #252324;
  text-align: center;
  color: white;
  font-weight: 300;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.policy-submit-button:hover {
  background-color: #000000;
}

/* Модальное окно заявки адаптив  */

@media (max-width: 480px) {
  .application-modal-content {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 5rem;
    width: 100%;
    max-width: 100%;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f2ebe6;
    border-radius: 1.5rem 1.5rem 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .application-modal-content-main {
    flex: 1;
    overflow-y: auto;
    gap: 2.5rem;
    padding-bottom: 0.5rem;
  }

  .application-modal-close-button {
    top: 1rem;
    right: 1rem;
  }

  .application-modal-content-header {
    gap: 1.5rem;
    flex-shrink: 0;
  }

  .application-modal-content-header h3 {
    font-size: 1.5rem;
  }

  .application-modal-content-header h4 {
    font-size: 1rem;
  }

  .application-modal__text-fields {
    flex-shrink: 0;
  }

  .application-modal__dropzone {
    flex-shrink: 0;
  }

  .application-modal__dropzone-wrapper {
    min-height: 9.125rem;
  }

  .application-modal__dropzone-wrapper-text {
    max-width: 15rem;
  }

  .application-modal__dropzone-wrapper-text p {
    font-size: 0.875rem;
  }

  .application-modal__dropzone-wrapper-text span {
    font-size: 0.75rem;
  }

  .dropzone-file__info {
    gap: 0.5rem;
  }

  .dropzone-file__info-title p {
    font-size: 1rem;
  }

  .application-modal__policy {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 1rem;
    background-color: #f2ebe6;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(18, 16, 17, 0.3);
  }

  .policy-text {
    font-size: 1rem;
  }

  .policy-submit-button {
    padding: 1rem 1.5rem;
    border-radius: 0.25rem;
  }
}

@media (max-width: 360px) {
  .application-modal-content {
    top: 2.5rem;
    padding: 1.5rem 1rem;
  }
}

/* Маркетплейсы */

.market-links {
  width: 100%;
  position: relative;
  height: 54.167rem;
}

.market-links__container {
  padding: 12.5rem 4rem 0;
}

.market-links__content {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

.market-links__content-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1.75rem;
  max-width: 36.083rem;
  max-height: 41.667rem;
  background-color: #252324;
}

.market-links__content-links-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.market-links__content-links-text h2 {
  color: white;
  font-size: 3.333rem;
  font-weight: 400;
  letter-spacing: -0.05em;
  margin: 0;
}

.market-links__content-links-text p {
  color: white;
  font-size: 1.333rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.05em;
  margin: 0;
}

.market-links__content-links-buttons {
  display: flex;
  align-items: center;
  gap: 0.667rem;
}

.market-links__content-links-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  border-radius: 1rem;
  width: 15.958rem;
  height: 4.479rem;
  color: white;
  font-weight: 300;
  font-size: 1.667rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
  padding: 1.333rem;
  text-align: center;
  box-sizing: border-box;
}

.market-links__content-links-ozon {
  background: linear-gradient(90deg, #0051e3 0%, #2271ff 100%);
}

.market-links__content-links-wb {
  background: linear-gradient(90deg, #7b07f8 0%, #f745d9 100%);
}

.market-links__content-image {
  display: block;
  width: 100%;
  height: 40.667rem;
  object-fit: cover;
}

/* Маркетплейсы адаптив*/

@media (max-width: 960px) {
  .market-links {
    height: auto;
  }

  .market-links__container {
    padding: 9.375rem 3rem 0;
  }

  .market-links__content {
    gap: 1.5rem;
  }

  .market-links__content-links {
    width: 50%;
    height: 31.25rem;
    padding: 1.5rem 1.313rem;
  }

  .market-links__content-links-text h2 {
    font-size: 2.65rem;
  }

  .market-links__content-links-text p {
    font-size: 1rem;
  }

  .market-links__content-links-buttons {
    gap: 0.5rem;
  }

  .market-links__content-links-buttons a {
    width: 50%;
    height: 3.375rem;
    font-size: 1.25rem;
    padding: 1rem;
    border-radius: 0.75rem;
  }

  .market-links__content-image {
    width: 50%;
    height: 31.25rem;
  }
}

@media (max-width: 480px) {
  .market-links__container {
    padding: 6.25rem 1rem 0;
  }

  .market-links__content {
    flex-direction: column;
    gap: 1rem;
  }

  .market-links__content-links {
    width: 100%;
    height: 25.875rem;
    padding: 1.5rem 1.313rem;
  }

  .market-links__content-links-text h2 {
    font-size: 2.5rem;
  }

  .market-links__content-image {
    width: 100%;
    height: 25.875rem;
  }
}

@media (max-width: 360px) {
  .market-links__content-links-text h2 {
    font-size: 2.25rem;
  }

  .market-links__content-links-buttons {
    flex-direction: column;
    width: 100%;
  }

  .market-links__content-links-buttons a {
    width: 100%;
  }

  .market-links__content-image {
    width: 100%;
    height: 25rem;
  }
}

/* Отзывы  */

.reviews {
  width: 100%;
  position: relative;
}

.reviews__container {
  display: flex;
  flex-direction: column;
  padding: 18.729rem 4rem;
}

.reviews__content {
  display: flex;
  flex-direction: column;
  gap: 3.333rem;
}

.reviews__content-title {
  font-size: 6.667rem;
  font-weight: 400;
  letter-spacing: -0.08em;
  max-width: 57.667rem;
  margin: auto;
}

.reviews__slider-wrapper {
  position: relative;
}

.reviews__content-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reviews__content-list-item {
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
  padding: 2rem;
  width: 36rem;
  height: 20.833rem;
  background-color: #ffffff;
}

.reviews__content-list-item-header {
  display: flex;
  gap: 1.479rem;
  align-items: center;
  max-height: 5.333rem;
  flex-shrink: 0;
}

.reviews__content-list-item-header img {
  max-height: 100%;
}

.reviews__content-list-item-header h4 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: #121011;
  margin: 0;
}

.reviews__content-list-item-review {
  font-size: 1.333rem;
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: #121011;
  font-weight: 400;
  margin: 0;
  display: -webkit-box;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.reviews__arrow-button {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background-color: #e64410;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
  padding: 0;
}

.reviews__arrow-button:hover {
  opacity: 0.9;
}

.reviews__arrow-button img {
  width: 1.5rem;
  height: 1.5rem;
}

/* Отзывы адаптив */

@media (max-width: 960px) {
  .reviews__container {
    padding: 14.063rem 3rem 2rem;
  }

  .reviews__content {
    gap: 3.75rem;
  }

  .reviews__content-title {
    font-size: 4.375rem;
    text-align: center;
    max-width: 43.25rem;
  }

  .reviews__content-list {
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 1rem;
  }

  .reviews__content-list::-webkit-scrollbar {
    display: none;
  }

  .reviews__content-list-item {
    flex-shrink: 0;
    width: 27rem;
    height: auto;
    height: 15.625rem;
    scroll-snap-align: start;
    padding: 1.5rem;
    gap: 1.75rem;
  }

  .reviews__content-list-item-header img {
    width: 4rem;
    height: 4rem;
  }

  .reviews__content-list-item-header h4 {
    font-size: 1.5rem;
  }

  .reviews__content-list-item-review {
    font-size: 1rem;
  }

  .reviews__arrow-button {
    width: 3rem;
    height: 3rem;
  }

  .reviews__arrow-button img {
    width: 1rem;
    height: 1rem;
  }
}

@media (max-width: 480px) {
  .reviews__container {
    padding: 10rem 1rem 8.563rem;
  }

  .reviews__content-title {
    font-size: 4.375rem;
    line-height: 1;
    text-align: center;
    max-width: auto;
  }

  .reviews__content-list {
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 0;
  }

  .reviews__content-list-item {
    flex-shrink: 0;
    width: 18.75rem;
    height: 25.375rem;
    scroll-snap-align: start;
    padding: 1.5rem;
    gap: 7.375rem;
  }

  .reviews__content-list-item-header img {
    width: 4rem;
    height: 4rem;
  }

  .reviews__content-list-item-header h4 {
    font-size: 1.5rem;
  }

  .reviews__content-list-item-review {
    font-size: 1rem;

    display: -webkit-box;
    line-clamp: 8;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
  }

  .reviews__arrow-button {
    display: none;
  }

  .reviews__arrow-button img {
    display: none;
  }
}

@media (max-width: 360px) {
  .reviews__container {
    padding: 6.25rem 1rem 5rem;
  }

  .reviews__content-title {
    font-size: 3.125rem;
  }

  .reviews__content-list {
    gap: 1rem;
  }
}

/* Доставка  */

.delivery {
  width: 100%;
  position: relative;
  margin-top: 10.917rem;
}

.delivery__container {
  display: flex;
  padding: 0 4rem 16.667rem;
}

.delivery__content {
  display: flex;
  width: 100%;
  gap: 7.688rem;
  justify-content: space-between;
}

.delivery__content-text {
  display: flex;
  flex-direction: column;
  gap: 5.979rem;
  padding-top: 2rem;
  flex: 1;
}

.delivery__content-text h2 {
  font-size: 11.667rem;
  font-weight: 400;
  letter-spacing: -0.08em;
  border-bottom: 1.33px solid rgba(0, 0, 0, 0.3);
  margin: 0;
  width: 100%;
}

.delivery__content-text-list {
  display: flex;
  flex-direction: column;
  max-width: 45.417rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery__content-text-list h3 {
  font-size: 3.333rem;
  font-weight: 400;
  color: black;
  letter-spacing: -0.05em;
  margin-bottom: 3.333rem;
}

.delivery__content-text-list li {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.333rem 0;
  border-bottom: 1.33px solid #0000004d;
}

.delivery__content-text-list li span {
  flex-shrink: 0;
  font-size: 1.333rem;
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: black;
}

.delivery__content-text-list li p {
  margin: 0;
  font-size: 1.333rem;
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: black;
  flex: 1;
}

.delivery__content-image {
  height: 50rem;
}

.delivery__content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Доставка адаптив */

@media (max-width: 960px) {
  .delivery__container {
    padding: 0 3rem 12.5rem;
  }

  .delivery__content {
    flex-direction: column;
    gap: 2.5rem;
  }

  .delivery__content-text h2 {
    font-size: 6.25rem;
  }

  .delivery__content-text-list h3 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .delivery__content-text-list li {
    gap: 1rem;
    padding: 1rem 0;
  }

  .delivery__content-text-list li span,
  .delivery__content-text-list li p {
    font-size: 1rem;
  }

  .delivery__content-image {
    height: 37.5rem;
  }
}

@media (max-width: 480px) {
  .delivery__container {
    padding: 0 1rem 12.5rem;
  }

  .delivery__content-text h2 {
    font-size: 4.375rem;
  }

  .delivery__content-image {
    height: 37.5rem;
  }
}

@media (max-width: 360px) {
  .delivery__container {
    padding: 0 1rem 6.25rem;
  }

  .delivery__content {
    flex-direction: column;
    gap: 3rem;
  }

  .delivery__content-text h2 {
    font-size: 3.125rem;
  }

  .delivery__content-text-list h3 {
    font-size: 2rem;
  }

  .delivery__content-image {
    height: 20rem;
  }
}
