@charset "UTF-8";
.page-product .section-margin {
  margin-top: 64px; }
  @media (max-width: 1099px) {
    .page-product .section-margin {
      margin-top: 56px; } }

.page-product .page-header-section {
  margin-bottom: 0; }

@media (max-width: 1099px) {
  .page-product .wrapper {
    padding-bottom: 130px; } }

.page-product .header-sticky.header-min .header-sticky__inner {
  box-shadow: 0px 2px 15px 0px rgba(6, 11, 108, 0.08); }

.product-page__grid {
  display: grid;
  margin-bottom: 56px;
  gap: 24px;
  grid-template-columns: 1fr minmax(530px, 42%); }
  @media (max-width: 1099px) {
    .product-page__grid {
      grid-template-columns: 100%; } }
  @media (max-width: 767px) {
    .product-page__grid {
      position: relative;
      gap: 20px; } }

@media (min-width: 1100px) {
  .product-page__area {
    position: sticky;
    top: 120px; } }

.product-page__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  gap: 16px; }
  @media (max-width: 1099px) {
    .product-page__header {
      margin-bottom: 24px; } }

.product-page__tabs {
  display: flex;
  border-bottom: 1px solid #DEDFE8; }
  @media (max-width: 1559px) {
    .product-page__tabs {
      display: none; } }

.product-page__tab {
  position: relative;
  margin-right: 40px;
  transition: all .3s ease;
  color: #9A9CA1;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5; }
  .product-page__tab.active {
    pointer-events: none;
    color: var(--theme-base-color); }
    .product-page__tab.active:after {
      right: 0; }
  .product-page__tab:after {
    position: absolute;
    bottom: -2px;
    right: 100%;
    left: 0;
    height: 3px;
    content: '';
    transition: all .3s ease;
    background-color: var(--theme-base-color); }
  @media (min-width: 1100px) {
    .product-page__tab {
      cursor: pointer; }
      .product-page__tab:hover {
        color: var(--theme-base-color); }
        .product-page__tab:hover:after {
          right: 0; } }

.product-page__tab-content {
  display: none;
  padding-top: 40px; }
  @media (max-width: 1559px) {
    .product-page__tab-content {
      padding-top: 0px;
      border-bottom: 1px solid #DEDFE8; } }
  .product-page__tab-content .product-descr__table:first-child {
    margin-top: 0px; }
  .product-page__tab-content.active {
    display: block; }
  @media (max-width: 1559px) {
    .product-page__tab-content {
      display: block; } }

@media (min-width: 1100px) {
  .product-page--sticky {
    position: sticky;
    top: 120px; } }

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

.product-descr {
  display: flex;
  align-items: center;
  gap: 40px; }
  @media (max-width: 767px) {
    .product-descr {
      width: 100%;
      flex-direction: row;
      justify-content: space-between;
      gap: 8px; } }
  .product-descr__code {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px; }
    .product-descr__code > .icon {
      fill: #AEB6BE; }
    @media (hover: hover) {
      .product-descr__code {
        cursor: pointer; }
        .product-descr__code:hover > .icon {
          fill: var(--theme-accent-color); } }
  .product-descr__rate {
    display: flex;
    align-items: center;
    gap: 10px; }
    @media (max-width: 1099px) {
      .product-descr__rate {
        gap: 8px; } }
  .product-descr__stars-list {
    display: flex;
    align-items: center;
    gap: 4px; }
    @media (max-width: 1099px) {
      .product-descr__stars-list {
        gap: 2px; } }
  .product-descr__star {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center; }
    @media (max-width: 767px) {
      .product-descr__star {
        width: 20px;
        height: 20px; } }
    .product-descr__star.active .icon {
      fill: #fe954c; }
    .product-descr__star .icon {
      display: flex;
      align-items: center;
      justify-content: center;
      fill: #DEDFE8; }
  .product-descr__star-total {
    font-weight: 600; }
  .product-descr__feedback {
    position: relative;
    display: flex;
    gap: 8px; }
    .product-descr__feedback:before {
      width: 2px;
      height: 2px;
      display: flex;
      margin: auto;
      content: '';
      border-radius: 50%;
      background-color: #333333; }
    .product-descr__feedback span {
      transition: color .3s ease; }
    @media (hover: hover) {
      .product-descr__feedback {
        cursor: pointer; }
        .product-descr__feedback:hover span {
          color: var(--theme-accent-color); } }

.success-message {
  position: absolute;
  z-index: 10;
  top: calc(100% + 6px);
  left: 0;
  display: flex;
  visibility: hidden;
  opacity: 0;
  align-items: center;
  padding: 6px 8px;
  gap: 6px;
  transition: all .3s ease;
  pointer-events: none;
  color: #333333;
  border-radius: 8px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.16);
  font-size: 14px; }
  @media (max-width: 767px) {
    .success-message {
      right: 0;
      left: inherit;
      padding: 4px 6px;
      gap: 4px;
      font-size: 12px; } }
  .success-message.active {
    visibility: visible;
    opacity: 1; }
  .success-message .icon {
    fill: var(--theme-accent-color); }

.product-rate {
  display: flex;
  align-items: center;
  gap: 4px; }

.product-page-labels {
  position: absolute;
  z-index: 10;
  top: 16px;
  left: 16px; }
  @media (max-width: 1559px) {
    .product-page-labels {
      top: 12px;
      left: 12px; } }
  @media (max-width: 1249px) {
    .product-page-labels {
      top: 0;
      left: 8px; } }
  @media (max-width: 1099px) {
    .product-page-labels {
      left: 0; } }

.product-image {
  display: flex;
  align-items: center; }
  @media (max-width: 1249px) {
    .product-image {
      justify-content: center; } }
  .product-image__hover {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    visibility: hidden;
    opacity: 0;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    transform: translate(-50%, -50%);
    pointer-events: none; }
    .product-image__hover svg {
      fill: #fff;
      stroke: #aeb6be; }
  .product-image__main {
    position: relative;
    width: 100%;
    max-width: 719px;
    max-height: 719px;
    flex-grow: 1;
    padding: 40px; }
    @media (max-width: 1559px) {
      .product-image__main {
        padding: 32px; } }
    @media (max-width: 1249px) {
      .product-image__main {
        padding: 24px; } }
    @media (max-width: 1099px) {
      .product-image__main {
        margin: auto;
        padding: 20px 20px 12px 20px; } }
    @media (max-width: 575px) {
      .product-image__main {
        max-width: 100%;
        margin: auto; } }
    .product-image__main .lazy-img-wrap {
      width: 100%; }
    .product-image__main .swiper,
    .product-image__main .swiper-slide,
    .product-image__main .swiper-container,
    .product-image__main .lazy-img-wrap {
      height: 100%; }
    .product-image__main .swiper {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0; }
      @media (max-width: 1099px) {
        .product-image__main .swiper {
          position: static; } }
    @media (max-width: 1099px) {
      .product-image__main .swiper-container {
        position: relative;
        padding-bottom: 100%; } }
    @media (max-width: 1099px) {
      .product-image__main .swiper-wrapper {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0; } }
    .product-image__main .swiper-slide {
      display: flex;
      align-items: center;
      justify-content: center; }
      .product-image__main .swiper-slide img {
        max-width: 100%;
        max-height: 100%; }
    .product-image__main .swiper-pagination {
      display: none; }
      @media (max-width: 1099px) {
        .product-image__main .swiper-pagination {
          position: static;
          height: 8px;
          display: flex;
          justify-content: center;
          margin: auto;
          margin-top: 4px;
          transform: none; } }
    .product-image__main .swiper-pagination-bullets-dynamic {
      justify-content: initial; }
  .product-image__rubber {
    position: relative;
    padding-bottom: 100%; }
    @media (max-width: 1099px) {
      .product-image__rubber {
        max-width: 552px;
        margin: auto;
        padding-bottom: 0px; } }
  .product-image__nav {
    height: 719px;
    max-height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 16px;
    cursor: default; }
    @media (max-width: 1559px) {
      .product-image__nav {
        height: auto;
        margin-right: 10px; } }
    @media (max-width: 1099px) {
      .product-image__nav {
        display: none; } }
    .product-image__nav.hide {
      display: none; }
    .product-image__nav .swiper,
    .product-image__nav .swiper-slide,
    .product-image__nav .swiper-container,
    .product-image__nav .lazy-img-wrap {
      height: 100%; }
    .product-image__nav .swiper-container:not(.swiper-container-initialized) .swiper-wrapper {
      flex-direction: column; }
    .product-image__nav .swiper-container:not(.swiper-container-initialized) .swiper-slide:not(:last-child) {
      margin-bottom: 16px; }
    .product-image__nav .swiper-slide {
      width: 130px;
      height: 130px;
      box-sizing: content-box; }
      @media (max-width: 1559px) {
        .product-image__nav .swiper-slide {
          width: 80px;
          height: 80px; } }
      @media (max-width: 1249px) {
        .product-image__nav .swiper-slide {
          width: 48px;
          height: 48px; } }
      .product-image__nav .swiper-slide:not(:last-child) {
        margin-bottom: 16px; }
      .product-image__nav .swiper-slide.swiper-slide-thumb-active {
        pointer-events: none; }
        .product-image__nav .swiper-slide.swiper-slide-thumb-active .lazy-img-wrap {
          pointer-events: none;
          border-color: var(--theme-accent-color); }
    .product-image__nav .lazy-img-wrap {
      box-sizing: border-box;
      margin: auto;
      padding: 8px;
      transition: box-shadow .3s ease;
      border: 1px solid transparent;
      border-radius: 8px; }
      @media (max-width: 1559px) {
        .product-image__nav .lazy-img-wrap {
          padding: 6px;
          border-radius: 8px; } }
      @media (min-width: 1100px) {
        .product-image__nav .lazy-img-wrap {
          cursor: pointer; }
          .product-image__nav .lazy-img-wrap:hover {
            border-color: var(--theme-accent-color-light); } }
    .product-image__nav img {
      max-width: 100%;
      max-height: 100%; }
    .product-image__nav .swiper-button-prev {
      top: 0;
      bottom: auto;
      left: 50%;
      transform: translateX(-50%) rotate(90deg);
      border: none; }
    .product-image__nav .swiper-button-next {
      top: auto;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%) rotate(90deg);
      border: none; }
  @media (min-width: 1100px) {
    .product-image {
      cursor: pointer; }
      .product-image:hover .product-image__hover {
        visibility: visible;
        opacity: 1; } }

.product-page--action {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(10px, 0.9vw, 16px);
  gap: 16px; }
  @media (max-width: 1099px) {
    .product-page--action {
      padding: 12px;
      gap: 12px; } }

.product-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px; }
  @media (max-width: 1099px) {
    .product-action {
      gap: 16px; } }
  @media (max-width: 767px) {
    .product-action {
      position: absolute;
      z-index: 10;
      top: -40px;
      right: 0; } }
  .product-action__compare, .product-action__favourites {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
    transition: fill .3s ease;
    fill: #AEB6BE; }
    @media (max-width: 1099px) {
      .product-action__compare, .product-action__favourites {
        width: 28px;
        height: 28px; } }
  @media (hover: hover) {
    .product-action__compare {
      cursor: pointer; }
      .product-action__compare:hover .icon {
        fill: var(--theme-accent-color-light); } }
  .product-action__compare:active .icon {
    fill: var(--theme-accent-color-dark); }
  .product-action__compare.active .icon {
    fill: var(--theme-accent-color); }
  @media (hover: hover) {
    .product-action__compare.active {
      cursor: pointer; }
      .product-action__compare.active:hover .icon {
        fill: var(--theme-accent-color-light); } }
  .product-action__compare.active:active .icon {
    fill: var(--theme-accent-color-dark); }
  @media (hover: hover) {
    .product-action__favourites {
      cursor: pointer; }
      .product-action__favourites:hover .icon {
        fill: rgba(246, 0, 137, 0.5); } }
  .product-action__favourites:active .icon {
    fill: #c4006d; }
  .product-action__favourites.active .icon {
    fill: #F60089; }
  @media (hover: hover) {
    .product-action__favourites.active {
      cursor: pointer; }
      .product-action__favourites.active:hover .icon {
        fill: rgba(246, 0, 137, 0.5); } }
  .product-action__favourites.active:active .icon {
    fill: #c4006d; }

.product-features__block:not(:last-of-type) {
  margin-bottom: 24px; }
  @media (max-width: 767px) {
    .product-features__block:not(:last-of-type) {
      margin-bottom: 38px; } }

.product-features__title {
  margin-bottom: 16px;
  font-weight: 600; }

.product-features__item {
  display: flex;
  align-items: flex-start;
  padding: 8px 16px;
  gap: 24px;
  border-radius: 8px; }
  .product-features__item:nth-child(even) {
    background-color: #F0F2F6; }
  @media (max-width: 1249px) {
    .product-features__item {
      gap: 16px; } }
  @media (max-width: 1099px) {
    .product-features__item {
      padding: 8px 12px;
      gap: 12px; } }
  @media (max-width: 767px) {
    .product-features__item {
      padding: 8px;
      gap: 8px; } }

.product-features__prop {
  max-width: 33%;
  display: flex;
  align-items: center;
  flex: 1 0 33%;
  color: #9A9CA1; }
  @media (max-width: 1099px) {
    .product-features__prop {
      max-width: 50%;
      flex: 1 0 50%; } }

.product-features__sep {
  min-width: 15px;
  flex-grow: 1;
  margin: 0px 3px;
  margin-bottom: 4px; }

.product-features__more {
  cursor: pointer;
  color: var(--theme-accent-color); }
  @media (min-width: 1100px) {
    .product-features__more:hover {
      opacity: .7; } }

.product-control {
  display: grid;
  border-radius: 8px;
  grid-template-columns: 1fr auto; }
  @media (min-width: 1100px) {
    .product-control {
      padding: 24px;
      gap: 16px;
      background-color: #F0F2F6; } }
  @media (max-width: 1099px) {
    .product-control {
      margin-top: 0;
      padding: 6px;
      gap: 8px; } }
  .product-control__status {
    display: flex;
    align-items: center; }
  .product-control__one-click {
    display: flex;
    justify-content: center; }
  .product-control__buttons {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
    grid-column: span 2; }
    @media (max-width: 1099px) {
      .product-control__buttons {
        max-width: 100%;
        gap: 8px; } }
    .product-control__buttons .btn {
      width: 100%;
      padding: 0 20px; }
  .product-control .product-price {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 12px; }
    @media (max-width: 1099px) {
      .product-control .product-price {
        gap: 8px; } }
    .product-control .product-price__current {
      line-height: 1; }
      .product-control .product-price__current span:last-child:not(.byn) {
        font-size: 24px; }
    .product-control .product-price__sale {
      display: flex;
      flex-direction: column-reverse;
      gap: 2px; }
    .product-control .product-price__old {
      font-size: 14px; }
      .product-control .product-price__old span:last-child:not(.byn) {
        font-size: 14px; }
      @media (max-width: 1099px) {
        .product-control .product-price__old {
          font-size: 12px; } }

.product-control-sticky {
  position: fixed;
  z-index: 100;
  bottom: 57px;
  right: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  background: #fff;
  box-shadow: 8px 0px 30px 0px rgba(6, 11, 108, 0.15); }
  @media (max-width: 1099px) {
    .product-control-sticky {
      display: flex; } }

.product-info-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 33%; }
  @media (max-width: 1099px) {
    .product-info-grid {
      gap: 24px;
      grid-template-columns: 1fr; } }
  @media (max-width: 767px) {
    .product-info-grid {
      gap: 20px; } }
  .product-info-grid--sticky {
    position: sticky;
    top: 200px; }

@media (max-width: 1099px) and (max-width: 1099px) {
  .product-info-grid--v2 .product-info-grid__left {
    order: 2; } }

@media (max-width: 1099px) and (max-width: 1099px) {
  .product-info-grid--v2 .product-info-grid__right {
    order: 1; } }

.video-section {
  display: grid;
  margin-bottom: 24px;
  gap: 24px;
  grid-template-columns: 1fr; }
  @media (min-width: 1100px) {
    .video-section--two {
      grid-template-columns: 1fr 1fr; }
    .video-section--three {
      grid-template-columns: 1fr 1fr; }
      .video-section--three .video-section__item:first-child {
        grid-row: span 2;
        grid-column: span 2; } }

.reviews-control {
  padding: 24px;
  border-radius: 8px;
  background-color: #F0F2F6; }
  .reviews-control__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px; }
  .reviews-control__body {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    gap: 8px; }
  .reviews-control__title {
    font-weight: 600; }
  .reviews-control__rate {
    display: flex;
    align-items: center; }
  .reviews-control__descr {
    margin-bottom: 8px; }
  .reviews-control__item {
    display: flex;
    align-items: center;
    gap: 12px; }
    .reviews-control__item:last-child {
      margin-bottom: 0px; }
  .reviews-control__grade {
    width: 80px; }
  .reviews-control__progress {
    position: relative;
    height: 8px;
    flex-grow: 1;
    border-radius: 8px;
    background-color: #DEDFE8; }
    .reviews-control__progress span {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      border-radius: 8px;
      background-color: #fe954c; }
  .reviews-control__percent {
    width: 48px;
    text-align: right; }
  @media (max-width: 1099px) {
    .reviews-control {
      padding: 20px; } }

.review-card-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  border-radius: 8px;
  box-shadow: 0px 2px 15px 0px rgba(6, 11, 108, 0.08); }
  @media (max-width: 1099px) {
    .review-card-wrap {
      padding: 16px; } }
  @media (max-width: 767px) {
    .review-card-wrap {
      padding: 12px; } }

.review-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px; }
  @media (max-width: 1099px) {
    .review-card {
      gap: 14px; } }
  @media (max-width: 767px) {
    .review-card {
      gap: 12px; } }
  .review-card__header {
    display: grid;
    align-items: center;
    gap: 12px 20px;
    grid-template-columns: 64px 1fr auto;
    grid-template-rows: auto auto; }
    @media (max-width: 1099px) {
      .review-card__header {
        gap: 8px 12px;
        grid-template-columns: 48px 1fr auto; } }
    @media (max-width: 767px) {
      .review-card__header {
        gap: 4px 8px;
        grid-template-columns: 40px 1fr auto; } }
  .review-card__photo {
    align-self: start;
    grid-column: 1;
    grid-row: 1 / 3; }
    .review-card__photo img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      aspect-ratio: 1 / 1; }
  .review-card__author {
    align-self: center;
    font-weight: 600;
    grid-column: 2;
    grid-row: 1 / 3; }
  .review-card__date {
    white-space: nowrap;
    color: #9A9CA1;
    grid-column: 3;
    grid-row: 2;
    justify-self: end; }
  .review-card__rate {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end; }
  .review-card__body {
    display: flex;
    flex-direction: column;
    margin-left: 84px;
    gap: 16px; }
    @media (max-width: 1099px) {
      .review-card__body {
        margin-left: 60px;
        gap: 14px; } }
    @media (max-width: 767px) {
      .review-card__body {
        margin-left: 0;
        gap: 12px; } }
  .review-card__summary {
    display: flex;
    flex-direction: column;
    gap: 16px; }

.reviews {
  display: flex;
  flex-direction: column;
  gap: 20px; }
  .reviews__modal {
    margin-left: 20px;
    transition: all .3s ease;
    white-space: nowrap;
    color: var(--theme-base-color);
    font-size: 16px;
    font-weight: 600; }
    @media (max-width: 1099px) {
      .reviews__modal {
        font-size: 12px; } }
    @media (min-width: 1100px) {
      .reviews__modal {
        cursor: pointer; }
        .reviews__modal:hover {
          opacity: .8; } }

.reviews-list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px; }
  @media (max-width: 1099px) {
    .reviews-list {
      gap: 12px; } }
  .reviews-list__header {
    display: flex;
    align-items: center; }
  .reviews-list__author {
    font-weight: 600; }
  .reviews-list__date {
    margin-left: 20px;
    color: #9A9CA1; }
  .reviews-list__rate {
    display: flex;
    align-items: center;
    gap: 10px; }
  .reviews-list__stars {
    display: flex;
    align-items: center; }
  .reviews-list__grade {
    font-weight: 600; }
  .reviews-list__summary-content {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 400; }
    @media (max-width: 1099px) {
      .reviews-list__summary-content {
        font-size: 12px; } }
  .reviews-list__plus {
    margin-bottom: 18px; }
    @media (max-width: 1099px) {
      .reviews-list__plus {
        margin-bottom: 8px; } }
    .reviews-list__plus-title {
      font-weight: 700; }
  .reviews-list__minus {
    margin-bottom: 12px; }
    @media (max-width: 1099px) {
      .reviews-list__minus {
        margin-bottom: 8px; } }
    .reviews-list__minus-title {
      font-weight: 700; }
  .reviews-list__action {
    display: flex;
    align-items: center;
    gap: 18px; }
  .reviews-list__like {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #9A9CA1;
    fill: #AEB6BE; }
    .reviews-list__like .icon {
      transform: rotate(180deg); }
    .reviews-list__like--dislike .icon {
      transform: rotate(0deg); }

.reply {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 12px;
  border-radius: 8px;
  background-color: #F0F2F6; }
  @media (max-width: 1099px) {
    .reply {
      padding: 16px;
      gap: 12px; } }
  @media (max-width: 767px) {
    .reply {
      padding: 12px;
      gap: 8px; } }
  .reply__header {
    color: #9A9CA1;
    font-weight: 600; }

.product-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  gap: 16px; }
  @media (max-width: 1099px) {
    .product-block {
      margin-bottom: 24px; } }
  .product-block__title span {
    margin-right: 4px;
    font-weight: 600; }

.product-actions {
  padding: 20px 22px;
  border-radius: 8px;
  background: #F0F2F6; }
  @media (max-width: 575px) {
    .product-actions {
      padding: 14px 7px; } }
  .product-actions__item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    padding-left: 12px;
    gap: 16px; }
    @media (max-width: 767px) {
      .product-actions__item {
        padding-left: 8px;
        gap: 4px; } }
    .product-actions__item:last-child {
      margin-bottom: 0px; }
    .product-actions__item:before {
      position: absolute;
      top: calc(50% - 2px);
      left: 0;
      width: 4px;
      height: 4px;
      content: '';
      background-color: var(--theme-base-color); }
  .product-actions__title {
    border-bottom: 1px solid; }
  .product-actions__timer {
    padding: 3px 8px;
    border-radius: 8px;
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.1)); }

.product-mobile-actions {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr; }
  .product-mobile-actions__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    gap: 10px;
    transition: all ease .3s;
    fill: #AEB6BE;
    border: 1px solid #DEDFE8;
    border-radius: 8px;
    background: #F0F2F6; }
    @media (max-width: 1099px) {
      .product-mobile-actions__item:active, .product-mobile-actions__item:focus {
        color: var(--theme-base-color);
        fill: var(--theme-base-color); } }
    .product-mobile-actions__item.active .icon {
      fill: var(--theme-base-color); }

.product-description__content p {
  display: none; }
  .product-description__content p:first-child {
    display: block;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3; }

.product-description__content.active p {
  display: block;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: inherit; }

.product-panel {
  position: fixed;
  z-index: 20;
  top: calc(var(--headerMidHeight) + var(--headerBottomHeight) - 20px);
  right: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  padding: 10px 0px;
  transition: top .2s linear, visibility .2s linear, opacity .2s linear;
  pointer-events: none;
  background-color: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.16); }
  .product-panel.active {
    top: calc(var(--headerMidHeight) + var(--headerBottomHeight));
    visibility: visible;
    opacity: 1;
    pointer-events: all; }
  @media (max-width: 1099px) {
    .product-panel {
      display: none; } }

.product-card-row {
  display: grid;
  gap: 24px;
  grid-template-columns: 40% 1fr; }
  .product-card-row__left {
    display: flex;
    align-items: center;
    gap: 24px; }
  .product-card-row__right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px; }
  .product-card-row__image {
    width: 72px;
    aspect-ratio: 1/1; }
    .product-card-row__image img {
      max-width: 100%;
      max-height: 100%; }
  .product-card-row__title {
    font-weight: 600; }
  .product-card-row__row {
    display: flex;
    align-items: center;
    gap: 40px; }
  .product-card-row__content {
    display: flex;
    flex-direction: column;
    gap: 12px; }
  .product-card-row__code {
    color: #9A9CA1; }
  .product-card-row__price {
    width: 40%;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    white-space: nowrap; }
  .product-card-row__control {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px; }
    .product-card-row__control .btn--primary {
      width: 100%; }
  .product-card-row .product-control {
    margin: 0; }
  .product-card-row .product-control__buttons {
    padding: 0; }
  .product-card-row .product-precontrol__right {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 24px; }
  .product-card-row .product-action {
    position: static; }

.empty-reviews {
  width: 100%;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #DEDFE8; }
  @media (max-width: 767px) {
    .empty-reviews {
      align-items: center;
      flex-direction: column; } }
  .empty-reviews__content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 30px 24px;
    gap: 12px; }
    @media (max-width: 1099px) {
      .empty-reviews__content {
        padding: 20px 16px; } }
    @media (max-width: 767px) {
      .empty-reviews__content {
        padding: 16px 12px;
        gap: 8px; } }
  .empty-reviews__title {
    font-weight: 600; }
  .empty-reviews__bg {
    position: relative;
    width: 350px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media (max-width: 767px) {
      .empty-reviews__bg {
        width: 100%; } }
    .empty-reviews__bg:before {
      position: absolute;
      z-index: -1;
      top: 50%;
      right: -40%;
      width: 340px;
      content: '';
      transform: translateY(-50%);
      border-radius: 50%;
      background-color: #F0F2F6;
      aspect-ratio: 1/1; }
      @media (max-width: 1099px) {
        .empty-reviews__bg:before {
          right: -80%; } }
      @media (max-width: 767px) {
        .empty-reviews__bg:before {
          right: auto;
          left: 50%;
          width: 500px;
          transform: translateX(-50%); } }
    .empty-reviews__bg img {
      max-width: 100%;
      max-height: 100%;
      display: block; }
      @media (max-width: 575px) {
        .empty-reviews__bg img {
          bottom: -10%;
          right: -10%;
          width: 80%;
          transform: translateY(0); } }

.product-notification {
  margin-top: 24px; }
  .product-notification__item {
    display: flex;
    align-items: center;
    padding: 16px 0;
    gap: 16px;
    transition: color ease .3s, fill ease .3s;
    fill: #333333;
    border-bottom: 1px solid #DEDFE8; }
    @media (min-width: 1100px) {
      .product-notification__item {
        cursor: pointer; }
        .product-notification__item:hover {
          color: var(--theme-accent-color-light);
          fill: var(--theme-accent-color-light); } }
    .product-notification__item:active {
      color: var(--theme-accent-color-dark);
      fill: var(--theme-accent-color-dark); }
    @media (max-width: 767px) {
      .product-notification__item {
        padding: 14px 0;
        gap: 8px; } }
  .product-notification__title {
    display: flex;
    align-items: center;
    font-weight: 600; }
  .product-notification__left-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center; }
    @media (max-width: 767px) {
      .product-notification__left-icon {
        width: 22px;
        height: 22px; } }
  .product-notification__toggle {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
    margin-left: auto; }
    @media (max-width: 767px) {
      .product-notification__toggle {
        width: 18px;
        height: 18px; } }
    .product-notification__toggle .icon {
      transform: rotate(-90deg); }
  .product-notification__link {
    margin-top: 28px;
    text-decoration: underline;
    font-size: 14px; }
    @media (max-width: 1099px) {
      .product-notification__link {
        margin-top: 12px;
        font-size: 12px; } }
    @media (min-width: 1100px) {
      .product-notification__link {
        cursor: pointer; }
        .product-notification__link:hover {
          text-decoration: none; } }

.popup-wrapper {
  position: fixed;
  z-index: 220;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; }
  .popup-wrapper.active {
    pointer-events: auto; }
    .popup-wrapper.active .popup-bg {
      visibility: visible;
      opacity: 1; }
    .popup-wrapper.active .popup-inner {
      transform: translateX(0); }
      @media (max-width: 767px) {
        .popup-wrapper.active .popup-inner {
          transform: none; } }

.popup-bg {
  position: absolute;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: all ease .3s;
  background-color: rgba(43, 42, 41, 0.6);
  inset: 0; }

.popup-inner {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  right: 0;
  width: 570px;
  display: flex;
  flex-direction: column;
  transition: all ease .3s;
  transform: translateX(100%);
  border-radius: 8px 0 0 8px;
  background-color: #fff; }
  @media (max-width: 767px) {
    .popup-inner {
      top: 160px;
      left: 0;
      width: 100%;
      transform: translateX(0) translateY(100%); } }

.popup-header {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px; }

.popup-body {
  position: relative;
  flex-grow: 1;
  margin: 0 !important; }

.popup-content {
  position: absolute;
  overflow: auto;
  padding: 40px;
  inset: 0; }
  @media (min-width: 1100px) {
    .popup-content::-webkit-scrollbar {
      width: 4px;
      /* ширина для вертикального скролла */
      height: 4px;
      /* высота для горизонтального скролла */
      border-radius: 8px;
      background-color: #DEDFE8;
      cursor: pointer; } }
  @media (min-width: 1100px) and (max-width: 767px) and (hover: none) and (pointer: coarse) {
    .popup-content::-webkit-scrollbar {
      -ms-overflow-style: none;
      scrollbar-width: none; }
      .popup-content::-webkit-scrollbar::-webkit-scrollbar {
        display: none; } }
  @media (min-width: 1100px) {
    .popup-content::-webkit-scrollbar-thumb {
      border-radius: 8px;
      background-color: #AEB6BE; }
      .popup-content::-webkit-scrollbar-thumb:hover {
        background-color: #9A9CA1; } }
  @media (max-width: 767px) {
    .popup-content {
      padding: 24px 16px; } }
  .popup-content:has(.shop-address) .popup-content__title {
    margin-bottom: 24px; }
    @media (max-width: 767px) {
      .popup-content:has(.shop-address) .popup-content__title {
        margin-bottom: 8px; } }

.popup-content__title {
  margin-bottom: 40px;
  font-weight: 700; }
  @media (max-width: 767px) {
    .popup-content__title {
      margin-bottom: 24px; } }

.product-sale {
  position: relative; }
  .product-sale__slider {
    position: relative; }
  .product-sale__title {
    margin-bottom: 24px;
    font-weight: 600; }
    @media (max-width: 767px) {
      .product-sale__title {
        margin-bottom: 16px; } }

.slider-product-sale .swiper-container:not(.swiper-container-initialized) .product-card-wrap {
  width: 100%;
  opacity: 1;
  margin-right: 0; }

.slider-product-sale .product-slider__container.swiper-container {
  margin: -12px;
  padding: 12px; }
  @media (max-width: 1099px) {
    .slider-product-sale .product-slider__container.swiper-container {
      margin: -12px -10px;
      padding: 12px 10px; } }

.slider-product-sale .product-slider__container {
  height: auto; }

.slider-product-sale .product-card-wrap {
  width: calc(100% / 2 - (var(--margin-right) / 2));
  flex: 0 0 auto;
  --margin-right: 16px;
  margin-right: 16px; }
  @media (max-width: 1099px) {
    .slider-product-sale .product-card-wrap {
      width: 240px;
      margin-right: 12px;
      --margin-right: 12px; } }
  @media (max-width: 767px) {
    .slider-product-sale .product-card-wrap {
      margin-right: 4px;
      --margin-right: 4px; }
      .slider-product-sale .product-card-wrap:last-child {
        margin-right: 0; } }

.slider-product-sale .swiper-button-prev,
.slider-product-sale .swiper-button-next {
  top: -30px;
  left: inherit;
  width: 28px;
  height: 28px;
  transform: none; }

.slider-product-sale .swiper-button-prev {
  right: 36px; }

.slider-product-sale .swiper-button-next {
  right: 0; }

.product-sale-card {
  display: flex;
  padding: 16px;
  gap: 16px;
  transition: box-shadow ease .3s, color ease .3s;
  border-radius: 8px;
  box-shadow: 0px 2px 15px 0px rgba(6, 11, 108, 0.08); }
  @media (max-width: 767px) {
    .product-sale-card {
      padding: 12px; } }
  .product-sale-card__img {
    width: 54px;
    height: 54px;
    overflow: hidden;
    flex: 0 0 54px;
    border-radius: 50%; }
    @media (max-width: 767px) {
      .product-sale-card__img {
        width: 48px;
        height: 48px; } }
  .product-sale-card__content {
    display: flex;
    align-items: center; }
  .product-sale-card__title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3; }
  @media (min-width: 1100px) {
    .product-sale-card {
      cursor: pointer; }
      .product-sale-card:hover {
        color: var(--theme-accent-color-light);
        box-shadow: 6px 8px 10px 0px rgba(48, 64, 113, 0.15); } }
  .product-sale-card:active {
    color: var(--theme-accent-color-dark); }

.shop-address {
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px; }
  @media (max-width: 767px) {
    .shop-address {
      padding-top: 12px;
      padding-bottom: 12px; } }
  .shop-address:after {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: -40px;
    width: calc(100% + 80px);
    height: 100%;
    content: '';
    background-color: #F0F2F6; }
    @media (max-width: 767px) {
      .shop-address:after {
        left: -16px;
        width: calc(100% + 32px); } }
  .shop-address:not(:last-child) {
    border-bottom: 1px solid #DEDFE8; }
  .shop-address.folded:after {
    background-color: #fff; }
  .shop-address.folded .main-contacts {
    height: 0;
    overflow: hidden;
    margin: 8px 0 0; }
    @media (max-width: 767px) {
      .shop-address.folded .main-contacts {
        margin: 4px 0 0; } }
  .shop-address__head {
    display: flex;
    align-items: flex-start;
    gap: 16px; }
    @media (max-width: 767px) {
      .shop-address__head {
        align-items: center;
        gap: 12px; } }
  .shop-address__head-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center; }
    @media (max-width: 767px) {
      .shop-address__head-icon {
        width: 24px;
        height: 24px; } }
  .shop-address__list {
    margin-left: 44px; }
    @media (max-width: 767px) {
      .shop-address__list {
        margin-left: 36px; } }
  .shop-address .main-contacts {
    margin: 16px 0; }
    @media (max-width: 767px) {
      .shop-address .main-contacts {
        margin: 12px 0; } }
