/* Product Page */
.product {
  display: grid;
  grid-template-areas:
    "title asideTitle"
    "gallery aside"
    "content aside";
  grid-template-columns: calc(100% - 325px) 305px;
  column-gap: 20px;
}

.product__title-wrapper {
  grid-area: title;
}

.product__title-wrapper h1 {
  text-transform: none;
  letter-spacing: 0em;
  font-weight: 700;
}

.product__image-wrapper {
  grid-area: gallery;
}

.product__aside-wrapper {
  grid-area: aside;
}

.product__content-wrapper {
  grid-area: content;
}

.product__gallery {
  --aside-width: 88px;
  --aside-gap: 20px;
  margin-left: calc(var(--aside-width) + var(--aside-gap));
  position: relative;
  margin-bottom: 52px;
}

.product__stickers {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
}

@media (min-width: 576px) {
  .product__stickers .sticker {
    font-size: 12px;
    line-height: 15px;
    padding: 5px 13px 4px;
    border-radius: 15px;
  }

  .product__stickers .stickers__row {
    column-gap: 4px;
    margin-bottom: 4px;
  }

  .product__stickers .stickers__btn {
    width: 18px;
    height: 18px;
  }

  .product__stickers .stickers__btn .icon {
    width: 8px;
    height: 8px;
  }
}

.product-discount {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 0 3px 3px 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 20px 100%, 0 50%);
  padding: 10px 14px 10px 29px;
  white-space: nowrap;
}

.product-gallery {
  border: 1px solid var(--light-grey-bg);
  background: var(--light-grey-bg);
}

.product-gallery__slider {
}

.product-gallery__item {
  display: block !important;
  width: auto !important;
  position: relative;
}

.product-gallery__item:before {
  content: "";
  display: block;
  padding-top: calc(700 * 100% / 845);
}

.product-gallery__item + .product-gallery__item {
  display: none !important;
}

.product-gallery__item-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  flex-shrink: 0;
}

.product-gallery__thumbs {
  position: absolute;
  left: calc(-1 * (var(--aside-width) + var(--aside-gap)));
  top: 0;
  width: var(--aside-width);
  height: 100%;
}

.product-gallery__thumbs .slick-arrow {
  position: absolute;
  right: auto;
  left: 50%;
  margin: 0 0 0 -15px;
  width: 30px;
  height: 30px;
  top: auto;
  border: none;
}

.product-gallery__thumbs .slick-arrow svg {
  width: 10px;
  height: 10px;
}

.product-gallery__thumbs .slick-prev {
  top: -15px;
  transform: rotate(90deg);
}

.product-gallery__thumbs .slick-next {
  bottom: -15px;
  transform: rotate(90deg);
}

.product-gallery__thumbs .slick-arrow svg {
}

.product-gallery__thumbs .slick-arrow.slick-disabled {
  opacity: 1;
}

.product-gallery__thumbs .slick-arrow.slick-disabled svg {
  opacity: 0.1;
}

.product-gallery__thumbs .slick-list {
  height: 100% !important;
}

.product-gallery__thumbs .slick-slide {
  border: none;
  padding: 0 0 10px;
}

.product-gallery__thumbs-item {
  display: block !important;
  width: auto !important;
  position: relative;
  cursor: pointer;
}

.product-gallery__thumbs-item:before {
  content: "";
  display: block;
  padding-top: calc(100% - 2px);
  position: relative;
  z-index: 1;
  border: 2px solid transparent;
}

.product_size_3x4 .product-gallery__thumbs-item:before {
  padding-top: calc(4 / 3 * 100% - 2px);
}

.slick-current .product-gallery__thumbs-item:before {
  border-color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.5);
}

.product-gallery__thumbs-item-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.product-gallery__thumbs-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__item[data-video]:after,
.product-gallery__thumbs-item[data-video]:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 23px;
  margin: -11px 0 0 -10px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m3.02.288 16.034 9.569a1.9 1.9 0 0 1 0 3.286L3.02 22.713C1.7 23.5 0 22.575 0 21.068V1.93C0 .424 1.698-.5 3.02.288Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.product-gallery__item[data-video]:after {
  width: 30px;
  height: 35px;
}

.product__aside {
  position: relative;
  z-index: 1;
  height: 100%;
}

.product__aside-header {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  margin: 0 10px 12px;
}

.product__aside-control {
  margin-bottom: 22px;
}

