/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none; }

*,
*::before,
*::after {
  box-sizing: border-box; }

/* Links */
a,
a:link,
a:visited {
  text-decoration: none; }

a:hover {
  text-decoration: none; }

/* Common */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit; }

ul,
ul li {
  list-style: none; }

img {
  vertical-align: top; }

img,
svg {
  max-width: 100%;
  height: auto; }

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input::-ms-clear {
  display: none; }

button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  cursor: pointer; }

input:focus,
input:active,
button:focus,
button:active {
  outline: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.container {
  max-width: 1390px;
  width: 100%;
  margin: 0 auto; }

body {
  overflow-x: hidden;
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #2b2929;
  font-size: 16px; }

.main {
  overflow-x: hidden; }

.btn-pattern {
  display: inline-flex;
  align-items: center; }
  .btn-pattern span {
    padding: 15px 22px;
    background: #fff;
    border-radius: 80px;
    font-size: 18px;
    color: #2b2929;
    display: inline-block;
    margin: 0 -10px;
    position: relative;
    z-index: 2;
    transition: 300ms ease all; }
  .btn-pattern svg path {
    transition: 300ms ease all; }
  .btn-pattern:hover span {
    background: #ff9b24;
    color: #fff; }
  .btn-pattern:hover svg path {
    fill-opacity: 1; }

.header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 20px 0; }
  .header__burger {
    display: none; }
  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header__left {
    display: flex;
    align-items: center;
    gap: 22px; }
  .header__lang {
    cursor: pointer;
    position: relative;
    border-radius: 20px; }
    .header__lang-item {
      display: flex;
      align-items: center;
      padding: 4px 16px 4px 4px;
      border-radius: 20px;
      gap: 8px;
      transition: 300ms ease all; }
      .header__lang-item span {
        color: #fff; }
      .header__lang-item--active {
        background: #fff; }
        .header__lang-item--active span {
          color: #2b2929; }
    .header__lang-items {
      opacity: 0;
      z-index: -1;
      transition: 300ms ease all;
      position: absolute;
      border-radius: 0 0 20px 20px;
      top: 17px;
      width: 100%;
      padding: 30px 0 0; }
      .header__lang-items--show {
        background: #fff;
        opacity: 1;
        z-index: 2; }
        .header__lang-items--show .header__lang-item span {
          color: #2b2929; }
        .header__lang-items--show .header__lang-item:hover {
          background: #eaeef5; }
    .header__lang-selected {
      position: relative;
      z-index: 22; }
    .header__lang:hover {
      background: #fff; }
      .header__lang:hover .header__lang-item span {
        color: #2b2929; }
  .header__logo {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    transition: 200ms ease all; }
    .header__logo:hover {
      color: #ff8d25; }
  .header__right {
    display: flex;
    align-items: center;
    gap: 40px; }
  .header__nav {
    display: flex;
    align-items: center;
    gap: 38px; }
    .header__nav-item {
      color: #fff;
      font-weight: 400;
      font-size: 17px;
      padding-bottom: 5px;
      border-bottom: 1px solid transparent;
      transition: 300ms ease all; }
      .header__nav-item:hover {
        border-color: #fff; }
  .header__profile {
    display: flex;
    align-items: center;
    gap: 20px; }
  .header__login {
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 600px;
    color: #fff;
    font-size: 16px;
    gap: 10px;
    padding: 12px 18px 12px 16px;
    transition: 300ms ease all; }
    .header__login svg path {
      transition: 300ms ease all; }
    .header__login:hover {
      background: #fff;
      color: #2b2929; }
      .header__login:hover svg path {
        stroke: #2b2929; }
  .header__cart {
    width: 41px;
    min-width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #fff;
    position: relative;
    transition: 300ms ease all; }
    .header__cart-icon {
      display: block;
      width: 20px;
      height: 20px;
      background: url("../img/cart-b.svg") no-repeat;
      position: relative;
      left: -1px;
      transition: 200ms ease all; }
    .header__cart-counter {
      position: absolute;
      right: -5px;
      top: -4px;
      width: 19px;
      height: 19px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 100%;
      background: #abd835;
      color: #2b2929;
      font-size: 10px; }
    .header__cart:hover {
      background: #5c55b2; }
      .header__cart:hover .header__cart-icon {
        background: url("../img/cart-w.svg") no-repeat; }
  .header__burger {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 41px;
    min-width: 41px;
    height: 41px;
    background: #fff;
    border-radius: 50%; }
    .header__burger-container {
      align-items: center;
      flex-direction: column;
      justify-content: space-between;
      display: flex;
      width: 13px;
      height: 14px; }
      .header__burger-container span {
        display: inline-block;
        width: 13px;
        height: 2px;
        border-radius: 4px;
        background: #2b2929;
        transition: 200ms ease all; }
  .header--main {
    background: url("../img/header-bg.jpg") no-repeat;
    background-position: center;
    background-size: cover; }
    .header--main .header__burger {
      border: 1px solid #fff;
      background: transparent; }
      .header--main .header__burger .header__burger-container span {
        background: #fff; }
    .header--main .header__nav {
      display: none; }
    .header--main .hero__bottom {
      flex: 1; }
    .header--main .hero__search-field {
      padding-top: 10px;
      padding-bottom: 10px;
      padding-right: 90px; }
    .header--main .hero__search-icon {
      top: 10px; }
    .header--main .hero__catalog {
      font-size: 16px;
      gap: 16px;
      padding: 11px 15px; }
    .header--main .hero__search-submit {
      font-size: 16px;
      padding: 6.5px 19.5px;
      top: 4px; }
    .header--main .header__right {
      gap: 20px;
      flex: 1; }
    .header--main .header__container {
      gap: 20px; }

.hero {
  min-height: 730px;
  height: 730px;
  background: url("../img/hero.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 147px;
  padding-bottom: 22px;
  display: flex; }
  .hero__title {
    padding-top: 50px;
    font-weight: 400;
    font-size: 50px;
    color: #fff; }
  .hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    flex: 1; }
  .hero__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px; }
  .hero__search {
    flex: 1;
    position: relative; }
    .hero__search-field {
      border-radius: 80px;
      width: 100%;
      background: #fff;
      padding: 19px 140px 19px 50px;
      font-weight: 400;
      font-size: 17px;
      color: #2b2929; }
      .hero__search-field::placeholder {
        font-weight: 400;
        font-size: 17px;
        color: #2b2929; }
    .hero__search-icon {
      position: absolute;
      left: 19px;
      top: 19px;
      z-index: 2; }
    .hero__search-submit {
      position: absolute;
      background: #ff9b24;
      z-index: 2;
      font-size: 17px;
      color: #fff;
      border-radius: 80px;
      padding: 13px 33px;
      right: 4px;
      top: 6px; }
  .hero__catalog {
    background: #5c55b2;
    border-radius: 80px;
    font-size: 17px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 19px 22px 19px 25px; }

.main-nav {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding-top: 40px;
  padding-bottom: 40px; }
  .main-nav__item {
    transition: 300ms ease all;
    background: #eaeff5;
    border-radius: 80px;
    padding: 12px 22px;
    color: #2b2929;
    background-position: center;
    background-size: cover; }
    .main-nav__item--active {
      background: url("../img/btn-cover.png") no-repeat;
      color: #fff; }
    .main-nav__item:hover {
      background: url("../img/btn-cover.png") no-repeat;
      color: #fff; }

.slider-arrows .slider-arrow {
  position: absolute;
  top: calc(50% - 22.5px);
  z-index: 2; }
  .slider-arrows .slider-arrow svg path {
    transition: 200ms ease all; }
  .slider-arrows .slider-arrow:hover svg path {
    stroke: #ff9b24; }
.slider-arrows__left {
  left: -60px; }
.slider-arrows__right {
  right: -60px; }

.main-banner {
  position: relative; }
  .main-banner__slider {
    overflow: hidden; }
  .main-banner__slide {
    width: 100%;
    height: 472px;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: flex-end; }
    .main-banner__slide-image {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      left: 0;
      top: 0;
      border-radius: 20px; }
    .main-banner__slide-group {
      position: relative;
      z-index: 2;
      color: #fff;
      padding: 0 52px 66px 52px; }
    .main-banner__slide-title {
      font-weight: 300;
      font-size: 60px;
      line-height: 100%;
      margin-bottom: 26px; }
    .main-banner__slide-desc {
      font-size: 16px;
      line-height: 150%;
      max-width: 537px;
      margin-bottom: 38px; }

.title {
  font-weight: 300;
  font-size: 50px; }

.main-categories {
  padding-top: 68px; }
  .main-categories__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    padding-bottom: 28px; }
  .main-categories__view {
    display: flex;
    align-items: center;
    gap: 13px; }
  .main-categories__type svg path {
    transition: 200ms ease all; }
  .main-categories__type--active svg path {
    fill: #5d55b2; }
  .main-categories__type:hover svg path {
    fill: #5d55b2; }

.main-categories__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px;
  padding-bottom: 35px; }

.category-item {
  border-radius: 20px;
  background: #eaeff5;
  position: relative;
  padding: 90px 17px 17px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center; }
  .category-item__pattern-img {
    transition: 300ms ease all;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0; }
    .category-item__pattern-img--active {
      opacity: 0;
      z-index: 2; }
  .category-item__group {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px; }
  .category-item__title {
    font-size: 20px;
    text-align: center;
    color: #2b2929; }
  .category-item__count {
    font-size: 14px;
    text-align: center;
    color: #8c99b0;
    transition: 200ms ease all; }
  .category-item__product {
    margin: 0 auto;
    max-width: 100%;
    display: block;
    max-height: 210px; }
  .category-item:hover .category-item__pattern-img--active {
    opacity: 1; }
  .category-item:hover .category-item__count {
    color: #5d55b2; }

.show-all {
  text-align: center; }
  .show-all__btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 17px;
    color: #2b2929;
    transition: 300ms ease all; }
    .show-all__btn svg path {
      transition: 300ms ease all; }
    .show-all__btn:hover {
      color: #ff8d25; }
      .show-all__btn:hover svg path {
        fill: #ff8d25; }

.category-slider {
  padding-top: 80px;
  overflow: hidden;
  position: relative; }
  .category-slider::after {
    content: "";
    width: 17.204%;
    height: 90.5%;
    position: absolute;
    right: 0;
    top: 10%;
    background: url("../img/white-shadow.svg") no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2; }
  .category-slider__item {
    position: relative; }
    .category-slider__item-image {
      width: 100%; }
    .category-slider__item-text {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 2;
      left: 0;
      top: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 70px 30px;
      align-items: flex-start; }
    .category-slider__item-title {
      font-weight: 300;
      font-size: 35px;
      line-height: 171%;
      color: #fff;
      margin-bottom: 10px; }
    .category-slider__item-desc {
      font-size: 16px;
      line-height: 137%;
      color: #fff;
      max-width: 235px; }
    .category-slider__item--black .category-slider__item-title {
      color: #2b2929; }
    .category-slider__item--black .category-slider__item-desc {
      color: #2b2929; }

.brands {
  padding-top: 68px; }
  .brands .title {
    margin-bottom: 15px; }
  .brands__container {
    position: relative; }
  .brands__slider {
    overflow: hidden; }
    .brands__slider-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px; }
      .brands__slider-item img {
        height: 100px;
        object-fit: contain; }

.banner {
  margin-top: 76px;
  min-height: 220px;
  width: 100%;
  position: relative;
  border-radius: 20px;
  color: #fff; }
  .banner__image {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px; }
  .banner__text {
    position: relative;
    z-index: 2;
    padding: 30px 40px; }
  .banner__title {
    font-weight: 300;
    font-size: 40px;
    line-height: 150%;
    margin-bottom: 10px; }
  .banner__desc {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 20px; }

.products-slider {
  padding-top: 70px; }
  .products-slider .title {
    padding-bottom: 20px; }
  .products-slider__container {
    position: relative;
    margin: 0 -10px; }
  .products-slider__inner, .products-slider__inner-catalog {
    overflow: hidden;
    padding: 0 10px; }
  .products-slider .slider-arrows .slider-arrow {
    top: calc(55% - 22.5px); }

.product-card {
  padding: 76px 10px 10px;
  background: url("../img/card-pattern.svg");
  transition: 300ms ease all; }
  .product-card:hover {
    background: url("../img/card-pattern-hover.svg"); }
  .product-card__holder {
    height: 143px;
    margin-bottom: 14px;
    position: relative; }
  .product-card__labels {
    position: absolute;
    height: 100%;
    right: -20px;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px; }
  .product-card__product-image {
    max-width: 100%;
    display: block;
    margin: 0 auto; }
  .product-card__info {
    padding: 0 10px; }
  .product-card__price {
    font-size: 25px; }
    .product-card__price span {
      font-size: 18px; }
  .product-card__old-price {
    font-size: 16px;
    text-decoration: line-through;
    color: #a5adc5;
    margin-bottom: 12px; }
  .product-card__brand {
    font-size: 16px;
    color: #5c55b2;
    margin-bottom: 12px; }
  .product-card__desc {
    font-size: 15px;
    margin-bottom: 12px; }
  .product-card__order {
    font-size: 12px;
    color: #838faf;
    margin-bottom: 14px; }
  .product-card__controls {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative; }
    .product-card__controls--added .product-card__added {
      opacity: 1;
      z-index: 2; }
  .product-card__counts {
    max-width: 31.18%;
    position: relative;
    display: flex;
    align-items: center; }
  .product-card__input {
    border-radius: 6px;
    width: 100%;
    background: #fff;
    padding: 12px 14px;
    color: #5c5c5c;
    text-align: center; }
  .product-card__count {
    position: absolute;
    font-size: 12px;
    color: #5c5c5c;
    transition: 200ms ease all; }
    .product-card__count:hover {
      color: #ff8d25; }
    .product-card__count--plus {
      right: 4px; }
    .product-card__count--minus {
      left: 4px; }
  .product-card__add {
    flex: 1;
    display: inline-flex;
    font-size: 14px;
    color: #fff;
    background: #5d55b2;
    border-radius: 6px;
    gap: 10px;
    align-items: center;
    padding: 13px 14px;
    transition: 300ms ease all; }
    .product-card__add span {
      display: inline-block;
      width: 17px;
      height: 17px;
      background: url("../img/card-cart-w.svg");
      transition: 300ms ease all; }
    .product-card__add:hover {
      background: #abd835;
      color: #2b2929; }
      .product-card__add:hover span {
        background: url("../img/card-cart-b.svg"); }
  .product-card__added {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    background: #abd835;
    border-radius: 6px;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    transition: 200ms ease all;
    opacity: 0;
    z-index: -1; }
    .product-card__added-icon {
      display: inline-block;
      background: url("../img/card-cart-b.svg");
      width: 17px;
      height: 17px; }

.seo-text {
  padding-top: 70px; }
  .seo-text .title {
    padding-bottom: 20px;
    border-bottom: 1px solid #c8d2dc;
    margin-bottom: 26px; }
  .seo-text p {
    font-size: 16px;
    line-height: 150%;
    text-align: justify;
    color: #2b2929;
    padding-bottom: 24px; }

.banner-spec {
  margin-top: 70px;
  border-radius: 20px;
  background: url("../img/banner-spec.png") no-repeat;
  background-position: center;
  background-size: cover;
  padding: 35px 56px 27px; }
  .banner-spec__title {
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 20px; }
  .banner-spec__desc {
    font-size: 16px;
    line-height: 150%;
    max-width: 675px;
    margin-bottom: 22px; }
  .banner-spec__scheme {
    display: flex;
    align-items: center;
    gap: 64px; }
    .banner-spec__scheme-info {
      max-width: 616px; }
    .banner-spec__scheme-text {
      display: flex;
      justify-content: space-between;
      font-size: 15px; }
      .banner-spec__scheme-text img {
        max-width: 100%; }
  .banner-spec .btn-pattern {
    position: relative;
    top: 8px; }

.footer {
  margin-top: 20px;
  border-bottom: 6px solid #5c55b2; }
  .footer__container {
    background: #e0e6ef;
    padding-bottom: 34px; }
  .footer__holder {
    position: relative; }
  .footer__pattern {
    padding-bottom: 424px;
    background: url("../img/footer-pattern.svg") no-repeat;
    background-position: center;
    background-size: cover; }
  .footer__nav {
    padding-top: 17px;
    padding-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: space-between;
    position: relative; }
    .footer__nav::before {
      content: "";
      width: 100%;
      height: 1px;
      background: #c2c9d9;
      position: absolute;
      top: 63px; }
    .footer__nav-group {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      gap: 15px; }
    .footer__nav-item {
      color: #2b2929;
      transition: 300ms ease all;
      max-width: 152px; }
      .footer__nav-item--title {
        font-size: 17px;
        max-width: 100%;
        margin-bottom: 52px; }
      .footer__nav-item:hover {
        color: #ff8d25; }
  .footer__payment {
    position: absolute;
    right: 0;
    top: 103px; }
    .footer__payment-title {
      font-size: 17px;
      margin-bottom: 20px; }
    .footer__payment-items {
      display: inline-flex;
      align-items: center;
      gap: 30px; }
  .footer__links {
    display: flex;
    align-items: flex-start;
    gap: 85px;
    padding-top: 45px; }
    .footer__links-item {
      text-decoration: underline !important;
      color: #2b2929;
      transition: 200ms ease all; }
      .footer__links-item:hover {
        color: #ff8d25; }
      .footer__links-item:first-child {
        text-decoration: none !important; }

@media (max-width: 1919px) {
  .container {
    max-width: 1156px; }

  .main-categories__grid {
    grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 1365px) {
  .container {
    max-width: 924px; }

  .header__nav {
    gap: 18px; }

  .header__right {
    gap: 18px; }

  .header__profile {
    gap: 18px; }

  .header__left {
    gap: 16px; }

  .header__logo span {
    display: block; }

  .main-banner.container {
    max-width: 100%; }
    .main-banner.container .slider-arrows svg path {
      stroke: #fff; }
    .main-banner.container .slider-arrows__left {
      left: 20px; }
    .main-banner.container .slider-arrows__right {
      right: 20px; }
    .main-banner.container .main-banner__slide-group {
      padding-left: 90px; }
    .main-banner.container .main-banner__slide-image {
      border-radius: 0; }

  .main-categories__grid {
    grid-template-columns: repeat(4, 1fr); }

  .category-slider::after {
    content: none; }

  .category-slider__items {
    overflow: hidden; }

  .brands__slider-item img {
    height: 50px; }

  .brands .slider-arrows__left {
    left: -10px; }
  .brands .slider-arrows__right {
    right: -10px; }

  .products-slider__container .slider-arrows__left {
    left: -20px; }
  .products-slider__container .slider-arrows__right {
    right: -20px; }

  .banner-spec {
    background: url(../img/banner-spec-2.png) no-repeat;
    background-position: center right;
    background-size: cover; }

  .footer__links {
    gap: 20px;
    justify-content: space-between; } }
.header__cart--mob {
  display: none; }

.hero__search__close {
  display: none; }

.hero__search-link {
  display: none; }

.main-banner__slide-image--mob {
  display: none; }

.main-categories__slider {
  display: none; }

.banner__image--mob {
  display: none; }

.banner-spec__desc .btn-pattern {
  display: none; }

.footer__mob-nav {
  display: none; }

.swiper-pagination {
  position: relative;
  margin-top: 35px; }
  .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 1;
    background: #eaeff5;
    margin: 0 11px; }
    .swiper-pagination .swiper-pagination-bullet-active {
      background: #ff8d25; }

@media (max-width: 999px) {
  .products-slider__inner {
    overflow: visible; }

  .products-slider {
    overflow: hidden; }

  .container {
    max-width: 600px; }

  .header__nav {
    display: none; }
  .header__cart {
    display: none; }
  .header__burger {
    display: inline-flex; }

  .hero__logo {
    max-width: 384px;
    margin: 0 auto;
    display: block; }

  .hero__title {
    padding-top: 100px; }

  .header__cart--mob {
    display: inline-flex; }

  .hero__bottom .hero__catalog {
    order: 2;
    flex: 1;
    justify-content: center;
    position: relative; }
    .hero__bottom .hero__catalog svg {
      position: absolute;
      left: 30px; }
  .hero__bottom .hero__search {
    order: 1;
    display: none; }
  .hero__bottom .header__cart--mob {
    order: 3;
    width: 52px;
    height: 52px; }

  .hero__search-link {
    display: inline-flex; }

  .hero__bottom--search .hero__search-link {
    display: none; }
  .hero__bottom--search .hero__search__close {
    display: inline-flex;
    width: 52px;
    min-width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center; }
  .hero__bottom--search .hero__catalog {
    display: none; }
  .hero__bottom--search .header__cart--mob {
    display: none; }
  .hero__bottom--search .hero__search {
    display: inline-flex; }

  .main-banner.container .main-banner__slide-group {
    padding: 0 0 80px;
    max-width: 480px;
    margin: 0 auto;
    text-align: center; }

  .main-banner__slide-title {
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 22px; }

  .main-banner__slide-desc {
    margin-bottom: 20px; }

  .main-banner__slide {
    height: 640px; }

  .main-banner__slide-image {
    display: none; }
    .main-banner__slide-image--mob {
      display: block; }

  .main-categories__grid {
    display: none; }

  .main-categories__slider {
    display: block; }

  .main-categories {
    overflow: hidden; }
    .main-categories .show-all {
      display: none; }
    .main-categories .category-item {
      height: auto; }

  .category-slider__items {
    overflow: visible; }

  .brands__slider {
    padding: 0 40px; }

  .banner {
    height: 440px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end; }
    .banner__text {
      padding: 0 18px 30px 44px; }
    .banner__image {
      display: none; }
      .banner__image--mob {
        display: block; }

  .products-slider__container .slider-arrows__left {
    display: none; }

  .products-slider__container .slider-arrows__right {
    display: none; }

  .banner-spec {
    background: url(../img/banner-spec-3.png) no-repeat;
    background-position: center right;
    background-size: cover;
    padding: 40px 40px 280px; }
    .banner-spec .btn-pattern {
      display: none; }
    .banner-spec__desc {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 18px; }
      .banner-spec__desc .btn-pattern {
        display: inline-flex; }
    .banner-spec__scheme {
      margin-top: 40px; }

  .footer__pattern {
    padding-bottom: 304px;
    background: url(../img/footer-pattern-2.svg) no-repeat;
    background-position: center;
    background-size: cover; }

  .footer__payment {
    position: static; }

  .footer__nav-item {
    display: none; }
    .footer__nav-item--title {
      display: inline-block;
      margin-bottom: 0; }

  .footer__nav {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
    padding-bottom: 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid #c2c9d9; }
    .footer__nav::before {
      content: none; }

  .footer__mob-nav {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px; }
    .footer__mob-nav-item {
      max-width: 160px;
      width: 100%;
      color: #5c5c5c; }
    .footer__mob-nav-group {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 15px; }

  .footer__links {
    flex-wrap: wrap; } }
@media (max-width: 639px) {
  .container {
    max-width: 440px; }

  .hero__title {
    font-size: 48px;
    text-align: center; }

  .header__left {
    gap: 10px; }

  .main-nav__item {
    padding: 12px; }

  .banner__text {
    padding-left: 28px; }

  .banner__title {
    font-size: 35px; }

  .banner-spec {
    padding-bottom: 355px; } }
@media (max-width: 479px) {
  .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }

  .header__logo {
    font-size: 14px; }

  .header__lang-icon {
    width: 18px;
    height: 18px; }

  .header__login {
    padding: 10px 12px 10px 10px;
    font-size: 12px; }

  .header__profile {
    gap: 10px; }

  .header__left {
    gap: 5px; }

  .header__lang-items {
    padding-top: 12px; }

  .hero__logo {
    max-width: 80%; }

  .hero {
    min-height: 520px;
    height: auto;
    padding-top: 110px; }

  .hero__title {
    font-size: 30px;
    padding-top: 60px; }

  .hero__bottom {
    gap: 10px; }

  .hero__bottom .hero__catalog svg {
    position: static;
    width: 18px; }

  .hero__catalog {
    font-size: 13px; }

  .hero__bottom--search {
    gap: 10px; }

  .hero__bottom--search .hero__search__close {
    width: 30px;
    min-width: 30px;
    height: 30px; }
    .hero__bottom--search .hero__search__close svg {
      width: 12px; }

  .hero__search-submit {
    font-size: 14px;
    padding: 6px 15px;
    border-radius: 30px;
    right: 3px;
    top: 3px; }

  .hero__search-field {
    padding: 10px 80px 10px 40px;
    font-size: 13px; }
    .hero__search-field::placeholder {
      font-size: 13px; }

  .hero__search-icon {
    width: 15px;
    left: 14px;
    top: 11px; }

  .main-nav {
    flex-wrap: wrap; }

  .main-banner.container .main-banner__slide-group {
    padding-bottom: 40px; }

  .main-banner.container .main-banner__slide-group {
    max-width: 80%; }

  .main-banner__slide {
    height: 600px; }

  .main-banner__slide-title {
    font-size: 38px; }

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

  .category-slider__item {
    height: 335px; }

  .brands__slider {
    padding: 0; }

  .brands .slider-arrows {
    display: none; }

  .product-card {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    transition: none; }
    .product-card:hover {
      background-repeat: no-repeat;
      background-size: cover;
      background-position: top; }

  .footer__pattern {
    background-position: right; }

  .banner {
    overflow: hidden;
    padding-left: 0;
    padding-right: 0; }

  .main-banner.container {
    padding-left: 0;
    padding-right: 0; }

  .banner-spec__title {
    font-size: 32px; } }
.arab .header__container {
  flex-direction: row-reverse; }
.arab .header__lang-item {
  flex-direction: row-reverse; }
.arab .header__right {
  flex-direction: row-reverse; }
.arab .hero__bottom {
  flex-direction: row-reverse; }
.arab .hero__search-field {
  text-align: right; }
.arab .hero__search-field {
  padding: 19px 50px 19px 140px; }
.arab .hero__search-submit {
  right: auto;
  left: 4px; }
.arab .hero__search-icon {
  left: auto;
  right: 19px; }
.arab .hero__catalog {
  flex-direction: row-reverse; }
.arab .main-nav {
  justify-content: flex-end; }
.arab .main-banner__slide {
  justify-content: flex-end; }
.arab .main-banner__slide-group {
  text-align: right; }
.arab .main-banner__slide-desc {
  margin: 0 0 38px auto; }
.arab .main-categories__header {
  flex-direction: row-reverse; }
.arab .category-slider__item-text {
  align-items: flex-end; }
.arab .title {
  text-align: right; }
.arab .banner__text {
  text-align: right; }
.arab .product-card__info {
  text-align: right; }
.arab .product-card__controls {
  flex-direction: row-reverse; }
.arab .seo-text p {
  text-align: right; }
.arab .banner-spec {
  text-align: right; }
.arab .banner-spec__scheme {
  flex-direction: row-reverse; }
.arab .banner-spec__desc {
  margin: 0 0 32px auto; }
.arab .footer__nav {
  flex-direction: row-reverse; }
.arab .footer__payment {
  right: auto;
  left: 0; }
.arab .footer__links {
  justify-content: flex-end; }
.arab .footer__payment-title {
  text-align: right; }
.arab .footer__payment-items {
  width: 100%;
  justify-content: flex-end; }
@media (max-width: 999px) {
  .arab .banner-spec__desc {
    align-items: flex-end; }
  .arab .footer__mob-nav {
    justify-content: flex-end; } }
@media (max-width: 479px) {
  .arab .hero__title {
    padding-top: 25px; }
  .arab .hero__search-field {
    padding: 10px 40px 10px 80px; } }

.catalog {
  margin-top: 100px; }
  .catalog .title {
    margin-bottom: 28px; }
  .catalog__grid {
    display: flex;
    align-items: flex-start; }
  .catalog__aside {
    max-width: 216px;
    min-width: 216px;
    width: 100%; }
  .catalog__wrapper {
    flex: 1;
    margin-left: 20px;
    max-width: calc(100% - 216px - 20px); }
  .catalog__category {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #c8d2dc; }
    .catalog__category:first-child {
      border-top: 1px solid #c8d2dc; }
    .catalog__category-img-holder {
      width: 40px;
      min-width: 40px;
      display: block;
      text-align: center; }
      .catalog__category-img-holder img {
        max-width: 100%;
        margin: 0 auto; }
    .catalog__category-title {
      font-size: 15px;
      color: #2b2929;
      transition: 200ms ease all; }
    .catalog__category:hover .catalog__category-title {
      color: #ff9b24; }
  .catalog__slider {
    overflow: hidden;
    position: relative; }
    .catalog__slider-item {
      width: 100% !important;
      border-radius: 10px;
      position: relative;
      padding-bottom: 43.328%; }
      .catalog__slider-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        position: absolute;
        left: 0;
        top: 0; }
    .catalog__slider .slider-arrows__left {
      left: 20px;
      z-index: 2; }
    .catalog__slider .slider-arrows__right {
      right: 20px;
      z-index: 2; }
    .catalog__slider .swiper-pagination {
      margin-top: 0;
      position: absolute;
      z-index: 2;
      bottom: 20px; }
  .catalog .category-slider::after {
    content: none; }

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px; }
  .breadcrumbs__item {
    font-size: 14px;
    color: #2b2929;
    transition: 200ms ease all;
    display: inline-flex;
    align-items: center;
    gap: 10px; }
    .breadcrumbs__item::after {
      content: url("../img/breadcrumbs-item.svg"); }
    .breadcrumbs__item:hover {
      color: #ff9b24; }
    .breadcrumbs__item--active {
      color: #ff9b24; }
      .breadcrumbs__item--active::after {
        content: none; }

.hero__bottom--spec {
  display: none; }

@media (max-width: 999px) {
  .catalog .title {
    font-size: 40px; }

  .catalog__grid {
    flex-direction: column; }

  .catalog__aside {
    min-width: 100%;
    width: 100%; }

  .catalog__wrapper {
    margin-left: 0;
    max-width: 100%;
    margin-top: 40px; }

  .catalog .category-slider {
    padding-top: 40px;
    overflow: visible; }
  .catalog .products-slider {
    overflow: visible; }
  .catalog .products-slider__inner-catalog {
    overflow: visible; }

  .header--main .header__right {
    justify-content: flex-end;
    flex: none;
    width: 50%; }
    .header--main .header__right .hero__bottom {
      display: none; }
  .header--main .hero__bottom--spec {
    display: flex;
    width: 100%;
    margin-top: 25px; }
  .header--main .header__container {
    flex-wrap: wrap;
    gap: 0; }
  .header--main .hero__catalog {
    padding-top: 16.5px;
    padding-bottom: 16.5px; }
  .header--main .header__left {
    width: 50%; }

  .catalog {
    margin-top: 200px; } }
.category {
  margin-top: 100px; }
  .category .title span {
    font-size: 18px;
    display: inline-block;
    margin-left: 20px; }
  .category__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 25px; }
  .category__group {
    display: flex;
    align-items: center;
    gap: 70px; }
    .category__group-mob {
      display: none; }
  .category__title {
    font-weight: 300;
    font-size: 30px; }
  .category__nav {
    display: flex;
    align-items: center;
    gap: 10px; }
    .category__nav-item {
      font-weight: 400;
      font-size: 15px;
      color: #2b2929;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border-radius: 80px;
      background: #eaeef5;
      padding: 11px 17px;
      transition: 300ms ease all; }
      .category__nav-item svg {
        min-width: 10px; }
      .category__nav-item--active, .category__nav-item:hover {
        color: #fff;
        background: #5d55b2; }
        .category__nav-item--active svg path, .category__nav-item:hover svg path {
          stroke: #fff; }
      .category__nav-item--modal:hover {
        color: #2b2929;
        background: #eaeef5; }
        .category__nav-item--modal:hover svg path {
          stroke: #2b2929; }
  .category__grid {
    display: flex;
    align-items: flex-start;
    margin-top: 35px; }
  .category__aside {
    max-width: 216px;
    min-width: 216px;
    width: 100%; }
    .category__aside .show-all__btn {
      font-weight: 400;
      font-size: 12px;
      color: #5d55b2;
      flex-direction: row;
      gap: 5px; }
    .category__aside .show-all__btn:hover svg path {
      fill: none; }
    .category__aside-group {
      margin-bottom: 25px; }
      .category__aside-group-title {
        font-weight: 500;
        font-size: 16px;
        margin-bottom: 16px; }
  .category__prices {
    display: flex;
    gap: 6px; }
  .category__price-group {
    position: relative; }
    .category__price-group span {
      position: absolute;
      font-size: 12px;
      top: 11px;
      left: 6px; }
    .category__price-group input {
      width: 100%;
      border-radius: 6px;
      font-weight: 400;
      font-size: 14px;
      color: #2b2929;
      background: #eaeef5;
      border: none;
      outline: none;
      padding: 10px 12px 10px 25px; }
      .category__price-group input::placeholder {
        font-weight: 400;
        font-size: 14px;
        color: #2b2929; }
  .category__wrapper {
    flex: 1;
    margin-left: 20px;
    max-width: calc(100% - 216px - 20px); }
    .category__wrapper .products-slider {
      padding-top: 30px; }
      .category__wrapper .products-slider:first-child {
        padding-top: 0; }
    .category__wrapper .category-slider::after {
      content: none; }
  .category__aside-banner img {
    max-width: 100%;
    width: 100%; }

.product-card--banner {
  background: none;
  padding: 0; }
  .product-card--banner:hover {
    background: none; }

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 70px; }
  .pagination__skip {
    margin: 0 4px;
    font-weight: 400;
    font-size: 15px;
    color: #2b2929; }
    .pagination__skip--disabled {
      color: #bfc8d8; }
  .pagination__item {
    border-radius: 6px;
    width: 26px;
    height: 26px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 15px;
    color: #2b2929; }
    .pagination__item--active {
      background: #eaeef5; }

.form_radio {
  margin-bottom: 8px; }

.form_radio input[type="radio"] {
  display: none; }

.form_radio label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 0;
  user-select: none;
  font-weight: 400;
  font-size: 14px; }

.form_radio label:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  background-color: #eaeef5; }

/* Checked */
.form_radio input[type="radio"]:checked + label::before {
  background-color: #ff9b24;
  background-image: url("../img/radio.png");
  background-position: center;
  background-repeat: no-repeat; }

.form_radio input[type="radio"]:checked + label {
  color: #ff9b24; }

/* Hover */
.form_radio label:hover:before {
  background: #d0d2d6; }

.checkbox-other {
  display: block;
  margin: 0 0 10px 0;
  cursor: pointer;
  user-select: none;
  position: relative; }

.checkbox-other input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0; }

.checkbox-other span {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0 0 0 25px;
  line-height: 22px;
  font-weight: 400;
  font-size: 14px; }

.checkbox-other span:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  border-radius: 4px;
  left: 0;
  background-color: #eaeef5; }

/* Checked */
.checkbox-other input[type="checkbox"]:checked + span:before {
  background-color: #ff9b24;
  background-image: url("../img/checkbox.png");
  background-repeat: no-repeat;
  background-position: center; }

.checkbox-other input[type="checkbox"]:checked + span {
  color: #ff9b24; }

/* Hover */
.checkbox-other span:hover:before {
  background-color: #d0d2d6; }

@media (max-width: 999px) {
  .category {
    margin-top: 200px; }

  .category__aside {
    display: none; }

  .category__wrapper {
    width: 100%;
    max-width: 100%;
    margin-left: 0; }
    .category__wrapper .products-slider {
      overflow: visible; }
    .category__wrapper .products-slider__inner-catalog {
      overflow: visible; }
    .category__wrapper .category-slider {
      overflow: visible; }

  .category .category__group {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px; }

  .category__nav {
    display: none; }

  .category .category__group-mob {
    display: block; }
    .category .category__group-mob .category__nav {
      display: flex; } }
.modal-filter {
  padding: 0;
  border-radius: 0;
  max-width: 380px; }
  .modal-filter .close-modal {
    display: none !important; }
  .modal-filter .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid #e1e1e1; }
  .modal-filter .category__aside-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 24px; }
    .modal-filter .category__aside-header--active {
      color: #5d55b2; }
      .modal-filter .category__aside-header--active svg {
        transform: rotate(180deg); }
        .modal-filter .category__aside-header--active svg path {
          stroke: #5d55b2; }
  .modal-filter .category__aside-group-title {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 15px; }
  .modal-filter .category__aside-group {
    margin-bottom: 0; }
  .modal-filter .category__aside-inner {
    padding: 13px 24px;
    background: #eaeff5;
    display: none; }
  .modal-filter .category__price-group input {
    background: #fff; }
  .modal-filter .form_radio label:before,
  .modal-filter .checkbox-other span:before {
    background-color: #fff; }
  .modal-filter .show-all__btn {
    font-weight: 400;
    font-size: 12px;
    color: #5d55b2;
    flex-direction: row;
    gap: 5px; }
  .modal-filter .show-all__btn:hover svg path {
    fill: none; }

.blocker {
  z-index: 999 !important; }

.modal-header {
  max-width: 100%;
  width: 100%;
  vertical-align: top;
  padding: 0;
  border-radius: 0; }
  .modal-header .close-modal {
    display: none !important; }
  .modal-header__top {
    text-align: right;
    padding: 20px 20px 60px; }
  .modal-header__items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px; }
  .modal-header__inner {
    background: #ebeef0;
    display: none;
    padding: 10px 0; }
    .modal-header__inner .modal-header__item {
      padding-left: 40px; }
      .modal-header__inner .modal-header__item:hover {
        background: #5c55b2;
        color: #fff; }
  .modal-header__title {
    padding: 10px 0;
    margin: 0 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    color: #2b2929;
    border-bottom: 1px solid #c8d2dc; }
  .modal-header__menu {
    width: 100%; }
  .modal-header__item {
    width: 100%;
    display: block;
    padding: 8px 20px;
    font-size: 17px;
    color: #2b2929; }
  .modal-header .modal-header__title--inner-active {
    border-bottom: none; }
    .modal-header .modal-header__title--inner-active svg {
      rotate: 180deg; }
  .modal-header__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px 40px;
    gap: 14px; }
    .modal-header__bottom a {
      font-size: 16px;
      color: #2b2929; }

.text-page {
  margin-top: 100px;
  padding-bottom: 100px; }
  .text-page__block {
    padding-bottom: 50px; }
  .text-page h1 {
    font-weight: 300;
    font-size: 50px;
    color: #2b2929;
    padding-bottom: 20px; }
  .text-page h2 {
    font-weight: 300;
    font-size: 30px;
    color: #2b2929;
    padding-bottom: 20px; }
  .text-page h3 {
    font-weight: 300;
    font-size: 26px;
    color: #2b2929;
    padding-bottom: 20px; }
  .text-page h4 {
    font-weight: 300;
    font-size: 24px;
    color: #2b2929;
    padding-bottom: 20px; }
  .text-page h5 {
    font-weight: 300;
    font-size: 20px;
    color: #2b2929;
    padding-bottom: 20px; }
  .text-page p {
    font-weight: 400;
    font-size: 16px;
    line-height: 137%;
    color: #2b2929;
    padding-bottom: 15px; }
  .text-page ul {
    padding-left: 20px;
    padding-bottom: 15px; }
    .text-page ul li {
      padding-bottom: 10px;
      list-style: disc;
      font-weight: 400;
      font-size: 16px;
      color: #2b2929; }
  .text-page ol {
    padding-left: 20px;
    padding-bottom: 15px; }
    .text-page ol li {
      padding-bottom: 10px;
      font-weight: 400;
      font-size: 16px;
      color: #2b2929; }
  .text-page__title {
    font-weight: 300;
    font-size: 26px;
    color: #2b2929;
    padding-bottom: 20px; }

@media (max-width: 999px) {
  .text-page {
    margin-top: 200px; } }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #5d55b2;
  border-radius: 6px;
  font-size: 18px;
  padding: 10px 20px;
  transition: 300ms ease all; }
  .btn:hover {
    background: #abd835;
    color: #2b2929; }

.product {
  margin-top: 100px; }
  .product .title {
    font-size: 30px;
    max-width: 920px;
    margin-bottom: 20px; }
  .product__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px; }
    .product__container .product-card__controls {
      max-width: 50%; }
      .product__container .product-card__controls .product-card__add {
        justify-content: center; }
      .product__container .product-card__controls .product-card__input {
        background: #eaeef5; }
      .product__container .product-card__controls .product-card__counts {
        max-width: 25%; }
      .product__container .product-card__controls .product-card__count--minus {
        left: 7px; }
      .product__container .product-card__controls .product-card__count--plus {
        right: 7px; }
  .product__gallery {
    width: 50%; }
    .product__gallery-thumbs {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-top: 25px; }
    .product__gallery-thumb {
      display: inline-block;
      border-radius: 10px; }
      .product__gallery-thumb img {
        width: 75px;
        height: 57px;
        object-fit: cover;
        border-radius: 10px;
        transition: 200ms ease all;
        border: 2px solid transparent; }
      .product__gallery-thumb--active img {
        border-color: #5d55b2; }
  .product__main-image {
    width: 100%;
    position: relative;
    padding-bottom: 98.275%; }
    .product__main-image::before {
      content: "";
      width: 100%;
      padding-bottom: 12.95%;
      position: absolute;
      left: 0;
      top: 0;
      background: url("../img/main-gallery-pattern-top.svg") no-repeat;
      background-position: center;
      background-size: cover;
      z-index: 2; }
    .product__main-image::after {
      content: "";
      width: 100%;
      padding-bottom: 12.95%;
      position: absolute;
      left: 0;
      bottom: 0;
      background: url("../img/main-gallery-pattern-bottom.svg") no-repeat;
      background-position: center;
      background-size: cover;
      z-index: 2; }
    .product__main-image-item {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      object-fit: cover; }
    .product__main-image .product-card__labels {
      justify-content: flex-start;
      z-index: 10;
      padding-top: 16%; }
  .product__info {
    flex: 1;
    padding-top: 5%; }
  .product__price {
    display: flex;
    align-items: flex-end;
    margin-bottom: 10px; }
    .product__price-actual {
      font-size: 45px;
      color: #2b2929;
      margin-right: 20px; }
    .product__price-old {
      font-size: 25px;
      text-decoration: line-through;
      color: #a5adc5; }
  .product__item {
    display: flex;
    align-items: center;
    margin-bottom: 16px; }
    .product__item-title {
      margin-right: 10px; }
    .product__item-val a {
      color: #5d55b2; }
  .product__option {
    display: flex;
    align-items: flex-end;
    max-width: 60%;
    margin-bottom: 16px; }
    .product__option-divider {
      flex: 1;
      border-bottom: 1px dashed #cfd7e0;
      margin: 0 5px;
      position: relative;
      bottom: 4px; }
    .product__option-val {
      width: 30%; }
  .product .product__option-all {
    font-size: 12px;
    color: #5d55b2;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 45px; }
  .product__tabs {
    margin-top: 70px; }
    .product__tabs-header {
      display: inline-flex;
      gap: 6px; }
      .product__tabs-header-item {
        border-radius: 20px 20px 0 0;
        background: #f3f6fc;
        color: #2b2929;
        padding: 20px;
        transition: 300ms ease all; }
        .product__tabs-header-item:hover {
          background: #eaeef5; }
        .product__tabs-header-item--active {
          background: #eaeef5; }
    .product__tabs-item {
      padding: 25px 35px 40px;
      background: #eaeef5;
      border-radius: 0 20px 20px 20px;
      display: none; }
      .product__tabs-item:first-child {
        display: block; }
      .product__tabs-item p {
        line-height: 137%;
        padding-bottom: 30px; }
        .product__tabs-item p:last-child {
          padding-bottom: 0; }
    .product__tabs-title {
      font-weight: 300;
      font-size: 30px;
      color: #2b2929;
      margin-bottom: 22px; }
    .product__tabs-contacts {
      margin-top: 40px;
      display: flex;
      align-items: center;
      gap: 50px; }
      .product__tabs-contacts a {
        color: #2b2929; }
        .product__tabs-contacts a:hover {
          text-decoration: underline; }
  .product__review-header {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 30px; }
    .product__review-header-img {
      width: 102px; }
    .product__review-header-title {
      margin-bottom: 10px; }
    .product__review-header-rate {
      font-weight: 300;
      font-size: 40px;
      color: #2b2929; }
  .product__review-add-review {
    width: 240px; }
  .product__rates {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 30px; }
  .product__rate {
    display: inline-flex;
    align-items: center;
    font-size: 14px; }
    .product__rate .form_radio {
      margin-bottom: 0; }
    .product__rate .form_radio label:before {
      background: #fff;
      width: 17px;
      height: 17px;
      top: -15px; }
    .product__rate-stars {
      padding-left: 10px;
      padding-right: 20px; }
  .product__sort {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #c8d2dc;
    margin-bottom: 40px; }
    .product__sort-title {
      padding-right: 12px;
      font-size: 15px; }
    .product__sort-container {
      display: flex;
      align-items: center;
      gap: 8px; }
    .product__sort-item {
      transition: 200ms ease all;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 15px;
      color: #2b2929;
      border-radius: 80px;
      background: #fff;
      padding: 11px 17px; }
      .product__sort-item span {
        font-size: 14px;
        color: #a5adc5; }
      .product__sort-item:hover, .product__sort-item--active {
        color: #fff;
        background: #5d55b2; }
        .product__sort-item:hover span, .product__sort-item--active span {
          color: #fff; }
  .product__tabs-question .comments__main {
    padding: 0;
    border-bottom: none; }
  .product__tabs-question .comments__message {
    max-width: 100%; }

.comments__header {
  display: flex;
  align-items: center;
  margin-bottom: 10px; }
  .comments__header-avatar {
    width: 32px;
    height: 32px;
    margin-right: 15px; }
  .comments__header-name {
    font-weight: 500;
    margin-right: 12px; }
  .comments__header-stars {
    margin-right: 12px; }
  .comments__header-date {
    font-size: 14px;
    color: #a5adc5; }
.comments__item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 20px; }
.comments__message {
  background: #fff;
  border-radius: 6px;
  padding: 15px 20px;
  max-width: 653px; }
  .comments__message-item {
    margin-bottom: 6px; }
    .comments__message-item span {
      font-weight: 500; }
    .comments__message-item:last-child {
      margin-bottom: 0; }
  .comments__message--admin {
    background: #ffe6a6; }
.comments__like {
  display: inline-flex;
  gap: 5px;
  margin-right: 20px;
  color: #2b2929; }
  .comments__like-active {
    display: none; }
  .comments__like--active img {
    display: none; }
  .comments__like--active .comments__like-active {
    display: inline-block; }
.comments__dislike {
  display: inline-flex;
  gap: 5px;
  margin-right: 20px;
  color: #2b2929; }
  .comments__dislike-active {
    display: none; }
  .comments__dislike--active img {
    display: none; }
  .comments__dislike--active .comments__dislike-active {
    display: inline-block; }
.comments__images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }
  .comments__images img {
    width: 102px;
    height: 78px;
    border-radius: 10px; }
.comments__controls {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 15px; }
.comments__ban, .comments__answer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2b2929;
  font-size: 12px; }
  .comments__ban:hover, .comments__answer:hover {
    color: #5d55b2; }
    .comments__ban:hover svg path, .comments__answer:hover svg path {
      stroke: #5d55b2; }
.comments__additional {
  margin-top: 20px;
  padding-left: 56px; }
.comments__main {
  padding: 40px;
  border-bottom: 1px solid #c8d2dc; }
  .comments__main:last-child {
    border-bottom: none;
    padding-bottom: 0; }

.question {
  padding-bottom: 60px; }
  .question textarea {
    display: block;
    min-height: 182px;
    background: #fff;
    border-radius: 10px;
    padding: 15px 25px;
    outline: none;
    width: 100%;
    resize: none;
    margin-bottom: 20px; }
  .question .btn {
    width: 160px; }

.modal-review {
  box-shadow: none;
  max-width: 520px;
  border-radius: 20px;
  padding: 20px 30px; }
  .modal-review a.close-modal {
    display: none; }
  .modal-review__title {
    font-weight: 500;
    font-size: 30px;
    color: #2b2929; }
  .modal-review__header {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px; }
    .modal-review__header svg {
      width: 20px; }
  .modal-review__product {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px; }
    .modal-review__product img {
      width: 102px;
      border-radius: 10px; }
    .modal-review__product span {
      flex: 1; }
  .modal-review__rate {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px; }
    .modal-review__rate-container {
      display: flex;
      align-items: center;
      gap: 9px;
      cursor: pointer; }
      .modal-review__rate-container svg path {
        transition: 300ms ease all; }
    .modal-review__rate-title {
      font-size: 14px; }
    .modal-review__rate .rate-1 svg:nth-child(1) path {
      fill: #ff8d25; }
    .modal-review__rate .rate-2 svg:nth-child(1) path {
      fill: #ff8d25; }
    .modal-review__rate .rate-2 svg:nth-child(2) path {
      fill: #ff8d25; }
    .modal-review__rate .rate-3 svg:nth-child(1) path {
      fill: #ff8d25; }
    .modal-review__rate .rate-3 svg:nth-child(2) path {
      fill: #ff8d25; }
    .modal-review__rate .rate-3 svg:nth-child(3) path {
      fill: #ff8d25; }
    .modal-review__rate .rate-4 svg:nth-child(1) path {
      fill: #ff8d25; }
    .modal-review__rate .rate-4 svg:nth-child(2) path {
      fill: #ff8d25; }
    .modal-review__rate .rate-4 svg:nth-child(3) path {
      fill: #ff8d25; }
    .modal-review__rate .rate-4 svg:nth-child(4) path {
      fill: #ff8d25; }
    .modal-review__rate .rate-5 svg path {
      fill: #ff8d25; }
  .modal-review__form {
    padding-top: 27px; }
    .modal-review__form-title {
      font-weight: 500;
      font-size: 22px;
      color: #2b2929;
      margin-bottom: 25px; }
    .modal-review__form-group {
      margin-bottom: 20px; }
      .modal-review__form-group input {
        width: 100%;
        outline: none;
        background: #eaeef5;
        border-radius: 10px;
        color: #2b2929;
        padding: 15px 18px 18px; }
        .modal-review__form-group input::placeholder {
          color: #2b2929; }
      .modal-review__form-group textarea {
        min-height: 160px;
        width: 100%;
        outline: none;
        background: #eaeef5;
        border-radius: 10px;
        color: #2b2929;
        padding: 15px 18px 18px;
        resize: none; }
        .modal-review__form-group textarea::placeholder {
          color: #2b2929; }
    .modal-review__form .checkbox-other span:before {
      top: 2px; }
    .modal-review__form .checkbox-other {
      display: inline-block; }
    .modal-review__form .checkbox-other input[type="checkbox"]:checked + span {
      color: #2b2929; }
  .modal-review__file {
    display: none; }
  .modal-review__pseudo-file {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    background: #abd835;
    border-radius: 10px;
    color: #2b2929;
    padding: 16px;
    transition: 300ms ease all;
    margin-bottom: 13px; }
    .modal-review__pseudo-file:hover {
      background: #d3ff65; }
  .modal-review__submit {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 5px;
    margin-bottom: 13px; }
  .modal-review__note {
    font-size: 12px; }
    .modal-review__note a {
      color: #5d55b2; }
      .modal-review__note a:hover {
        text-decoration: underline; }

@media (max-width: 1365px) {
  .product__gallery {
    width: 59%; }

  .product__container {
    gap: 46px; }

  .product__price {
    flex-direction: column;
    align-items: flex-start; }

  .product__option {
    max-width: 100%; }

  .product__container .product-card__controls {
    max-width: 100%; }

  .product__tabs-contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px; } }
@media (max-width: 1365px) and (max-width: 999px) {
  .product {
    margin-top: 200px; }

  .product__container {
    flex-direction: column; }

  .product__gallery {
    width: 100%; }

  .product__main-image {
    padding-bottom: 89%; }

  .comments__main {
    padding: 0 0 30px; }

  .product__sort {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px; } }
@media (max-width: 639px) {
  .product__tabs-header-item {
    font-size: 13px;
    padding: 15px 10px 10px;
    border-radius: 10px 10px 0 0; }

  .product__tabs-item {
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 0 10px 10px 10px; }

  .product__tabs-title {
    font-size: 25px; }

  .product__tabs-item p {
    font-size: 14px;
    padding-bottom: 20px; }

  .modal-review {
    max-width: 100%; } }
@media (max-width: 479px) {
  .product__main-image .product-card__labels {
    right: -5px; }

  .product__tabs-header-item {
    font-size: 12px;
    padding-left: 7px;
    padding-right: 7px; }

  .product__tabs-header {
    gap: 4px; }

  .product__review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px; }

  .product__sort-container {
    flex-wrap: wrap; }

  .product__sort-item {
    border-radius: 30px;
    font-size: 12px;
    padding: 7px 14px; }

  .product__sort {
    margin-top: 20px;
    margin-bottom: 20px; }

  .comments__header {
    flex-wrap: wrap; }
    .comments__header .comments__header-date {
      width: 100%;
      margin-top: 8px; }

  .comments__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px; }

  .comments__message {
    font-size: 14px; }

  .comments__controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px; }

  .comments__additional {
    padding-left: 30px; }

  .modal-review__header {
    flex-direction: column-reverse;
    align-items: flex-end; }

  .modal-review__title {
    width: 100%;
    text-align: center; }

  .modal-review {
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    width: 360px; }

  .modal-review__product {
    flex-direction: column;
    gap: 10px; } }

/*# sourceMappingURL=index.css.map */
