@font-face {
  font-family: "Roboto";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.ttf") format("truetype"), url("../fonts/Roboto-Regular.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.ttf") format("truetype"), url("../fonts/Roboto-Medium.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Roboto-SemiBold.woff") format("woff"), url("../fonts/Roboto-SemiBold.woff2") format("woff2"), url("../fonts/Roboto-SemiBold.ttf") format("truetype"), url("../fonts/Roboto-SemiBold.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.ttf") format("truetype"), url("../fonts/Roboto-Bold.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Roboto-ExtraBold.woff") format("woff"), url("../fonts/Roboto-ExtraBold.woff2") format("woff2"), url("../fonts/Roboto-ExtraBold.ttf") format("truetype"), url("../fonts/Roboto-ExtraBold.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Roboto-Black.woff") format("woff"), url("../fonts/Roboto-Black.woff2") format("woff2"), url("../fonts/Roboto-Black.ttf") format("truetype"), url("../fonts/Roboto-Black.eot") format("embedded-opentype");
}
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-black-20: rgba(0, 0, 0, 0.2);
  --color-black-main: #393939;
  --color-grey: #F3F3F3;
  --color-grey-light: #ECEFF2;
  --color-grey-dark: #ABABAB;
  --color-grey-darkness: #808080;
  --color-grey-disabled: #EBEBEB;
  --color-green: #00C48C;
  --color-dark-green: #0A7153;
  --color-red: #FF5B5B;
  --color-violet: #9747FF;
  --color-violet-74: rgba(151, 71, 255, 0.74);
  --color-yellow: #FFE07D;
  --color-bg-white: #F7F7F7;
  --color-bg-light-blue: #F7F9FF;
  --color-bg-blue: #EBF0FF;
  --color-shadow-light: #d6d6d6;
  --color-shadow-wish: rgba(96, 96, 96, 0.25);
  --color-shadow-button: rgba(194, 194, 194, 0.25);
  --color-shadow-product: #D6D6D6;
  --color-shadow-header: rgba(141, 141, 141, 0.25);
  --color-white-stroke: #F5F6FA;
  --color-white-opacity-8: rgba(255, 255, 255, 0.08);
  --color-hero-gradient-left: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0) 100%);
  --color-hero-gradient-right: linear-gradient(to left, #000000 0%, rgba(0, 0, 0, 0) 100%);
  --color-accent-gradient: linear-gradient(to right, #DD4BEC 0%, #9747FF 100%);
  --color-yellow-gradient: linear-gradient(to bottom, #FFDE73 0%, #FFE188 100%);
  --color-image-gradient-violet: linear-gradient(-58deg, rgba(151, 71, 255, 0.1) 9%, #1B0934 100%);
  --color-image-gradient-black-horizontal: linear-gradient(-87deg, rgba(151, 71, 255, 0) 0%, #000000 89%);
  --color-image-gradient-black-vertical: linear-gradient(87deg, rgba(151, 71, 255, 0) 0%, #12161D 100%);
}
html {
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 6px;
}
html::-webkit-scrollbar-thumb {
  background-color: var(--color-violet);
  border-radius: 4px;
}
html::-webkit-scrollbar-track {
  background-color: transparent;
}
body {
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--color-black-main);
  background-color: var(--color-white);
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
ul,
ol {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}
input,
textarea,
select {
  outline: none;
  font-family: "Roboto", "Arial", sans-serif;
}
fieldset {
  padding: 0;
  margin: 0;
  border: none;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}
p {
  padding: 0;
  margin: 0;
}
.button {
  border: none;
  font-family: "Roboto", "Arial", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  padding: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  cursor: pointer;
}
.button--accent {
  color: var(--color-white);
  background-color: transparent;
  border-radius: 40px;
  overflow: hidden;
}
.button--accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: var(--color-accent-gradient);
  border-radius: 40px;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}
.button--accent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  background-color: var(--color-violet);
  border-radius: 40px;
  opacity: 1;
}
.button--accent:hover::before {
  opacity: 0;
}
.button--accent--stroke {
  border-radius: 40px;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}
.button--accent--stroke span {
  color: transparent;
  background: var(--color-white);
  background-clip: text;
  -webkit-background-clip: text;
  background-image: var(--color-accent-gradient);
  position: relative;
  z-index: 2;
}
.button--accent--stroke::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  z-index: -2;
  border-radius: 40px;
  background: var(--color-accent-gradient);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.button--accent--stroke::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 40px;
  background: var(--color-white);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.button--accent--stroke:hover span {
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
}
.button--accent--stroke:hover::after {
  opacity: 0;
}
.button--accent--stroke:hover svg path {
  fill: var(--color-white);
}
.button--accent--stroke svg path {
  fill: url(--color-accent-gradient);
  transition: fill 0.3s ease;
}
.button--green {
  color: var(--color-white);
  background-color: var(--color-green);
  border-radius: 40px;
  transition: background-color 0.3s ease;
}
.button--green:hover {
  background-color: var(--color-dark-green);
}
.button--white {
  padding: 14px 18px;
  color: var(--color-black-main);
  background-color: var(--color-white);
  border: 1px solid var(--color-black-main);
  border-radius: 40px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.button--white:hover {
  color: var(--color-white);
  background-color: var(--color-black-main);
}
.button--white:hover svg path {
  fill: var(--color-white);
}
.button--white svg path {
  fill: var(--color-black-main);
  transition: fill 0.3s ease;
}
.button--black {
  color: var(--color-white);
  background-color: var(--color-black-main);
  border-radius: 40px;
  transition: background-color 0.3s ease;
}
.button--black:hover {
  background-color: var(--color-violet);
}
.button--slider {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 3px 4px var(--color-shadow-button);
  background-color: var(--color-white);
}
.button--slider svg path {
  stroke: var(--color-grey-darkness);
  transition: stroke 0.3s ease;
}
.button--slider:hover svg path {
  stroke: var(--color-violet);
}
.wrapper {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 1000px) {
  .wrapper {
    padding: 0 20px;
  }
}
.header__logo {
  width: 153px;
}
@media (max-width: 1450px) {
  .header__logo {
    width: 112px;
  }
}
@media (max-width: 1200px) {
  .header__logo {
    width: 153px;
  }
}
@media (max-width: 700px) {
  .header__logo {
    width: 114px;
  }
}
.header-main {
  background-color: var(--color-white);
  box-shadow: 0 4px 4px var(--color-shadow-header);
  position: fixed;
  top: 60px;
  width: 100%;
  z-index: 1000;
  transition: top 0.3s ease-out;
}
.header-main.scroll {
  top: 0;
}
.header-main__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 22px;
  gap: 16px;
}
@media (max-width: 1200px) {
  .header-main {
    top: 56px;
  }
  .header-main__content {
    justify-content: flex-start;
    padding: 20px 0;
    gap: 0;
  }
}
@media (max-width: 700px) {
  .header-main__content {
    padding: 16px 0;
  }
  .header-main__content .search {
    display: none;
  }
}
.header-top {
  background-color: var(--color-bg-white);
  position: relative;
  z-index: 1000;
}
.header-top__content {
  display: flex;
  align-items: center;
  padding: 11px 0;
}
.header-top__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-grey-darkness);
  transition: color 0.3s ease;
  cursor: pointer;
}
.header-top__item:nth-child(2) {
  margin-left: 82px;
}
.header-top__item:nth-child(3) {
  margin-left: auto;
  margin-right: 44px;
}
.header-top__item svg path {
  stroke: var(--color-grey-darkness);
  transition: stroke 0.3s ease;
}
.header-top__item:hover {
  color: var(--color-violet);
}
.header-top__item:hover svg path {
  stroke: var(--color-violet);
}
@media (max-width: 1000px) {
  .header-top__item:nth-child(2) {
    margin-left: auto;
    margin-right: 22px;
  }
  .header-top__item:nth-child(3) {
    margin-right: 22px;
    margin-left: 0;
  }
}
@media (max-width: 700px) {
  .header-top__item__content {
    padding: 19px 0;
  }
  .header-top__item:first-child {
    display: none;
  }
  .header-top__item:nth-child(2) {
    margin-left: 0;
    margin-right: auto;
  }
  .header-top__item:nth-child(3) {
    display: none;
  }
}
.exclusives {
  margin-bottom: 60px;
}
.exclusives__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.exclusives__top .section-title {
  margin-bottom: 0;
}
.exclusives__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.exclusives__link {
  position: relative;
  display: block;
  height: inherit;
  box-shadow: 0 0 8px transparent;
  transition: box-shadow 0.3s ease;
  border-radius: 20px;
}
.exclusives__link:hover {
  box-shadow: 0 0 8px var(--color-shadow-product);
}
.exclusives__link .exclusives__item-image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: auto;
  height: inherit;
}
.exclusives__link picture {
  display: flex;
}
.exclusives__item-content {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
}
.exclusives__item--large {
  position: relative;
  width: 100%;
}
.exclusives__item--large img {
  width: 100%;
  height: 438px;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
}
.exclusives__item--large::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-image-gradient-black-horizontal);
  opacity: 30%;
  border-radius: 20px;
  z-index: 1;
}
.exclusives__item--large .exclusives__item-name {
  text-align: left;
}
.exclusives__item--large .exclusives__link {
  height: 438px;
}
.exclusives__item--with-price {
  width: calc(60% - 15px);
  height: 655px;
  position: relative;
}
.exclusives__item--with-price::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 80%;
  background: var(--color-image-gradient-violet);
  border-radius: 20px;
  z-index: 1;
}
.exclusives__item--with-price img {
  width: 100%;
  height: 655px;
  object-fit: cover;
  border-radius: 20px;
}
.exclusives__item--with-price .exclusives__item-image {
  position: absolute;
  bottom: unset;
  top: 64px;
  left: 48px;
  right: unset;
  z-index: 2;
  width: auto;
  height: auto;
  border-radius: 0;
}
.exclusives__item--with-price .exclusives__item-name {
  font-size: 50px;
  line-height: 64px;
  font-weight: 800;
  margin-top: 29px;
  max-width: 420px;
  width: 100%;
  margin-top: auto;
  text-align: left;
}
.exclusives__item--with-price .exclusives__item-content {
  flex-direction: row;
}
.exclusives__item--simple {
  width: calc(40% - 15px);
  height: 655px;
  position: relative;
}
.exclusives__item--simple::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 30%;
  background: var(--color-image-gradient-black-vertical);
  border-radius: 20px;
  z-index: 1;
}
.exclusives__item--simple img {
  width: 100%;
  height: 655px;
  object-fit: cover;
  border-radius: 20px;
}
.exclusives__item-name {
  font-size: 28px;
  line-height: 48px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
  text-align: center;
}
.exclusives__item-list {
  margin-top: auto;
  padding: 20px 22px;
  background-color: var(--color-white-opacity-8);
  border-radius: 14px;
  max-width: 480px;
  width: 100%;
}
.exclusives__item-list-item {
  font-size: 18px;
  line-height: 26px;
  list-style: disc;
  padding-bottom: 6px;
  margin-left: 20px;
  color: var(--color-white);
}
.exclusives__item-price--simple {
  margin-top: auto;
  margin-left: auto;
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 40px;
  background-color: var(--color-violet-74);
  color: var(--color-white);
}
.exclusives__all--mobile {
  display: none;
}
@media (max-width: 1350px) {
  .exclusives__item--with-price .exclusives__item-name {
    font-size: 32px;
    line-height: 38px;
    max-width: 250px;
  }
}
@media (max-width: 1000px) {
  .exclusives {
    margin-bottom: 40px;
  }
  .exclusives__item-content {
    padding: 30px 40px;
  }
  .exclusives__item--large img {
    height: 497px;
  }
  .exclusives__item--large .exclusives__link {
    height: 497px;
  }
  .exclusives__item--with-price {
    width: 100%;
    height: 459px;
  }
  .exclusives__item--with-price img {
    height: 459px;
  }
  .exclusives__item--simple {
    width: 100%;
    height: 591px;
  }
  .exclusives__item--simple img {
    height: 591px;
  }
  .exclusives__link .exclusives__item-image {
    width: 300px;
    object-fit: contain;
  }
}
@media (max-width: 700px) {
  .exclusives__top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
  .exclusives__list {
    margin-bottom: 20px;
    gap: 20px;
  }
  .exclusives__all {
    display: none;
  }
  .exclusives__all--mobile {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .exclusives__item-content {
    padding: 16px 10px;
  }
  .exclusives__item--large img {
    height: 230px;
  }
  .exclusives__item--large .exclusives__link {
    height: 230px;
  }
  .exclusives__item--large .exclusives__item-name {
    font-size: 17px;
    line-height: 30px;
    margin-top: auto;
  }
  .exclusives__item--with-price {
    height: 206px;
  }
  .exclusives__item--with-price img {
    height: 206px;
  }
  .exclusives__item--with-price .exclusives__item-name {
    font-size: 20px;
    line-height: 30px;
    max-width: 180px;
    margin-bottom: 0;
  }
  .exclusives__item--simple {
    height: 260px;
  }
  .exclusives__item--simple img {
    height: 260px;
  }
  .exclusives__item-list {
    padding: 0 10px;
    margin-top: 0;
  }
  .exclusives__item-list-item {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 0;
  }
  .exclusives__item-price--simple {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
  }
  .exclusives__item-name {
    font-size: 20px;
    line-height: 30px;
  }
  .exclusives__link .exclusives__item-image {
    width: 135px;
    height: auto;
    bottom: unset;
    top: 14px;
  }
}
.footer {
  background-color: var(--color-bg-white);
}
.footer__content {
  padding: 24px 0;
  display: flex;
  gap: 20px;
}
.footer__item {
  width: 25%;
}
.footer__item--info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__item--contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
.footer__copyright {
  background-color: var(--color-black-main);
  padding: 11px 0;
  text-align: center;
}
.footer__copyright-text {
  color: var(--color-white);
}
.footer__logo {
  margin-bottom: 8px;
}
.footer__email,
.footer__time,
.footer__phone,
.footer__address {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-grey-darkness);
  transition: color 0.3s ease;
}
.footer__email svg path,
.footer__time svg path,
.footer__phone svg path,
.footer__address svg path {
  stroke: var(--color-grey-darkness);
  transition: stroke 0.3s ease;
}
.footer__email:hover,
.footer__time:hover,
.footer__phone:hover,
.footer__address:hover {
  color: var(--color-violet);
}
.footer__email:hover svg path,
.footer__time:hover svg path,
.footer__phone:hover svg path,
.footer__address:hover svg path {
  stroke: var(--color-violet);
}
@media (max-width: 1000px) {
  .footer__content {
    justify-content: space-between;
  }
}
@media (max-width: 700px) {
  .footer__content {
    padding: 32px 0 20px;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .footer__item {
    width: 100%;
  }
  .footer__item--info {
    align-items: center;
    gap: 18px;
  }
  .footer__item--contacts {
    align-items: center;
  }
  .footer__logo {
    margin-bottom: 0;
  }
  .footer__email,
  .footer__time,
  .footer__phone,
  .footer__address {
    flex-direction: column;
    gap: 8px;
  }
}
.hero {
  position: relative;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero--left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-hero-gradient-left);
  z-index: 0;
  opacity: 0.5;
}
.hero--right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-hero-gradient-right);
  z-index: 0;
  opacity: 0.5;
}
.hero__content {
  padding: 244px 0 268px;
  position: relative;
  z-index: 2;
}
.hero__middle {
  color: var(--color-white);
  margin-left: 160px;
}
.hero__dates {
  font-size: 28px;
  line-height: 48px;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero__title {
  font-size: 44px;
  line-height: 64px;
  font-weight: 800;
  margin-bottom: 24px;
  max-width: 550px;
  width: 100%;
}
.hero__button {
  padding: 14px 24px;
  display: inline-block;
}
.hero__bottom {
  position: absolute;
  bottom: 20px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.hero__shipping {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  padding: 10px 22px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 40px;
  background-color: var(--color-green);
}
.hero__refund {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  padding: 10px 22px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 40px;
  background-color: var(--color-black-main);
}
@media (max-width: 1350px) {
  .hero__middle {
    margin-left: 60px;
  }
}
@media (max-width: 1000px) {
  .hero {
    margin-bottom: 0;
  }
  .hero__middle {
    margin-left: 0;
  }
  .hero__content {
    padding: 197px 0;
  }
}
@media (max-width: 700px) {
  .hero {
    margin-bottom: 0;
  }
  .hero__content {
    padding: 81px 0 146px;
  }
  .hero__dates {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 14px;
  }
  .hero__title {
    font-size: 34px;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 22px;
  }
  .hero__button {
    padding: 12px 20px;
  }
  .hero__bottom {
    bottom: 18px;
    gap: 8px;
  }
  .hero__shipping {
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    padding: 7px 14px;
    gap: 8px;
  }
  .hero__refund {
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    padding: 7px 14px;
    gap: 8px;
  }
}
.section-title {
  font-size: 34px;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 40px;
}
@media (max-width: 700px) {
  .section-title {
    font-size: 20px;
    margin-bottom: 22px;
    text-align: center;
  }
}
.language {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 1px;
  background-color: var(--color-white);
  border-radius: 40px;
}
.language__button {
  font-size: 16px;
  color: var(--color-black-main);
  background-color: transparent;
  padding: 6px 16px 2px;
  border-radius: 40px;
  text-transform: uppercase;
  transition: background-color 0.3s, color 0.3s;
}
.language__button.active {
  background-color: var(--color-black-main);
  color: var(--color-white);
}
.language__button:hover {
  background-color: var(--color-black-main);
  color: var(--color-white);
}
.logo {
  display: flex;
}
.main {
  margin-top: 90px;
}
.main.scroll {
  margin-top: 50px;
}
@media (max-width: 1450px) {
  .main {
    margin-top: 86px;
  }
  .main.scroll {
    margin-top: 42px;
  }
}
@media (max-width: 700px) {
  .main {
    margin-top: 68px;
  }
  .main.scroll {
    margin-top: 18px;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black-20);
  backdrop-filter: blur(2px);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.mobile-menu__toggle {
  display: none;
}
@media (max-width: 1200px) {
  .mobile-menu.active {
    opacity: 1;
    pointer-events: all;
  }
  .mobile-menu__wrapper {
    position: absolute;
    top: 143px;
    left: 0;
    width: 300px;
    max-height: 80vh;
    height: 100%;
    background-color: var(--color-white);
    border-radius: 0 0 20px 0;
    transform: translateX(-100%);
    overflow-y: auto;
    padding: 26px;
    transition: transform 0.3s ease, top 0.3s ease;
  }
  .mobile-menu__wrapper.active {
    transform: translateX(0);
    pointer-events: auto;
  }
  .mobile-menu__wrapper.scroll {
    top: 67px;
  }
  .mobile-menu__wrapper::-webkit-scrollbar {
    width: 6px;
  }
  .mobile-menu__wrapper::-webkit-scrollbar-thumb {
    background-color: var(--color-violet);
    border-radius: 4px;
  }
  .mobile-menu__wrapper::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .mobile-menu__toggle {
    width: 28px;
    height: 33px;
    display: block;
    margin-right: 34px;
    position: relative;
  }
  .mobile-menu__toggle.active .mobile-menu__close {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }
  .mobile-menu__toggle.active .mobile-menu__open {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
  }
  .mobile-menu__close {
    position: absolute;
    top: 0;
    right: 0;
    transform: scale(0);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .mobile-menu__open {
    position: absolute;
    top: 0;
    right: 0;
    transform: scale(1);
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .mobile-menu .main-nav {
    display: block;
  }
  .mobile-menu .main-nav__list {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .mobile-menu__bottom {
    display: none;
  }
}
@media (max-width: 700px) {
  .mobile-menu__toggle {
    margin-right: 29px;
  }
  .mobile-menu__wrapper {
    top: 124px;
  }
  .mobile-menu__bottom {
    display: block;
  }
  .mobile-menu .header-top__item:first-child {
    display: flex;
    margin-bottom: 8px;
  }
  .mobile-menu .header-top__item:nth-child(2) {
    display: flex;
    margin: 0;
    margin-bottom: 8px;
  }
  .mobile-menu .header-top__item:nth-child(3) {
    display: flex;
  }
  .mobile-menu .search {
    margin: 0 0 20px 0;
    width: 100%;
  }
}
.news-block {
  margin-bottom: 60px;
}
.news-block__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.news-block__top .section-title {
  margin-bottom: 0;
}
.news-block__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.news-block__item {
  width: calc(40% - 15px);
  position: relative;
}
.news-block__item--large {
  width: calc(60% - 15px);
}
.news-block__item--large .news-block__link--simple .news-block__item-content {
  padding: 40px 40px 26px;
}
.news-block__item--large .news-block__link--simple .news-block__item-content .news-block__item-price--simple {
  align-self: flex-start;
}
.news-block__item--large .news-block__link--simple .news-block__item-name {
  font-size: 28px;
  line-height: 48px;
  font-weight: 700;
  color: var(--color-black-main);
  text-align: center;
}
.news-block__item-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
}
.news-block__item-price {
  font-size: 24px;
  line-height: 40px;
  font-weight: 600;
  color: transparent;
  background: var(--color-white);
  background-clip: text;
  -webkit-background-clip: text;
  background-image: var(--color-accent-gradient);
}
.news-block__item-price--old {
  font-weight: 500;
  text-decoration: line-through;
  color: var(--color-black-main);
  background: none;
  background-clip: none;
  -webkit-background-clip: none;
}
.news-block__item-price--simple {
  font-size: 28px;
  line-height: 48px;
  font-weight: 600;
  padding: 8px 16px;
  color: var(--color-white);
  background-color: var(--color-violet-74);
  border-radius: 40px;
  margin-top: auto;
  align-self: flex-end;
}
.news-block__item-desc {
  color: var(--color-black-main);
  margin-top: auto;
  padding: 20px 16px;
  background-color: var(--color-bg-light-blue);
  border-radius: 14px;
  position: relative;
  max-width: 400px;
}
.news-block__item-desc::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translate(0, -50%);
  width: 37px;
  height: 43px;
  background: url(../images/icons/triangle-white.svg) no-repeat center center;
  background-size: contain;
  z-index: 0;
}
.news-block__link {
  display: block;
  height: 614px;
  box-shadow: 0 0 8px transparent;
  transition: box-shadow 0.3s ease;
  border-radius: 20px;
}
.news-block__link:hover {
  box-shadow: 0 0 8px var(--color-shadow-product);
}
.news-block__link img {
  border-radius: 20px;
  object-fit: cover;
  height: inherit;
}
.news-block__link--full .news-block__item-content {
  padding: 50px 35px;
  align-items: flex-start;
}
.news-block__link--full .news-block__item-name {
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
  color: var(--color-black-main);
  margin-bottom: 28px;
  max-width: 300px;
  width: 100%;
}
.news-block__link--simple .news-block__item-content {
  padding: 40px 40px 26px;
}
.news-block__link--simple .news-block__item-name {
  font-size: 28px;
  line-height: 48px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}
.news-block__link--simple .news-block__item-price {
  font-size: 24px;
  line-height: 40px;
  font-weight: 600;
  color: transparent;
  background: var(--color-white);
  background-clip: text;
  -webkit-background-clip: text;
  background-image: var(--color-accent-gradient);
  margin-left: auto;
}
.news-block__link--simple .news-block__item-price--old {
  margin-top: auto;
  font-weight: 500;
  text-decoration: line-through;
  color: var(--color-black-main);
  background: none;
  background-clip: none;
  -webkit-background-clip: none;
  margin-left: auto;
}
.news-block__all--mobile {
  display: none;
}
@media (max-width: 1000px) {
  .news-block {
    margin-bottom: 40px;
  }
  .news-block__list {
    gap: 20px;
  }
  .news-block__item {
    width: 100%;
  }
  .news-block__item--large {
    width: 100%;
  }
  .news-block__item--large .news-block__link--simple .news-block__item-content {
    padding: 34px 28px 46px;
  }
  .news-block__item-desc {
    padding: 12px 16px;
  }
  .news-block__link {
    height: auto;
  }
  .news-block__link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .news-block__link--full {
    height: 430px;
  }
  .news-block__link--full .news-block__item-content {
    padding: 34px 28px;
    align-items: flex-start;
  }
  .news-block__link--simple {
    height: 537px;
  }
  .news-block__link--simple .news-block__item-content {
    padding: 28px 40px 26px;
  }
}
@media (max-width: 700px) {
  .news-block__top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
  .news-block__all {
    display: none;
  }
  .news-block__all--mobile {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .news-block__list {
    gap: 18px;
    margin-bottom: 20px;
  }
  .news-block__item--large .news-block__link--simple .news-block__item-content {
    padding: 16px;
  }
  .news-block__item-desc {
    font-size: 8px;
    padding: 8px;
    line-height: normal;
    max-width: 150px;
  }
  .news-block__item-desc::before {
    right: -15px;
    width: 26px;
    height: 30px;
  }
  .news-block__item-price {
    font-size: 20px;
    line-height: 32px;
  }
  .news-block__item-price--old {
    font-size: 18px;
    line-height: 26px;
  }
  .news-block__item-price--simple {
    font-size: 22px;
    line-height: 30px;
  }
  .news-block__link--full {
    height: 280px;
  }
  .news-block__link--full .news-block__item-content {
    padding: 24px 16px;
  }
  .news-block__link--full .news-block__item-name {
    font-size: 22px;
    line-height: 30px;
    max-width: 220px;
    margin-bottom: 14px;
  }
  .news-block__link--simple {
    height: 250px;
  }
  .news-block__link--simple .news-block__item-content {
    padding: 16px;
  }
  .news-block__link--simple .news-block__item-name {
    font-size: 22px;
    line-height: 30px;
    text-align: left;
  }
}
.popular-cates {
  padding: 40px 0;
  margin-bottom: 20px;
}
.popular-cates .slider__top {
  position: relative;
}
.popular-cates .slider__nav {
  width: fit-content;
  gap: 12px;
  top: 0;
  right: 0;
  left: unset;
}
.popular-cates .slider__wrapper {
  padding: 0;
}
.popular-cates__link {
  padding: 33px;
  color: var(--color-black-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  border-radius: 20px;
  background-color: var(--color-bg-light-blue);
  transition: background-color 0.3s ease;
}
.popular-cates__link:hover {
  background-color: var(--color-bg-blue);
}
.popular-cates__title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}
@media (max-width: 1000px) {
  .popular-cates {
    margin-bottom: 0;
  }
  .popular-cates .slider__nav {
    transform: translateX(0);
  }
  .popular-cates__link {
    padding: 33px 31px;
  }
}
@media (max-width: 800px) {
  .popular-cates {
    padding: 30px 0;
  }
  .popular-cates .slider__nav {
    display: none;
  }
  .popular-cates__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .popular-cates__item {
    width: 100%;
  }
  .popular-cates__link {
    padding: 19px;
  }
}
.reviews {
  padding: 40px 0;
  background-color: var(--color-bg-blue);
}
.reviews__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.reviews__top .section-title {
  font-size: 28px;
  line-height: 48px;
  margin-bottom: 0;
}
@media (max-width: 1350px) {
  .reviews {
    padding: 30px 0;
  }
  .reviews-slider__wrapper {
    padding: 6px;
  }
}
@media (max-width: 700px) {
  .reviews {
    padding: 30px 0;
  }
  .reviews-slider__wrapper {
    padding: 6px;
  }
  .reviews__top {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
  }
  .reviews__top .section-title {
    font-size: 20px;
    margin-bottom: 22px;
    text-align: center;
    margin-bottom: 0;
  }
  .reviews__slider.slider {
    margin-bottom: 0;
  }
}
.search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 22px;
  border: 1px solid var(--color-grey-darkness);
  border-radius: 40px;
  width: 305px;
}
.search__input {
  border: none;
  background-color: transparent;
}
@media (max-width: 1450px) {
  .search {
    width: 200px;
  }
}
@media (max-width: 1200px) {
  .search {
    width: 230px;
    margin-left: auto;
  }
}
.slider {
  position: relative;
  margin-bottom: 50px;
}
.slider__wrapper {
  overflow: hidden;
  padding: 12px;
}
.slider__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.slider__top .section-title {
  margin-bottom: 0;
}
.slider__nav {
  position: absolute;
  width: calc(100% + 80px);
  top: calc(50% + 56px);
  left: -40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.slider__nav--reviews {
  top: 0;
  left: unset;
  right: 0;
  width: auto;
  gap: 14px;
}
@media (max-width: 1000px) {
  .slider {
    margin-bottom: 80px;
  }
  .slider__top {
    margin-bottom: 30px;
  }
  .slider__nav {
    width: fit-content;
    gap: 12px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .slider__nav--reviews {
    gap: 12px;
    top: 0;
    left: unset;
    right: 0;
    width: auto;
    transform: translateX(0);
  }
}
@media (max-width: 700px) {
  .slider__top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
  .slider__nav--reviews {
    position: relative;
    top: unset;
    right: unset;
    width: fit-content;
  }
}
.socials {
  display: flex;
  gap: 20px;
}
.socials__link svg path {
  fill: var(--color-black-main);
  transition: fill 0.3s ease;
}
.socials__link:hover svg path {
  fill: var(--color-violet);
}
.user-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.user-nav__item {
  display: flex;
  cursor: pointer;
  position: relative;
}
.user-nav__item svg path {
  stroke: var(--color-black-main);
  transition: stroke 0.3s ease;
}
.user-nav__item:hover svg path {
  stroke: var(--color-violet);
}
.user-nav__favorites-counter {
  position: absolute;
  top: 0;
  right: -1px;
  background-color: var(--color-violet);
  color: var(--color-white);
  font-size: 8px;
  line-height: normal;
  font-weight: 500;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.user-nav__favorites-counter.active {
  opacity: 1;
}
.user-nav__cart-counter {
  position: absolute;
  top: 0;
  right: -1px;
  background-color: var(--color-violet);
  color: var(--color-white);
  font-size: 8px;
  line-height: normal;
  font-weight: 500;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.user-nav__cart-counter.active {
  opacity: 1;
}
@media (max-width: 1450px) {
  .user-nav {
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .user-nav {
    margin-left: 28px;
  }
}
@media (max-width: 700px) {
  .user-nav {
    margin-left: auto;
    gap: 12px;
  }
  .user-nav__item svg {
    width: 30px;
    height: 30px;
  }
}
.main-nav__list {
  display: flex;
  align-items: center;
  gap: 56px;
}
.main-nav__item {
  position: relative;
}
.main-nav__link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--color-black-main);
  transition: color 0.3s ease;
}
.main-nav__link svg {
  transform: rotate(0);
  transition: transform 0.3s ease;
}
.main-nav__link:hover {
  color: var(--color-violet);
}
.main-nav__link:hover svg {
  transform: rotate(180deg);
}
.main-nav__sublist {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 37px;
  background-color: var(--color-white);
  border-radius: 10px;
  width: 220px;
  padding: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.main-nav__sublist.active {
  opacity: 1;
  pointer-events: auto;
}
.main-nav__subitem:not(:last-child) {
  margin-bottom: 12px;
}
.main-nav__sublink {
  color: var(--color-black-main);
  transition: color 0.3s ease;
}
.main-nav__sublink:hover {
  color: var(--color-violet);
}
@media (max-width: 1650px) {
  .main-nav__list {
    gap: 30px;
  }
}
@media (max-width: 1450px) {
  .main-nav__list {
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .main-nav {
    display: none;
  }
  .main-nav__link {
    display: block;
    padding-bottom: 16px;
  }
  .main-nav__link.button {
    width: 100%;
    justify-content: center;
  }
  .main-nav__sublist {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
    padding: 0;
    position: relative;
    height: 0;
  }
  .main-nav__sublist.active {
    height: auto;
  }
  .main-nav__subitem {
    margin-bottom: 16px;
    text-align: center;
  }
  .main-nav__subitem:not(:last-child) {
    margin-bottom: 16px;
  }
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 20px;
  background-color: var(--color-white);
  box-shadow: 0 0 6px var(--color-shadow-product);
  border: 1px solid transparent;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  border: 1px solid var(--color-violet);
  box-shadow: none;
}
.product-card__image {
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}
.product-card__image img {
  width: 282px;
  height: 338px;
  object-fit: cover;
}
.product-card__stickers {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-card__cate {
  color: var(--color-grey-darkness);
  margin-bottom: 10px;
}
.product-card__name {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: var(--color-black-main);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card__price {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 24px;
}
.product-card__price-old {
  font-size: 16px;
  line-height: 22px;
  color: var(--color-grey-darkness);
  text-decoration: line-through;
}
.product-card__price-new {
  font-size: 18px;
  line-height: normal;
  font-weight: 700;
  color: var(--color-violet);
  position: relative;
  width: fit-content;
}
.product-card__discount {
  position: absolute;
  bottom: 0;
  left: calc(100% + 20px);
  width: 75px;
  background: url(../images/icons/discount-sticker.svg) no-repeat center center;
  color: var(--color-black-main);
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  border-radius: 4px;
  padding: 6px 8px;
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  align-items: center;
}
.product-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.product-card__bottom .counter-item {
  padding-bottom: 10px;
}
.product-card__add {
  z-index: 1;
  padding: 14px 25px;
}
.product-card__wish {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  background-color: var(--color-white);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 4px var(--color-shadow-wish);
}
.product-card__wish svg path {
  stroke: var(--color-grey-darkness);
  transition: stroke 0.3s ease;
}
.product-card__wish:hover svg path {
  stroke: var(--color-violet);
}
.product-card__wish.active svg {
  animation: icon-animation 0.3s ease;
}
.product-card__wish.active svg path {
  stroke: var(--color-violet);
}
@media (max-width: 700px) {
  .product-card {
    padding: 16px;
  }
  .product-card__image img {
    height: 270px;
  }
  .product-card__add {
    padding: 12px 20px;
    width: 100%;
    justify-content: center;
  }
  .product-card__bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
@keyframes icon-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.sticker {
  border-radius: 40px;
  padding: 6px 12px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}
.sticker--hit {
  background-color: var(--color-green);
}
.sticker--new {
  background-color: var(--color-violet);
}
.sticker img {
  width: 16px;
  height: 16px;
}
.counter-item {
  display: flex;
  align-items: center;
}
.counter-item__button {
  width: 24px;
  height: 24px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 4px var(--color-shadow-button);
}
.counter-item__button svg path {
  stroke: var(--color-grey-darkness);
  transition: stroke 0.3s ease;
}
.counter-item__button:hover svg path {
  stroke: var(--color-violet);
}
.counter-item__input {
  width: 34px;
  border: none;
  background-color: transparent;
  text-align: center;
  font-weight: 500;
}
.review-card {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 4px var(--color-shadow-button);
}
.review-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.review-card__top img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}
.review-card__top-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.review-card__name {
  font-weight: 700;
}
.review-card__city {
  color: var(--color-grey-darkness);
}
.review-card__text {
  color: var(--color-black);
  margin-bottom: 20px;
}
.review-card__link {
  color: var(--color-violet);
}
.footer-nav {
  width: 50%;
}
.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-nav__item {
  width: calc(50% - 6px);
}
.footer-nav__link {
  color: var(--color-grey-darkness);
  transition: color 0.3s ease;
}
.footer-nav__link:hover {
  color: var(--color-violet);
}
@media (max-width: 1000px) {
  .footer-nav {
    width: 30%;
  }
}
@media (max-width: 700px) {
  .footer-nav {
    width: 100%;
  }
  .footer-nav__list {
    gap: 18px;
  }
  .footer-nav__item {
    width: 100%;
    text-align: center;
  }
}
.cart-modal {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black-20);
  backdrop-filter: blur(2px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.cart-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cart-modal__content {
  background-color: var(--color-white);
  width: 1680px;
  margin: 0 60px;
  height: auto;
  box-shadow: 0 4px 14px var(--color-shadow-button);
  border-radius: 20px;
  overflow: hidden;
}
.cart-modal__top {
  padding: 36px 40px;
  background-color: var(--color-grey-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-modal__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 40px;
  justify-content: space-between;
}
.cart-modal__row--header .cart-modal__row-title--quantity {
  margin-left: auto;
  width: 23%;
}
.cart-modal__row--header .cart-modal__row-title--price {
  width: 21%;
}
@media (max-width: 1600px) {
  .cart-modal__row--header .cart-modal__row-title--price {
    width: 18%;
  }
}
@media (max-width: 1300px) {
  .cart-modal__row--header .cart-modal__row-title--price {
    width: 16%;
  }
}
@media (max-width: 1200px) {
  .cart-modal__row--header .cart-modal__row-title--price {
    width: 12%;
  }
}
.cart-modal__row--header .cart-modal__row-title--clear-all {
  width: 136px;
}
.cart-modal__row--header .cart-modal__row-title--total {
  width: 40%;
}
.cart-modal__row--bottom {
  padding: 40px;
  align-items: flex-end;
}
.cart-modal__row--bottom .cart-modal__close {
  padding: 14px 24px;
}
.cart-modal__row-title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: var(--color-grey-darkness);
}
.cart-modal__row-title--total {
  color: var(--color-black-main);
}
.cart-modal__row-title--clear-all {
  color: var(--color-violet);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  transition: color 0.3s ease-out;
}
.cart-modal__row-title--clear-all:hover {
  color: var(--color-grey-darkness);
}
.cart-modal__title {
  font-size: 34px;
  line-height: normal;
  font-weight: 600;
}
.cart-modal__total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.cart-modal__total-amount {
  font-size: 28px;
  line-height: 48px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cart-modal__list {
  height: 500px;
  overflow-y: auto;
  margin: 0 40px;
  border-top: 1px solid var(--color-grey-light);
}
.cart-modal__list::-webkit-scrollbar {
  width: 6px;
}
.cart-modal__list::-webkit-scrollbar-thumb {
  background-color: var(--color-violet);
  border-radius: 4px;
}
.cart-modal__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.cart-modal__item {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-grey-light);
}
.cart-modal__item-link {
  width: 40%;
  display: flex;
  align-items: center;
  gap: 30px;
}
.cart-modal__item-link img {
  width: 126px;
  height: 126px;
  object-fit: cover;
  border-radius: 4px;
}
.cart-modal__item-title {
  font-size: 20px;
  line-height: normal;
  font-weight: 600;
  color: var(--color-black-main);
}
.cart-modal__item .counter-item {
  width: 20%;
}
.cart-modal__item-price {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cart-modal__item-price--active {
  font-size: 28px;
  line-height: 48px;
  font-weight: 700;
}
.cart-modal__item-price--old {
  font-size: 20px;
  line-height: normal;
  font-weight: 700;
  color: var(--color-grey-darkness);
  text-decoration: line-through;
}
.cart-modal__checkout {
  padding: 14px 24px;
}
.cart-modal__close svg path {
  fill: var(--color-grey-darkness);
  transition: fill 0.3s ease-out;
}
.cart-modal__close:hover svg path {
  fill: var(--color-black-main);
}
.cart-modal__clear {
  width: 5%;
}
.cart-modal__clear svg path {
  fill: var(--color-grey-darkness);
  transition: fill 0.3s ease-out;
}
.cart-modal__clear:hover svg path {
  fill: var(--color-black-main);
}
.cart-modal__empty {
  position: relative;
  padding: 230px 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1000px) {
  .cart-modal__content {
    width: calc(100% - 40px);
    margin: 0 20px;
    overflow-y: auto;
  }
  .cart-modal__content::-webkit-scrollbar {
    width: 6px;
  }
  .cart-modal__content::-webkit-scrollbar-thumb {
    background-color: var(--color-violet);
    border-radius: 4px;
  }
  .cart-modal__content::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .cart-modal__top {
    padding: 27px 20px;
  }
  .cart-modal__row {
    padding: 26px 20px;
  }
  .cart-modal__row--header .cart-modal__row-title--quantity {
    width: 18%;
  }
  .cart-modal__row--header .cart-modal__row-title--price {
    width: 14%;
  }
  .cart-modal__row--header .cart-modal__row-title--clear-all {
    width: 140px;
  }
  .cart-modal__row--bottom {
    padding: 26px 20px;
  }
  .cart-modal__row-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
  }
  .cart-modal__row-title--clear-all {
    font-size: 14px;
    line-height: 20px;
  }
  .cart-modal__title {
    font-size: 22px;
  }
  .cart-modal__list {
    margin: 0 20px;
    padding-top: 20px;
  }
  .cart-modal__item-link {
    gap: 16px;
  }
  .cart-modal__item-link img {
    width: 190px;
    height: 90px;
  }
  .cart-modal__item-title {
    font-size: 16px;
    line-height: 24px;
  }
  .cart-modal__item .counter-item {
    width: 15%;
  }
  .cart-modal__item-price {
    width: 20%;
  }
  .cart-modal__item-price--active {
    font-size: 20px;
    line-height: 30px;
  }
  .cart-modal__item-price--old {
    font-size: 16px;
  }
  .cart-modal__clear {
    width: 5%;
  }
  .cart-modal__clear svg path {
    fill: var(--color-grey-darkness);
    transition: fill 0.3s ease-out;
  }
  .cart-modal__clear:hover svg path {
    fill: var(--color-black-main);
  }
  .cart-modal__empty {
    position: relative;
    padding: 230px 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
@media (max-width: 1000px) and (max-width: 850px) {
  .cart-modal__row--header .cart-modal__row-title--price {
    width: 10%;
  }
}
@media (max-width: 1000px) and (max-width: 780px) {
  .cart-modal__row--header .cart-modal__row-title--price {
    width: 8%;
  }
}
@media (max-width: 700px) {
  .cart-modal {
    align-items: flex-end;
  }
  .cart-modal__content {
    margin-top: 30px;
    width: 100%;
    max-height: 85vh;
    height: auto;
    padding-bottom: 30px;
    margin: 0;
    overflow-y: auto;
    border-radius: 20px 20px 0 0;
  }
  .cart-modal__top {
    padding: 20px;
  }
  .cart-modal__row {
    padding: 20px;
  }
  .cart-modal__row--header .cart-modal__row-title--quantity {
    display: none;
  }
  .cart-modal__row--header .cart-modal__row-title--price {
    display: none;
  }
  .cart-modal__row--header .cart-modal__row-title--clear-all {
    width: auto;
  }
  .cart-modal__row--header .cart-modal__row-title--total {
    width: auto;
  }
  .cart-modal__row--bottom {
    padding: 20px;
    flex-direction: column-reverse;
  }
  .cart-modal__row--bottom .cart-modal__close {
    width: 100%;
    justify-content: center;
  }
  .cart-modal__list {
    height: 270px;
    margin: 0 20px;
    padding-top: 20px;
  }
  .cart-modal__item {
    flex-wrap: wrap;
    gap: 6px;
  }
  .cart-modal__item-link {
    order: -2;
    width: 60%;
    gap: 12px;
  }
  .cart-modal__item-link img {
    width: 50px;
    height: 50px;
  }
  .cart-modal__item-title {
    font-size: 12px;
    line-height: 18px;
  }
  .cart-modal__item .counter-item {
    width: 30%;
    justify-content: flex-end;
    order: 1;
  }
  .cart-modal__item-price {
    width: 40%;
    margin-left: 55px;
    order: 0;
  }
  .cart-modal__item-price--active {
    font-size: 14px;
    line-height: 22px;
  }
  .cart-modal__item-price--old {
    font-size: 10px;
  }
  .cart-modal__clear {
    width: 30%;
    order: -1;
    justify-content: flex-end;
  }
  .cart-modal__total {
    width: 100%;
  }
  .cart-modal__total-amount {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 14px;
  }
  .cart-modal__empty {
    position: relative;
    padding: 230px 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .cart-modal__checkout {
    width: 100%;
    justify-content: center;
  }
}
.custom-checkbox {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url('../images/icons/checkbox.svg') no-repeat center;
  position: relative;
  margin-right: 25px;
}
.custom-checkbox::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: url('../images/icons/checkbox-marker.svg') no-repeat center;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.specials-slider__link--mobile {
  display: none;
}
@media (max-width: 700px) {
  .specials-slider {
    margin-bottom: 30px;
  }
  .specials-slider__link {
    display: none;
  }
  .specials-slider__link--mobile {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .specials-slider .slider__nav {
    display: none;
  }
  .specials-slider .swiper-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .specials-slider .swiper-slide:nth-child(n+4) {
    display: none;
  }
  .specials-slider .slider__wrapper {
    overflow: visible;
    padding: 0;
    margin-bottom: 20px;
  }
}
.popular-slider__link--mobile {
  display: none;
}
@media (max-width: 700px) {
  .popular-slider {
    margin-bottom: 30px;
  }
  .popular-slider__link {
    display: none;
  }
  .popular-slider__link--mobile {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .popular-slider .slider__nav {
    display: none;
  }
  .popular-slider .swiper-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .popular-slider .swiper-slide:nth-child(n+4) {
    display: none;
  }
  .popular-slider .slider__wrapper {
    overflow: visible;
    padding: 0;
    margin-bottom: 20px;
  }
}