.product__aside-content {
  position: relative;
  z-index: 1;
}

.product-code {
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

.product-code__value {
  color: var(--accent-color);
}

.product-share {
  position: relative;
}

.product-share__content {
  position: absolute;
  right: 0;
  top: 100%;
}

.ya-share2__link_more {
  padding: 0 !important;
  font-size: 12px !important;
  line-height: 15px !important;
  font-weight: 600 !important;
  color: var(--accent-color) !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  display: flex !important;
  align-items: center !important;
  column-gap: 8px !important;
}

.ya-share2 .ya-share2__item .ya-share2__link_more:hover {
  color: var(--accent-color) !important;
}

.ya-share2__link_more:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 3.677A3.677 3.677 0 0 1 3.677 0H6a.58.58 0 0 1 0 1.161H3.677a2.516 2.516 0 0 0-2.516 2.516v4.646a2.516 2.516 0 0 0 2.516 2.516h4.646a2.516 2.516 0 0 0 2.516-2.516V6A.58.58 0 0 1 12 6v2.323A3.677 3.677 0 0 1 8.323 12H3.677A3.677 3.677 0 0 1 0 8.323V3.677Z' fill='%23449DF8'/%3E%3Cpath d='M7.674.58c0-.32.26-.58.58-.58h3.165A.58.58 0 0 1 12 .58v3.207a.58.58 0 0 1-1.161 0V1.982L6.41 6.411a.58.58 0 0 1-.822-.822l4.429-4.428H8.254a.58.58 0 0 1-.58-.58Z' fill='%23449DF8'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.ya-share2__link_more .ya-share2__badge_more {
  display: none !important;
}

.ya-share2__link_more .ya-share2__title {
  font: inherit !important;
  color: inherit !important;
}

.product-control {
  border: 1px solid var(--border-color);
  background: #fff;
  font-size: 12px;
  line-height: 15px;
}

.product-control__section {
  border-top: 1px solid var(--border-color);
  padding: 20px;
}

.product-control__section:first-child {
  border-top: none;
}

.product-control__section_head {
  padding-top: 12px;
  padding-bottom: 12px;
}

.product-control__section_price {
  padding-top: 26px;
  padding-bottom: 30px;
}

.product-control__section_discount {
  padding-top: 14px;
  padding-bottom: 12px;
}

.product-control__section_installment {
  padding-top: 14px;
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 0;
  padding-right: 0;
}

.product-control__section_content {
}

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

.product-rating {
  color: var(--secondary-color);
}

.product-stars {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  column-gap: 4px;
  color: var(--main-color);
}

.product-stars .icon {
  width: 14px;
  height: 14px;
  color: #ffb72a;
}

.product-reviews {
  font-size: 14px;
}

.product-videos {
}

.product-videos a:not(.product-videos__btn) {
  display: none;
}

.product-videos__btn {
  font-size: 14px;
  column-gap: 4px;
  color: var(--secondary-color);
}

.product-videos__btn .icon {
  width: 20px;
  height: 20px;
  background-color: #edeff1;
  color: var(--main-color);
  border-radius: 50%;
}

.product-price-wrapper {
  display: flex;
  align-items: baseline;
  column-gap: 8px;
  margin-bottom: 8px;
}

.product-price {
  font-size: 32px;
  line-height: 1;
  font-weight: bold;
  white-space: nowrap;
}

.product-old-price {
  font-size: 20px;
  line-height: 1;
  color: var(--secondary-color);
  white-space: nowrap;
  position: relative;
}

.product-old-price:after {
  content: "";
  user-select: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-bottom: 1px solid;
}

.product-bonuses {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  line-height: 17px;
  color: var(--secondary-color);
  padding: 4px 12px;
  border-radius: 15px;
  background: var(--light-grey-bg);
}

.product-bonuses strong {
  font-weight: bold;
  color: var(--main-color);
  white-space: nowrap;
}

.product-discount-info {
  font-weight: 600;
  font-size: 14px;
}

.product-installment .installment__header {
  margin-bottom: 11px;
}

.product-installment .installment__content {
  display: flex;
  align-items: center;
  column-gap: 14px;
}

.product-installment .installment__info {
  padding: 12px 10px;
  font-size: 16px;
  margin: 0;
  line-height: 21px;
  min-width: 174px;
}

.product-colors {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 25px;
  margin-bottom: 20px;
}

.product-colors__header {
  font-weight: 600;
  margin-bottom: 11px;
}

.product-colors__title {
  color: var(--secondary-color);
}

.product-colors__selected-value {
  color: var(--main-color);
}

.product-colors__footer {
  font-weight: 600;
  margin-top: 11px;
}

.product-colors.is-open .product-colors__more-btn > span {
  display: none;
}

.product-colors.is-open .product-colors__more-btn:after {
  content: attr(data-hide-text);
}

.product-colors__list {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

.product-colors__item {
  flex: 0 0 auto;
  padding: 5px;
}

.product-colors__label {
  display: block;
  position: relative;
  cursor: pointer;
  width: 36px;
  height: 36px;
}

.product-colors__input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.product-colors__button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-colors__button:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}

.product-colors__input:checked ~ .product-colors__button:after {
  border-color: var(--accent-color);
}

.product-colors__list.slick-slider {
  display: block;
}

.slick-slide .product-colors__item {
  width: auto;
  vertical-align: top;
}

.product-colors__list .slick-arrow {
  width: 20px;
  height: 20px;
  margin: -10px 0 0;
}

.product-colors__list .slick-arrow svg {
  width: 10px;
  height: 10px;
}

.product-colors__list .slick-prev {
  left: -15px;
  right: auto;
}

.product-colors__list .slick-next {
  right: -15px;
  left: auto;
}

.product-colors-tooltip {
  position: absolute;
  z-index: 1001;
  padding: 6px 16px;
  background: #fff;
  border-radius: 3px;
  box-shadow: var(--box-shadow);
}

.product-colors-tooltip:after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -4px;
  top: 100%;
  border-style: solid;
  border-color: var(--white-color) transparent;
  border-width: 5px 4px;
}

.product-colors-tooltip__title {
  text-align: center;
  font-size: 12px;
  line-height: 15px;
}

.product-variants {
  margin-bottom: 15px;
}

.product-variants__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  column-gap: 8px;
  margin-bottom: 11px;
  font-weight: 600;
}

.product-variants__title {
  color: var(--secondary-color);
}

.product-variants__chart-btn {
}

.product-variants__footer {
  margin-top: 11px;
  font-weight: 600;
}

.product-variants.is-open .product-variants__more-btn > span {
  display: none;
}

.product-variants.is-open .product-variants__more-btn:after {
  content: attr(data-hide-text);
}

.product-variants__content {
  position: relative;
}

.product-variants__list {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

.product-variants__item {
  flex: 0 0 auto;
  width: 20%;
  padding: 5px;
}

.product-variants__label {
  display: block;
  position: relative;
  cursor: pointer;
}

.product-variants__input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.product-variants__button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 45px;
  border: 1px solid var(--border-color);
}

.product-variants__input:checked ~ .product-variants__button {
  border-width: 2px;
  border-color: var(--accent-color);
}

.product-variants__button-content {
}

.product-variants__button-title {
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.product-variants__button-text {
  display: block;
  font-size: 10px;
  line-height: 14px;
  color: var(--secondary-color);
}

.product-variants-window {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  margin-bottom: 5px;
  border-radius: 3px;
  background: #fff;
  box-shadow: var(--box-shadow);
  padding: 15px;
  font-size: 12px;
  line-height: 15px;
  z-index: 100;
}

.product-variants-window:not(.is-active) {
  display: none;
}

.product-variants-window__section {
}

.product-variants-window__section:not(.is-active) {
  display: none;
}

.product-variants-window__title {
  font-weight: bold;
  margin-bottom: 5px;
}

.product-variants-window__data {
}

.product-variants-window__data-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  column-gap: 8px;
  margin-bottom: 9px;
}

.product-variants-window__data-row:last-child {
  margin-bottom: 0;
}

.product-variants-window__data-title {
  color: var(--secondary-color);
}

.product-variants-window__data-value {
  font-weight: 600;
}

.product-variants__select {
  height: 35px;
  font-size: 12px;
  line-height: 15px;
}

select.product-variants__select,
.product-variants__select .jq-selectbox__select,
.product-variants__select .jq-selectbox__dropdown li {
  padding-top: 9px;
  padding-bottom: 9px;
}

.product-model-data {
  font-weight: 600;
  margin: -8px 0 20px;
}

.product-model-data__row:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 11px;
  margin-bottom: 7px;
}

.product-model-data__title {
  display: inline;
  color: var(--secondary-color);
  margin-right: 0.5em;
}

.product-model-data__desc {
  display: inline;
  margin: 0;
}

.product-model-data__row_model .product-model-data__item:not(:last-child) {
  margin-right: 0.5em;
}

.product-model-data__row_variant .product-model-data__item {
  border: 1px solid var(--border-color);
  border-radius: 15px;
  display: inline-block;
  line-height: 19px;
  min-width: 21px;
  text-align: center;
  padding: 0 6px;
}

.product-btns {
  margin-bottom: 15px;
}

.product-btns:last-child {
  margin-bottom: 0;
}

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

.product-btns-row__col-main {
  flex-shrink: 0;
  width: calc(100% - 54px);
}

.product-btns_oneclick .product-btns-row__col-main {
  width: 100%;
}

.product-btns-row__col-second {
  flex-shrink: 0;
  width: 33px;
}

.product-basket-btn {
  column-gap: 8px;
  text-transform: uppercase;
  width: 100%;
}

.product-basket-btn .icon {
  width: 24px;
  height: 20px;
}

.product-basket-btn.is-active .product-basket-btn__icon-normal {
  display: none;
}

.product-basket-btn:not(.is-active) .product-basket-btn__icon-add {
  display: none;
}

.product-basket-btn.is-active > span {
  display: none;
}

.product-basket-btn.is-active:after {
  content: attr(data-incarttext);
}

.product-favorite-btn {
  flex-shrink: 0;
  padding: 0;
  width: 30px;
  height: 45px;
}

.product-favorite-btn:hover,
.product-favorite-btn.is-active {
  color: var(--accent-color);
  box-shadow: none;
}

.product-favorite-btn .icon {
  width: 20px;
  height: 20px;
}

.product-favorite-btn.is-active .product-favorite-btn__icon-normal {
  display: none;
}

.product-favorite-btn:not(.is-active) .product-favorite-btn__icon-add {
  display: none;
}

.product-oneclick-btn {
  width: 100%;
  text-transform: none;
  font-weight: 600;
  font-size: 14px;
}

.product-delivery-info {
  font-weight: 600;
  border-top: 1px solid var(--border-color);
  margin-top: 19px;
  padding-top: 14px;
}

.product-delivery-info__title {
  color: var(--secondary-color);
}

.product-description {
  font-size: 12px;
  line-height: 15px;
  font-weight: 600;
}

.product-description a {
  color: var(--accent-color);
}

.product-description__section {
  padding-bottom: 15px;
}

.product-description__section:not(:last-child) {
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border-color);
}

.product-description__title {
  font-size: 14px;
  line-height: 22px;
  font-weight: bold;
  margin-bottom: 12px;
}

.product-specification {
  display: table;
  width: 100%;
}

.product-specification__row {
  display: table-row;
}

.product-specification__title,
.product-specification__desc {
  display: table-cell;
  vertical-align: baseline;
}

.product-specification__row:not(:last-child) .product-specification__title,
.product-specification__row:not(:last-child) .product-specification__desc {
  padding-bottom: 9px;
}

.product-specification__title {
  width: 46%;
  padding-right: 8px;
  color: var(--secondary-color);
}

.product-specification__desc {
}

.product-specification__desc a {
}

.product-specification-all {
  margin-top: 15px;
}

.product-delivery {
}

.product-delivery__row {
}

.product-delivery__row:not(:last-child) {
  margin-bottom: 8px;
}

.product-delivery__title {
  font-weight: 600;
}

.product-delivery__desc {
  color: var(--secondary-color);
}

.product-categories {
  line-height: 20px;
}

.product-categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-categories li {
  display: inline;
}

.product-categories li:not(:last-child):after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--border-color);
  margin: 0 8px;
}

.product-categories a {
}

.product-page .target {
  scroll-margin-top: 120px;
}

@media (max-width: 1199.98px) {
  .product {
    display: block;
  }

  .product__aside-content.is_stuck {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    width: auto !important;
  }

  .product__aside-content.is_stuck + div {
    display: none !important;
  }

  .product__aside-header {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .product__gallery {
    margin-left: 0;
  }

  .product-gallery__thumbs {
    display: none !important;
  }

  .product-gallery .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
  }
}

@media (max-width: 575.98px) {
  .product__gallery {
    --aside-width: 50px;
    --aside-gap: 10px;
  }

  .product-discount {
    font-size: 12px;
    line-height: 20px;
    padding: 0 5px 0 8px;
    clip-path: polygon(8px 0, 100% 0, 100% 100%, 8px 100%, 0 50%);
  }

  .product-gallery__thumbs .slick-slide {
    padding: 2px 0;
  }

  .product-control__section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .product-control__section_installment {
    padding-left: 0;
    padding-right: 0;
    margin-left: 15px;
    margin-right: 15px;
  }

  .product__aside-wrapper {
    margin-bottom: 20px;
  }

  .reviews__btn-group .btn-group .btn {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.product-fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: var(--white-color);
  box-shadow: var(--box-shadow);
  z-index: 1001;
  opacity: 0;
  transform: translateY(-100%);
  transition: 0.35s ease-in-out;
  backface-visibility: hidden;
  will-change: opacity, transform;
  transition-property: opacity, transform;

  /*opacity: 1;
  transform: translateY(0);*/
}

html.is-fixed-product-visible .product-fixed {
  opacity: 1;
  transform: translateY(0);
}

.product-fixed__row {
  display: flex;
  align-items: center;
  height: 108px;
}

.product-fixed__main-wrapper {
  flex-grow: 1;
  min-width: 1px;
  border-right: 1px solid var(--border-color);
  padding-right: 20px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.product-fixed__image-wrapper {
  flex-shrink: 0;
}

.product-fixed__image {
  background: var(--light-grey-bg);
  width: 70px;
  height: 78px;
}

.product-fixed__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-fixed__content-wrapper {
  flex-grow: 1;
  min-width: 1px;
}

.product-fixed__title {
  font-size: 16px;
  line-height: 1;
  font-weight: normal;
  max-height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-fixed__meta {
  font-size: 12px;
  line-height: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 4px;
  column-gap: 30px;
  margin-top: 8px;
}

.product-fixed__meta-item {
}

.product-fixed__meta-item-value {
  color: var(--main-color);
}

.product-fixed .product-rating {
  column-gap: 6px;
  vertical-align: top;
}

.product-fixed .product-stars {
  font-size: inherit;
}

.product-fixed .product-reviews {
  font-size: inherit;
  font-weight: normal;
  line-height: inherit;
}

.product-fixed__footer-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  column-gap: 60px;
}

.product-fixed__price-wrapper {
  white-space: nowrap;
}

.product-fixed__price {
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
  white-space: nowrap;
}

.product-fixed__discount {
  display: inline-block;
  vertical-align: middle;
  background: var(--accent-color);
  color: var(--white-color);
  clip-path: polygon(12px 0, 100% 0, 100% 100%, 12px 100%, 0 50%);
  padding: 5px 7px 5px 17px;
  white-space: nowrap;
  font-size: 12px;
  line-height: 14px;
  font-weight: bold;
  border-radius: 3px;
}

.product-fixed__old-price {
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary-color);
  text-decoration: line-through;
  white-space: nowrap;
  margin-top: -6px;
}

.product-fixed__buttons-wrapper {
  display: flex;
  align-items: center;
  column-gap: 18px;
  margin-right: -3px;
}

@media (max-width: 1399.98px) {
  .product-fixed__main-wrapper {
    padding-right: 20px;
    margin-right: 20px;
  }

  .product-fixed__footer-wrapper {
    column-gap: 20px;
  }
}

@media (max-width: 1199.98px) {
  .product-fixed__meta {
    display: none;
  }

  .product-fixed__price {
    font-size: 20px;
    line-height: 24px;
  }

  .product-fixed__old-price {
    font-size: 14px;
    line-height: 20px;
    margin-top: 0;
  }

  .product-fixed__discount {
    padding: 0 7px 0 12px;
    font-size: 12px;
    line-height: 22px;
  }
}

@media (max-width: 991.98px) {
  .product-page .target {
    scroll-margin-top: 100px;
  }

  .product-fixed__row {
    height: 80px;
  }

  .product-fixed .product-basket-btn {
    padding-left: 10px;
    padding-right: 10px;
  }

  .product-fixed .product-basket-btn > span,
  .product-fixed .product-basket-btn.is-active:after {
    display: none;
  }

  .product-fixed__buttons-wrapper {
    column-gap: 10px;
  }

  .product-fixed__image {
    width: 50px;
    height: 55px;
  }

  .product-fixed__main-wrapper {
    padding-right: 10px;
    margin-right: 10px;
    column-gap: 10px;
  }

  .product-fixed__footer-wrapper {
    column-gap: 10px;
  }
}

@media (max-width: 767.98px) {
  .product-fixed__discount {
    display: none;
  }

  .product-fixed__price {
    font-size: 18px;
    line-height: 20px;
  }

  .product-fixed__old-price {
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .product-fixed__price-wrapper {
    display: none;
  }
}
/* ! Product Page */

/* Product Version 2 */
.product-2.product {
  display: block;
}

.product-2 .product__main,
.product-2.product-2_aside_fixed .product__inner {
  display: grid;
  grid-template-columns: calc(0.5583 * (100% - 345px)) calc(0.4417 * (100% - 345px)) 305px;
  column-gap: 20px;
}

.product-2 .product__main {
  grid-template-areas:
    "title title title"
    "gallery options aside";
}

.product-2.product-2_aside_fixed .product__inner {
  grid-template-areas:
    "title title title"
    "gallery options aside"
    "content content aside";
}

.product-2.product-2_aside_fixed .product__main {
  display: contents;
}

.product-2:not(.product-2_aside_fixed) .product__inner.container,
.product-2.product-2_aside_fixed .product__inner.container .container {
  max-width: none;
  padding: 0;
  margin: 0;
  width: auto;
}

.product-2 .product__title-wrapper {
  grid-area: title;
}

.product-2 .product__image-wrapper {
  grid-area: gallery;
}

.product-2 .product__options-wrapper {
  grid-area: options;
}

.product-2 .product__aside-wrapper {
  grid-area: aside;
}

.product-2 .product__content-wrapper {
  grid-area: content;
  margin-top: 40px;
}

.product-2 .product__options-wrapper,
.product-2 .product__aside-wrapper {
  display: flex;
}

.product-2 .product__options-inner,
.product-2 .product__aside-inner {
  display: flex;
  width: 100%;
}

.product-2.product-2_aside_fixed .product__aside-inner {
  align-self: flex-start;
}

.product-2 .product-control,
.product-2 .product-options {
  border: 1px solid var(--border-color);
  background: #fff;
  font-size: 12px;
  line-height: 15px;
  width: 100%;
}

.product-2 .product-control__section,
.product-2 .product-options__section {
  margin: 0;
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

.product-2 .product-control__section:first-child,
.product-2 .product-options__section:first-child {
  border-top: none;
}

.product-2 .product-control .product-description__section,
.product-2 .product-options .product-description__section {
  border-color: var(--border-color);
}

.product-2 .product-control__section > .product-description__section,
.product-2 .product-options__section > .product-description__section {
  margin: 0;
  padding: 0;
  border: none;
}

.product-2 .product-control__section_header {
  padding-top: 11px;
  padding-bottom: 10px;
}

.product-2 .product-code__title {
  text-transform: none;
  font-weight: normal;
  color: var(--secondary-color);
}

.product-2 .product-code__value {
  color: inherit;
  font-weight: 600;
}

.product-2 .product-price-wrapper {
  column-gap: 14px;
  margin-bottom: 13px;
}

.product-2 .product-price .currency {
  font-size: 0.6em;
}

@media (min-width: 768px) {
  .product-2 .product-count-wrapper input[type="number"],
  .product-2 .product-count-wrapper .jq-number {
    width: 176px;
    font-size: 18px;
  }
}

.product-2 .product-colors,
.product-2 .product-variants {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.product-2 .product-colors__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(57px, 1fr));
  grid-gap: 5px;
  row-gap: 14px;
  margin: 0;
}

.product-2 .product-variants__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  grid-gap: 5px;
  row-gap: 5px;
  margin: 0;
}

.product-2 .product-colors__item,
.product-2 .product-variants__item {
  padding: 0;
  width: auto;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 6px;
}

.product-2 .product-colors:not(.is-open) .product-colors__item.is-hidden,
.product-2 .product-variants:not(.is-open) .product-variants__item.is-hidden {
  display: none;
}

.product-2 .product-colors__label {
  width: 40px;
  height: 40px;
}

.product-2 .product-variants__label {
  width: 100%;
  height: auto;
}

.product-2 .product-variants__button {
  height: auto;
  min-height: 30px;
  padding: 2px 4px;
}

.product-2 .product-colors__name {
  font-size: 11px;
  line-height: 16px;
  color: inherit;
}

.product-2 .product-colors__label:has(.product-colors__input:checked) ~ .product-colors__name {
  font-weight: 600;
}

.product-2 .product-variants__button-title {
  font-size: 12px;
  line-height: 1;
  font-weight: normal;
}

.product-2 .product-variants__input:checked ~ .product-variants__button .product-variants__button-title {
  font-weight: 600;
}

.product-2 .product-colors__header,
.product-2 .product-variants__header {
  margin-top: -9px;
}

.product-2 .product-colors__footer,
.product-2 .product-variants__footer {
  margin-bottom: -6px;
}

.product-2 .product__gallery {
  margin: 0;
}

.product-2 .product-gallery {
  border: none;
  background: none;
}

.product-2 .product-gallery__slider {
  border: 1px solid var(--line-color);
  padding: 10px;
  background: var(--light-grey-bg);
  background-clip: content-box;
}

.product-2 .product-gallery__item:before {
  padding-top: 100%;
}

.product-2 .product-gallery__thumbs {
  position: relative;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  padding: 0 15px;
  margin-top: 15px;
}

.product-2 .product-gallery__thumbs .slick-arrow {
  left: 0;
  top: calc(50% - 15px);
  bottom: auto;
  transform: none;
  margin: 0;
}

.product-2 .product-gallery__thumbs .slick-next {
  left: auto;
  right: 0;
}

.product-2 .product-gallery__thumbs .slick-list {
  margin: 0 -5px;
}

.product-2 .product-gallery__thumbs .slick-slide {
  padding: 0 5px;
}

.product-2 .product__stickers {
  left: 20px;
  top: 20px;
}

.page-nav-section .documents-section {
  margin-bottom: 0;
}

.available-services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-gap: 20px;
  row-gap: 20px;
}

.available-service-item {
  display: block;
  color: inherit;
  text-decoration: none;
}

.available-service-item__image {
  display: block;
}

.available-service-item__image img {
  display: block;
  width: 100%;
  height: auto;
}

.available-service-item__title {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}

.page-nav {
  overflow: hidden;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  box-shadow: 0px -1px 0 0 var(--border-color) inset;
  background: var(--white-color);
  z-index: 100;
  margin-bottom: 20px;
}

.product-2:not(.product-2_aside_fixed) .page-nav {
  position: sticky;
  top: var(--fixedHeaderHeight);
}

.page-nav-section.target {
  scroll-margin-top: calc(var(--fixedHeaderHeight) + 66px);
}

.page-nav__list {
  display: inline-flex;
  vertical-align: top;
  min-width: 100%;
  gap: 60px;
}

.product-2.product-2_aside_fixed .page-nav__list {
  gap: 30px;
}

.page-nav__btn {
  display: block;
  position: relative;
  white-space: nowrap;
  font-size: 18px;
  line-height: 1.44;
  font-weight: 600;
  color: var(--secondary-color);
  text-decoration: none;
  padding: 10px 0;
}

.page-nav__btn.is-active,
.page-nav__btn:hover {
  color: var(--main-color);
}

.page-nav__btn:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: transparent;
  transition: 0.15s ease-in-out;
}

.page-nav__btn.is-active:after {
  background-color: var(--accent-color);
}

@media (max-width: 1399.98px) {
  .page-nav__list {
    gap: 40px;
  }

  .page-nav__btn {
    font-size: 16px;
  }
}

@media (max-width: 1199.98px) {
  .product-2 .product__main {
    grid-template-areas:
      "title title"
      "gallery gallery"
      "options aside";
    grid-template-columns: 1fr 1fr;
  }

  .product-2.product-2_aside_fixed .product__inner {
    grid-template-areas:
      "title title"
      "gallery gallery"
      "options aside"
      "content content";
    grid-template-columns: 1fr 1fr;
  }

  .product-2 .product__gallery {
    margin-bottom: 20px;
  }

  .available-services-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 767.98px) {
  .product-2 .product__main {
    display: block;
  }

  .product-2.product-2_aside_fixed .product__inner {
    display: block;
  }

  .product-2 .product__gallery {
    margin-bottom: 52px;
  }

  .product-2 .product__options-wrapper {
    margin-bottom: 20px;
  }
}
/* ! Product Version 2 */
