.product {
  overflow: hidden;
}
.product__container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 0 60px;
}
.product__imgs {
  width: 37.8%;
}
.product__imgs-main {
  margin-bottom: 10px;
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--secondary-ui-light-grey, #f3f4f6);
  overflow: hidden;
  min-height: 500px;
}

.review__link .icon {
  display: none;
}

.product-slider {
  aspect-ratio: 65/58;
  border-radius: 20px;
  overflow: hidden;
}
.product-slider__item {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-slider__actions {
  position: absolute;
  width: calc(100% - 40px);
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: end;
  justify-content: space-between;
  z-index: 2;
}
.product-slider__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-thumbs {
  display: flex;
}
.product-thumbs.slick-slider {
  display: block;
}
.product-thumbs .slick-list {
  margin-left: -4px;
}
.product-thumbs .slick-list .slick-track {
  margin-left: 0;
}
.product-thumbs__wrap {
  position: relative;
}
.product-thumbs__wrap::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 100%;
  right: -1px;
  top: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.product-thumb {
  width: 103px;
  height: 100%;
  border-radius: 16px;
  border: 1px solid var(--secondary-ui-light-grey, #f3f4f6);
  overflow: hidden;
  margin: 0 4px;
  aspect-ratio: 104.26/93;
  cursor: pointer;
}
.product-thumbs.slick-slider .product-thumb {
  width: 100%;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.product-thumb.slick-current {
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #883be1, #ff69a4) border-box;
}
.product-thumb.slick-current img {
  opacity: 0.4;
}
.product-thumb:hover img {
  opacity: 0.4;
}

.product-slider__dots .slick-dots {
  padding: 0;
  gap: 12px;
}
.product-slider__dots .slick-dots button {
  width: 4px;
  height: 4px;
  background: #7d7e88;
}
.product-slider__dots .slick-dots .slick-active {
  width: 4px;
  height: 4px;
}
.product-slider__dots .slick-dots .slick-active button {
  background: #ffb143;
  opacity: 1;
}

.product__imgs-main .card__labels {
  top: 20px;
  left: 20px;
}

.product__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product__header-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #f3f4f6;
}

.product__brand {
  width: 91px;
  height: 51px;
  border: 1px solid #f3f4f6;
  border-radius: 10px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: .3s;
}

.product__brand:hover {
  border-color: #f00a6e;
}

.product__brand-name {
  text-align: center;
}

.product__brand img {
  width: 68px;
  height: auto;
  max-height: 90%;
}

.product__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.product__stars {
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.product__reviews-link {
  font-size: 12px;
  line-height: 1.4;
  color: #49536c;
  border-bottom: 1px dashed rgba(73, 83, 108, 0.3);
}

.product__reviews-link:hover {
  color: var(--primary-brand-pink, #f00a6e);
  border-color: var(--primary-brand-pink, #f00a6e);
}

.product__article {
  font-size: 13px;
  line-height: 1.3;
  opacity: 0.6;
}

.product__description {
  font-size: 15px;
  line-height: 1.4;
  padding-bottom: 20px;
}

.product__info .product__description {
  border-bottom: 1px solid #f3f4f6;
}

.product__tabs-wrap .product__description {
  border-bottom: none;
  padding-bottom: 0;
}

.product__specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product__spec {
  display: flex;
  align-items: center;
  gap: 11px;
}

.product__spec-label {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  white-space: nowrap;
}

.product__spec-dots {
  flex: 1;
  height: 1px;
  border-bottom: 1px dashed #7d7e88;
  opacity: 0.3;
}

.product__spec-value {
  font-size: 14px;
  line-height: 1.3;
  color: #7d7e88;
  white-space: nowrap;
}

.product__show-all {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: #49536c;
  border-bottom: 1px dashed rgba(73, 83, 108, 0.3);
  align-self: flex-start;
  margin-top: 4px;
}

.product__show-all:hover {
  color: var(--primary-brand-pink, #f00a6e);
  border-color: var(--primary-brand-pink, #f00a6e);
}

.product__sidebar {
  width: 24.3%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product__purchase {
  background-color: #f3f4f6;
  border-radius: 18px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product__purchase-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.product__price-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product__old-price-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.product__old-price {
  font-size: 17px;
  line-height: 1.4;
  color: #7d7e88;
  text-decoration: line-through;
}

.product__discount {
  background-color: #5cb975;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.49;
  font-weight: 600;
  padding: 1px 3px 2px;
  border-radius: 5px;
}

.product__price {
  font-size: 36px;
  line-height: 1.07;
  font-weight: 600;
  color: #292a35;
}

.product__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product__btn {
  width: 100%;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  gap: 8px;
}

.product__btn--cart {
  box-shadow: 0 0 34px rgba(0, 0, 0, 0.08);
}

.product__btn--quick {
  padding: 16px 25px;
  background: linear-gradient(#f3f4f6, #f3f4f6) padding-box, linear-gradient(90deg, #883be1, #ff69a4) border-box;
}

.product__btn--consult {
  border: 1px solid transparent;
  background: linear-gradient(#fff3ee, #fff3ee) padding-box, linear-gradient(90deg, #883be1, #ff69a4) border-box;
  color: #f00a6e;
  padding: 13px 14px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  width: max-content;
  position: relative;
  z-index: 1;
}
.product__btn--consult span {
  color: #f00a6e;
}

.product__buttons {
  display: flex;
  gap: 7px;
  transform: translate(5px, -5px);
}

.product__icon-btn {
  width: 36px;
  aspect-ratio: 1;
  border: 1px solid #ebedf2;
  border-radius: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product__icon-btn svg {
  opacity: 0.5;
  display: block;
}

.product__icon-btn:hover {
  background-color: #ffffff;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid transparent;
}
.product__icon-btn:hover svg {
  opacity: 1;
}

.product__availability {
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product__stores {
  display: flex;
  flex-direction: column;
  gap: 11px;
  position: relative;
}
.product__stores:before {
  content: "";
  width: 100%;
  height: 55px;
  position: absolute;
  bottom: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  left: 0;
}

.product__store {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}

.product__store-info {
  display: flex;
  gap: 6px;
  align-items: start;
  flex: 1;
}
.product__store-info svg {
  opacity: 0.3;
  flex-shrink: 0;
}

.product__store-address {
  font-size: 14px;
  line-height: 1.3;
  color: #292a35;
}

.product__store-stock {
  background-color: #ffffff;
  padding: 1px 5px 1px;
  border-radius: 6px;
  font-size: 11px;
  line-height: 1.49;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.product__store-stock--high {
  border: 1px solid #5cb975;
  color: #5cb975;
}

.product__store-stock--medium {
  border: 1px solid #ffb143;
  color: #ffb143;
}

.product__store-stock--low {
  border: 1px solid #f00a6e;
  color: #f00a6e;
}

.product__show-all-stores {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: #49536c;
  text-decoration: none;
  border-bottom: 1px dashed rgba(73, 83, 108, 0.3);
  align-self: flex-start;
}

.product__show-all-stores:hover {
  color: var(--primary-brand-pink, #f00a6e);
  border-color: var(--primary-brand-pink, #f00a6e);
}

.product__help {
  background-color: #fff3ee;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  position: relative;
}

.product__help-title {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
  max-width: 205px;
  position: relative;
  z-index: 1;
}

.product__help-icon {
  width: 57%;
  height: auto;
  position: absolute;
  bottom: 0;
  right: -22px;
}

.product__tabs-content {
  flex-grow: 1;
}

.product__tabs {
  display: flex;
  align-items: stretch;
  gap: 39px;
  align-self: stretch;
  border-top: 1px solid var(--secondary-ui-light-grey, #f3f4f6);
  border-bottom: 1px solid var(--secondary-ui-light-grey, #f3f4f6);
}
.product__tab {
  display: flex;
  padding: 20px 0;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
  position: relative;
}
.product__tab span {
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 23.8px */
  transition: 0.3s;
  white-space: nowrap;
  color: var(--secondary-ui-black, #292a35);
}
.product__tab::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="104" height="3" viewBox="0 0 104 3" fill="none" preserveAspectRatio="none"><path d="M0.948096 1.44111C1.49234 0.546242 2.46389 0 3.51127 0H100.489C101.536 0 102.508 0.54624 103.052 1.44111L104 3H0L0.948096 1.44111Z" fill="%23F00A6E"/></svg>') center center/100% 100% no-repeat;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}
.product__tab:hover span {
  color: var(--primary-brand-pink, #f00a6e);
}
.product__tab:hover .icon {
  background-color: #f00a6e;
  opacity: 1;
}
.product__tab.active::after {
  opacity: 1;
}
.product__tab.active span {
  color: var(--primary-brand-pink, #f00a6e);
}
.product__tab.active .icon {
  background-color: #f00a6e;
  opacity: 1;
}
.product__tab-icon {
  width: 22px;
  aspect-ratio: 1;
  background-color: #292a35;
  opacity: 0.3;
  flex-shrink: 0;
}
.product__reviews-quant {
  color: var(--secondary-ui-dark-grey, #7d7e88);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  margin-bottom: 6px;
}

.product__subtitle {
  margin-bottom: 15px;
}
.product__about-text p:not(:first-child) {
  margin-top: 10px;
}
.product__tab-about {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product__subtitle-reviews {
  display: flex;
  gap: 9px;
}
.product__subtitle-reviews .product__subtitle {
  margin-bottom: 0;
}
.product__subtitle-reviews .product__reviews-quant {
  margin-bottom: 0;
  margin-top: 7px;
}

.reviews-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.reviews-top .product__subtitle {
  margin-bottom: 0;
}

.reviews-rating {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.reviews-rating__quant {
  color: var(--Black, #232126);
  font-family: "Golos Text";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 106%; /* 44.52px */
}
.reviews-rating__label {
  color: var(--secondary-ui-dark-grey, #7d7e88);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 16.9px */
  margin-bottom: 5px;
}
.reviews-rating__stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.reviews__head-info .reviews-rating__quant {
  font-size: 49px;
}

.reviews-rating__right {
  margin-top: 4px;
}

.reviews__list {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 15px;
}

.review {
  border-radius: 12px;
  border: 1px solid var(--secondary-ui-light-grey, #f3f4f6);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.03);
  padding: 25px;
  width: 100%;
}
.review__header {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 900px;
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #883be1, #ff69a4) border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 63px;
  aspect-ratio: 1;
  position: relative;
  flex-shrink: 0;
}
.review__avatar img {
  width: 55px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.review__avatar span {
  color: var(--primary-brand-pink, #f00a6e);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 29px */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.review__name {
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%; /* 27.55px */
  margin-bottom: 2px;
}
.review__date {
  color: var(--secondary-ui-dark-grey, #7d7e88);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 16.9px */
}
.review__rating {
  display: flex;
  align-items: center;
  gap: 11px;
}
.review__rating-text {
  color: var(--secondary-ui-dark-grey, #7d7e88);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 16.9px */
}
.review__rating-text span {
  color: var(--secondary-ui-black, #292a35);
}
.review__stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.review__content {
  margin-top: 10px;
}
.review__text {
  opacity: 0.8;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 21px */
}
.review__gallery {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.review__gallery img {
  border-radius: 12px;
  width: 65px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

.reviews-all {
  display: flex;
  padding: 13px 14px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 10px;
  background: var(--secondary-ui-light-grey, #f3f4f6);
  margin-top: 15px;
  width: max-content;
}
.reviews-all__icon {
  width: 20px;
  height: 20px;
  background-color: var(--secondary-ui-blue, #49536c);
  transition: 0.3s;
}
.reviews-all span {
  color: var(--secondary-ui-blue, #49536c);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 18.2px */
  transition: 0.3s;
}
.reviews-all:hover .reviews-all__icon {
  background-color: #fff;
}

.product__content {
  display: flex;
  gap: 40px;
  align-items: start;
  padding: 60px 0;
}

.buy-with {
  width: 523px;
}
.buy-with .card {
  margin-bottom: 15px;
}

.buy-with__slider > .slick-list .slick-track {
  margin-left: 0;
}

.buy-with__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.similar-products {
  padding-bottom: 80px;
}

.recomm-products {
  padding-bottom: 80px;
}

.product-quant__block {
  display: none;
}

.product__btn-add {
  display: none;
}

.product__actions-top_add {
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}
.product__actions-top_add .product-quant__block {
  display: block;
}
.product__actions-top_add .product__btn {
  background: var(--secondary-ui-green, #5cb975);
  pointer-events: none;
}
.product__actions-top_add .product__btn span {
  display: none;
}
.product__actions-top_add .product__btn-add {
  display: block;
}
.product__actions-top_add .product-quant__btn {
  border: none;
}

.panel-prod__btns .product-quant__btn {
  background: var(--secondary-ui-light-grey, #f3f4f6);
}

.product-share__mob {
  display: none;
}

@media (max-width: 1620px) {
  .product__content {
    gap: 30px;
  }

  .product__imgs-main {
    min-height: 24vw;
  }
}
@media (max-width: 1480px) {
  .product__actions-top_add {
    flex-direction: column;
    gap: 8px;
    align-items: start;
  }
  .product__actions-top_add .product-quant__block {
    display: flex;
    gap: 8px;
    align-items: center;
  }
}
@media (max-width: 1400px) {
  .product__imgs {
    width: 28.8%;
  }
  .product__container {
    gap: 20px;
  }
  .product__sidebar {
    width: 26%;
  }
  .buy-with {
    width: 468px;
  }
}
@media (max-width: 1150px) {
  .product__purchase {
    display: none;
  }
  .product__sidebar {
    width: 100%;
  }
  .product__container {
    flex-wrap: wrap;
  }
  .product__help-icon {
    width: auto;
    height: 113%;
  }
  .product__imgs {
    width: 35.8%;
  }
  .product__content {
    flex-direction: column;
    gap: 50px;
    padding: 40px 0 50px;
  }
  .buy-with {
    width: 100%;
  }
  .product__tab span {
    font-size: 16px;
  }
  .similar-products {
    padding-bottom: 40px;
  }
  .recomm-products {
    padding-bottom: 40px;
  }
  .views_pt {
    padding-top: 30px;
  }
  .product-slider__actions {
    bottom: 15px;
  }
  .product__header-info {
    column-gap: 10px;
    flex-wrap: wrap;
  }
  .product__header-info .product__article {
    margin-left: auto;
  }
  .product-share__mob {
    display: flex;
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .product__imgs-main {
    min-height: 34vw;
  }
}
@media (max-width: 800px) {
  .product__imgs {
    width: 48%;
  }
  .product__container {
    gap: 10px;
  }

  .product__imgs-main {
    min-height: 46vw;
  }
}
@media (max-width: 576px) {
  .product {
    overflow: hidden;
  }
  .product__container {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }
  .product__imgs {
    width: 100%;
  }
  .product__imgs-main {
    margin-bottom: 10px;
  }
  .product-slider {
    aspect-ratio: 250/223;
    border-radius: 12px;
  }
  .product-slider__actions {
    width: auto;
    bottom: 10px;
  }
  .product-slider__controls {
    display: none;
  }
  .product-thumbs .slick-list {
    margin-left: -4px;
    overflow: visible;
  }
  .product-thumbs__wrap::after {
    right: -17px;
  }
  .product-thumb {
    border-radius: 12px;
    aspect-ratio: 10/9;
  }
  .product__info {
    gap: 15px;
  }
  .product__header-info {
    justify-content: start;
    gap: 20px;
    padding-bottom: 5px;
    border-bottom: none;
  }
  .product__brand {
    width: 97px;
    height: 39px;
  }
  .product__brand img {
    width: 57px;
  }
  .product__article {
    margin-top: 4px;
  }
  .product__description {
    font-size: 14px;
    line-height: 1.3;
    margin-top: 5px;
  }
  .product__spec-label {
    font-size: 13px;
  }
  .product__sidebar {
    width: 100%;
  }
  .product__price-block {
    flex-direction: column-reverse;
  }
  .product__old-price {
    font-size: 12px;
  }
  .product__discount {
    font-size: 10px;
    padding: 1px 3px;
  }
  .product__price {
    font-size: 17px;
    line-height: 1.4;
  }
  .product__actions {
    flex-direction: row;
    gap: 4px;
  }
  .product__btn {
    width: auto;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.4;
    gap: 5px;
  }
  .product__btn--cart {
    box-shadow: none;
    max-width: 121px;
    width: 100%;
  }
  .product__btn--quick {
    border: 1px solid var(--secondary-ui-light-grey, #f3f4f6);
    background: transparent;
    padding: 11px;
  }
  .product__btn--quick span {
    display: none;
  }
  .product__btn--consult {
    padding: 10px 11px;
    font-size: 12px;
    line-height: 140%;
    box-shadow: none;
  }
  .product__buttons {
    display: none;
  }
  .product__availability {
    padding: 16px;
    gap: 15px;
  }
  .product__store-address {
    font-size: 13px;
  }
  .product__help {
    padding: 16px;
  }
  .product__help-title {
    font-size: 16px;
    line-height: 1.3;
    max-width: 190px;
  }
  .product__help-icon {
    width: 189px;
    height: auto;
    right: -22px;
  }
  .product__tab::after {
    height: 4px;
  }
  .product__tabs {
    gap: 25px;
  }
  .product__tab {
    padding: 14px 0;
  }
  .product__tab span {
    font-size: 15px;
    line-height: 135%; /* 23.8px */
  }
  .product__tab::after {
    width: calc(100% + 13px);
    left: 50%;
    transform: translateX(-50%);
  }
  .product__tab-icon {
    width: 18px;
  }
  .product__reviews-quant {
    margin-bottom: 0px;
  }
  .product__subtitle {
    margin-bottom: 10px;
  }
  .product__about-text p:not(:first-child) {
    margin-top: 6px;
  }
  .product__subtitle-reviews {
    gap: 6px;
  }
  .reviews-top {
    flex-direction: column;
    align-items: start;
    margin-bottom: 10px;
  }
  .reviews-rating__quant {
    font-size: 33px;
  }
  .reviews-rating__label {
    font-size: 12px;
    line-height: 140%; /* 16.9px */
    margin-bottom: 0px;
  }
  .reviews__list {
    gap: 10px;
  }
  .review {
    padding: 16px;
  }
  .review__avatar {
    width: 50px;
  }
  .review__avatar img {
    width: 42px;
  }
  .review__avatar span {
    font-size: 18px;
  }
  .review__name {
    font-size: 16px;
    line-height: 130%; /* 27.55px */
  }
  .review__date {
    font-size: 12px;
    line-height: 140%; /* 16.9px */
  }
  .review__rating {
    flex-direction: column;
    align-items: start;
    gap: 1px;
  }
  .review__stars {
    gap: 0px;
  }
  .review__content {
    margin-top: 8px;
  }
  .review__text {
    font-size: 14px;
    line-height: 130%; /* 21px */
  }
  .review__gallery {
    margin-top: 8px;
    gap: 8px;
  }
  .review__gallery img {
    border-radius: 10px;
    width: 49px;
    height: 53px;
  }
  .reviews-all {
    padding: 10px 11px;
    gap: 5px;
    margin-top: 10px;
  }
  .reviews-all__icon {
    width: 18px;
    height: 18px;
  }
  .reviews-all span {
    font-size: 12px;
    line-height: 140%; /* 18.2px */
  }
  .product__content {
    flex-direction: column;
    gap: 40px;
    padding: 0;
    padding-top: 20px;
  }
  .buy-with {
    width: 100%;
  }
  .buy-with .card {
    margin-bottom: 0;
  }
  .buy-with__top {
    margin-bottom: 15px;
  }
  .similar-products {
    padding-bottom: 0;
    padding-top: 40px;
  }
  .recomm-products {
    padding-bottom: 40px;
    padding-top: 40px;
  }
  .product__title {
    margin-bottom: 7px;
  }

  .product__imgs-main {
    min-height: 95vw;
  }
}
.reviews__head {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: start;
  margin-bottom: 25px;
}

.reviews__imgs {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews__imgs img {
  width: 65px;
  height: 70px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
.reviews__imgs-all {
  width: 65px;
  height: 70px;
  border-radius: 12px;
  border: 1px dashed rgba(73, 83, 108, 0.17);
  display: flex;
  width: 65px;
  height: 70px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.reviews__imgs-all .icon {
  width: 16px;
  height: 16px;
  background-color: #49536c;
}
.reviews__imgs-all span {
  color: var(--secondary-ui-blue, #49536c);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
  transition: 0.3s;
}
.reviews__imgs-all:hover {
  border-color: var(--primary-brand-pink, #f00a6e);
}
.reviews__imgs-all:hover span {
  color: var(--primary-brand-pink, #f00a6e);
}
.reviews__imgs-all:hover .icon {
  background-color: var(--primary-brand-pink, #f00a6e);
}
.reviews__view {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.reviews__show {
  color: var(--secondary-ui-dark-grey, #7d7e88);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 16.9px */
}

.reviews__head-info {
  display: flex;
  align-items: stretch;
  gap: 15px;
  align-self: stretch;
}
.reviews__head-info .reviews-rating {
  flex-shrink: 0;
}
.reviews__info-item {
  display: flex;
  padding: 22px 25px;
  align-items: start;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid var(--secondary-ui-light-grey, #f3f4f6);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}
.reviews__item-icon1 {
  position: absolute;
  width: 100px;
  height: auto;
  left: 0;
  top: 0;
  z-index: -1;
}
.reviews__strong {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 26.1px */
}
.reviews__item-icon2 {
  position: absolute;
  width: 85px;
  height: auto;
  left: 0px;
  top: 0px;
  z-index: -1;
}
.reviews__add {
  width: 100%;
  max-width: 272px;
}
.reviews__add .btn {
  box-shadow: none;
  width: 100%;
  white-space: nowrap;
  height: 100%;
  border-radius: 10px;
}
.reviews__item-icon3 {
  position: absolute;
  width: 87px;
  height: auto;
  left: 0;
  top: 0;
  z-index: -1;
}

.reviews-descr {
  display: flex;
  gap: 20px;
  flex-grow: 1;
}
.reviews-descr__left {
  display: flex;
  gap: 10px;
  align-items: start;
}
.reviews-descr__left .reviews-rating__label {
  margin-bottom: 0;
}
.reviews-descr__text {
  padding-left: 20px;
  border-left: 1px solid var(--secondary-ui-light-grey, #f3f4f6);
  color: var(--secondary-ui-dark-grey, #7d7e88);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 18.2px */
  padding-top: 3px;
  padding-bottom: 3px;
}
.reviews-descr__text span {
  font-weight: 600;
}

.reviews__pagination {
  margin-top: 25px;
}

.availability__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 29px;
}
.availability__top .btn {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #883be1, #ff69a4) border-box;
  color: var(--secondary-ui-black, #292a35);
}
.availability__top .btn:hover {
  background: transparent;
}

.product__stores-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product__subtitle_avail {
  margin-bottom: 0;
}

@media (max-width: 1620px) {
  .reviews__info-item {
    padding: 12px 12px;
    gap: 5px;
  }
  .reviews-descr__text {
    display: none;
  }
  .reviews-descr {
    flex-grow: 0;
  }
  .reviews__head-info {
    flex-wrap: wrap;
  }
}
@media (max-width: 1380px) {
  .reviews__imgs img:nth-child(8),
  .reviews__imgs img:nth-child(9),
  .reviews__imgs img:nth-child(10),
  .reviews__imgs img:nth-child(11) {
    display: none;
  }
}
@media (max-width: 1150px) {
  .tab__content {
    width: 100%;
  }
  .product__tabs-content {
    width: 100%;
  }
  .buy-with__slider > .slick-list {
    margin: 0 -8px;
  }
  .buy-with__slider .card {
    margin: 0 8px;
  }
  .store__phone {
    margin-top: 4px;
  }
  .reviews__head-info {
    flex-wrap: wrap;
  }
}
@media (max-width: 760px) {
  .store__shedule {
    flex-direction: column;
    gap: 1px;
    align-items: start;
  }
}
@media (max-width: 576px) {
  .availability__top {
    flex-direction: column;
    align-items: start;
    gap: 6px;
    margin-bottom: 15px;
  }
  .store {
    flex-direction: column;
    align-items: stretch;
  }
  .store .product__availability-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .store__info {
    gap: 10px;
  }
  .reviews__imgs-wrap {
    position: relative;
    width: 100%;
  }
  .reviews__imgs-wrap::after {
    content: "";
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
    width: 39px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -16px;
    pointer-events: none;
    z-index: 1;
  }
  .reviews__head {
    gap: 15px;
    margin-bottom: 10px;
  }
  .reviews__head .reviews-rating__quant {
    font-size: 30px;
  }
  .product__subtitle_review {
    margin-bottom: 0;
  }
  .reviews__strong {
    font-size: 15px;
    line-height: 125%;
  }
  .reviews__head-info {
    gap: 15px 8px;
  }
  .reviews-rating__stars svg {
    width: 16px;
  }
  .reviews-descr {
    flex-grow: 1;
  }
  .reviews__add {
    max-width: 100%;
  }
  .reviews__imgs {
    gap: 8px;
  }
  .reviews__imgs img {
    width: 53px;
    height: 57px;
    border-radius: 10px;
  }
  .reviews__imgs-all {
    width: 53px;
    height: 57px;
    border-radius: 10px;
    padding: 8px;
  }
  .reviews__show {
    display: none;
  }
  .reviews__view .custom-select {
    width: 100%;
  }
  .reviews__view .custom-select .current {
    width: 100%;
  }
  .tab__content .reviews__list {
    gap: 15px;
  }
  .reviews__pagination {
    margin-top: 15px;
  }
  .buy-with .slider__controls-mob {
    margin-top: 15px;
  }
}
.modal__container_review {
  width: 791px;
}

.write-review__title {
  max-width: 640px;
  margin-bottom: 20px;
}
.write-review__title span {
  color: var(--secondary-ui-dark-grey, #7d7e88);
}
.write-review__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.write-review__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.write-review__star {
  width: 40px;
  height: auto;
  fill: #7d7e88;
  fill-opacity: 0.2;
}
.write-review__value {
  color: var(--Black, #232126);
  font-size: 49px;
  font-style: normal;
  font-weight: 600;
  line-height: 106%; /* 51.94px */
}
.write-review__text {
  min-height: 105px;
  resize: vertical;
}
.write-review__file-label {
  border-radius: 10px;
  border: 1px dashed #d2d5ed;
  display: flex;
  padding: 15px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  transition: 0.3s;
  cursor: pointer;
}
.write-review__file-label:hover {
  border-color: var(--primary-brand-pink, #f00a6e);
}
.write-review__file {
  display: none;
}
.write-review__file-icon {
  width: 37px;
  height: auto;
  margin-bottom: 16px;
}
.write-review__file-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  margin-bottom: 4px;
}
.write-review__file-subtitle {
  color: var(--secondary-ui-dark-grey, #7d7e88);
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 16.9px */
  opacity: 0.5;
  margin-bottom: 16px;
}
.write-review__file-btn {
  display: flex;
  padding: 7px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  border: 1px solid var(--secondary-ui-light-grey, #f3f4f6);
}
.write-review__file-btn span {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 16.9px */
  opacity: 0.8;
}
.write-review__btn .icon {
  background-color: #fff;
  mask-image: url("../img/icons/arrow-up-right.svg");
  -webkit-mask-image: url("../img/icons/arrow-up-right.svg");
  width: 22px;
  aspect-ratio: 1/1;
}

.teaxtarea__symbols {
  margin-top: 4px;
  text-align: right;
  color: var(--secondary-ui-dark-grey, #7d7e88);
  text-align: right;
  font-family: "Golos Text";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 14.3px */
  opacity: 0.5;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-direction: row-reverse;
  cursor: pointer;
}

.rating-input__item:hover path,
.rating-input__item:hover ~ .rating-input__item path,
.review-rating[data-total-rating="1"]:not(:hover) .rating-input__item:nth-child(n+5) path,
.review-rating[data-total-rating="2"]:not(:hover) .rating-input__item:nth-child(n+4) path,
.review-rating[data-total-rating="3"]:not(:hover) .rating-input__item:nth-child(n+3) path,
.review-rating[data-total-rating="4"]:not(:hover) .rating-input__item:nth-child(n+2) path,
.review-rating[data-total-rating="5"]:not(:hover) .rating-input__item:nth-child(n+1) path {
  fill: #ffb143;
  fill-opacity: 1;
}

.review-rating[data-total-rating="1"]:not(:hover) .rating-input__item:nth-child(n+5) span,
.review-rating[data-total-rating="2"]:not(:hover) .rating-input__item:nth-child(n+4) span,
.review-rating[data-total-rating="3"]:not(:hover) .rating-input__item:nth-child(n+3) span,
.review-rating[data-total-rating="4"]:not(:hover) .rating-input__item:nth-child(n+2) span,
.review-rating[data-total-rating="5"]:not(:hover) .rating-input__item:nth-child(n+1) span,
.rating-input__item:hover span,
.rating-input__item:hover ~ .rating-input__item span {
  fill: #7d7e88;
  fill-opacity: 0.2;
}

.review-file {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 15px;
}
.review-file__item {
  border-radius: 7px;
  display: flex;
  padding: 12px;
  align-items: center;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  background: #f0f3f6;
}
.review-file__item--success {
  background: #f9fff9;
}
.review-file__item--error {
  background: #fff5f5;
}
.review-file__item--error .review-file__name {
  opacity: 0.8;
  color: var(--primary-brand-red, #fd6f70);
}
.review-file__item--error .review-file__size {
  color: var(--primary-brand-red, #fd6f70);
}
.review-file__item--error img {
  border-radius: none;
}
.review-file__item--error .review-file__progress {
  background: #fee0e0;
}
.review-file__item--error .review-file__progress-bar {
  background: var(--primary-brand-red, #fd6f70);
}
.review-file__image {
  width: 34px;
  height: 34px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 6px;
}
.review-file__name {
  opacity: 0.8;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 18.2px */
  margin-bottom: 2px;
}
.review-file__btn {
  width: 16px;
  height: auto;
  margin-left: auto;
  opacity: 0.5;
  transition: 0.3s;
  flex-shrink: 0;
  padding: 0;
}
.review-file__btn svg {
  display: block;
}
.review-file__btn:hover {
  opacity: 1;
}
.review-file__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.review-file__size {
  opacity: 0.7;
  color: var(--secondary-ui-dark-grey, #7d7e88);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.22px;
}
.review-file__separator {
  display: block;
  width: 3px;
  height: 3px;
  background: var(--secondary-ui-dark-grey, #7d7e88);
  border-radius: 50%;
}
.review-file__status {
  display: flex;
  align-items: center;
  gap: 2px;
}
.review-file__status img {
  width: 12px;
  height: 12px;
}
.review-file__status span {
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.22px;
  opacity: 0.7;
}
.review-file__progress {
  position: absolute;
  background: #e4e9ef;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
}
.review-file__progress-bar {
  border-radius: 900px;
  background: var(--secondary-ui-green, #5cb975);
  height: 4px;
}

.write-review__file-more_btn {
  display: flex;
  padding: 7px 10px;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  align-self: stretch;
  border-radius: 6px;
  border: 1px solid var(--secondary-ui-light-grey, #f3f4f6);
  margin-bottom: 6px;
  transition: 0.3s;
  cursor: pointer;
}
.write-review__file-more-input {
  display: none;
}
.write-review__file-more_btn span {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 16.9px */
  opacity: 0.8;
}
.write-review__file-more_btn img {
  width: 16px;
  height: 16px;
}
.write-review__file-more_btn:hover {
  border-color: #f00a6e;
}

.write-review__file-label_items {
  display: flex;
  max-height: 181px;
  padding: 15px 5px 0 15px;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  align-self: stretch;
  border-radius: 10px;
  border: 1px dashed #d2d5ed;
  background: var(--secondary-ui-white, #fff);
}
.write-review__file-content {
  overflow-y: auto;
  max-height: 100%;
  padding-right: 5px;
}
.write-review__file-content::-webkit-scrollbar {
  width: 5px;
}
.write-review__file-content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 5px;
}
.write-review__file-content::-webkit-scrollbar-thumb {
  background: rgba(41, 42, 53, 0.3);
  border-radius: 5px;
}
.write-review__file-content * {
  scrollbar-width: thin;
  scrollbar-color: rgba(41, 42, 53, 0.3) transparent;
}

.write-review__file-label_items_error {
  border-color: var(--primary-brand-red, #fd6f70);
}

.review-rating__error svg path {
  fill: rgba(253, 111, 112, 0.08);
}

.modal__success-icon {
  width: 62px;
  height: auto;
  margin-bottom: 20px;
}

.write-review__success .write-review__title {
  max-width: 100%;
}

.write-review__not-auth__btn {
  margin-top: 8px;
}

.write-review__not-auth .notice {
  margin-right: 25px;
}

.modal__container_gallery {
  max-width: 1599px;
  width: calc(100vw - 40px);
}

.gallery__content {
  overflow: hidden;
}
.gallery__title {
  margin-bottom: 20px;
}
.gallery__main-wrap {
  margin-bottom: 20px;
  position: relative;
}
.gallery__main {
  width: 945px;
  height: 676px;
  margin: 0 auto;
}
.gallery__main .slick-list {
  margin: 0 -5px;
  height: 100%;
}
.gallery__main .slick-track {
  height: 100%;
}
.gallery__item {
  position: relative;
  margin: 0 5px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.gallery__item-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.gallery__item .review__name {
  color: var(--secondary-ui-white, #fff);
}
.gallery__item .review__date {
  color: var(--secondary-ui-white, #fff);
}
.gallery__review-info {
  position: absolute;
  padding: 20px 25px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  left: 0;
  bottom: 0;
}
.gallery__main-controls {
  position: absolute;
  width: 1203px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gallery__thumb {
  overflow: hidden;
}
.gallery__thumb .slick-list {
  margin: 0 -5px;
}
.gallery__thumb-wrap {
  position: relative;
  overflow: hidden;
}
.gallery__thumb-wrap::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 100%;
  left: -20px;
  top: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.gallery__thumb-wrap::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 100%;
  right: -20px;
  top: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.gallery__thumb-img {
  cursor: pointer;
  margin: 0 5px;
  border-radius: 12px;
  overflow: hidden;
  height: 83px;
  border: 1px solid transparent;
}
.gallery__thumb-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery__thumb-img.slick-current {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #883be1, #ff69a4) border-box;
}

.panel-prod {
  background: var(--secondary-ui-white, #fff);
  box-shadow: 0 -1px 27px 0 rgba(0, 0, 0, 0.14);
  padding: 9px 0;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
}
.panel-prod__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.panel-prod__left {
  display: flex;
  align-items: center;
}
.panel-prod__img {
  width: 64px;
  flex-shrink: 0;
  aspect-ratio: 64/57;
  border-radius: 12px;
  border: 1px solid var(--secondary-ui-light-grey, #f3f4f6);
  background: #fff;
  margin-right: 11px;
}
.panel-prod__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.panel-prod__name {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 18.2px */
  margin-bottom: 4px;
}
.panel-prod__right {
  display: flex;
  gap: 15px;
  align-items: center;
}
.panel-prod__old-price-row {
  display: flex;
  align-items: center;
  gap: 5px;
}
.panel-prod__old-price {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 16.9px */
  text-decoration-line: line-through;
  color: var(--secondary-ui-dark-grey, #7d7e88);
  white-space: nowrap;
}
.panel-prod__discount {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 149%; /* 17.88px */
  display: flex;
  padding: 1px 3px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: var(--secondary-ui-green, #5cb975);
  color: #fff;
  white-space: nowrap;
}
.panel-prod__price {
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 107%; /* 22.47px */
  white-space: nowrap;
}
.panel-prod__btns {
  display: flex;
  align-items: center;
  gap: 8px;
}
.panel-prod__add {
  box-shadow: none;
}
.panel-prod__click {
  padding-left: 19px;
  padding-right: 19px;
  box-shadow: none;
}
.panel-prod__click .icon {
  display: none;
}
.panel-prod__fav {
  display: flex;
  padding: 15px;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid var(--secondary-ui-light-grey, #f3f4f6);
}
.panel-prod__fav .icon {
  background-color: #7d7e88;
  mask-image: url("../img/icons/heart-filled.svg");
  -webkit-mask-image: url("../img/icons/heart-filled.svg");
  width: 16px;
  aspect-ratio: 1/1;
  opacity: 0.5;
}
.panel-prod__fav:hover {
  border-color: var(--primary-brand-pink, #f00a6e);
}
.panel-prod__fav:hover .icon {
  background-color: var(--primary-brand-pink, #f00a6e);
  opacity: 1;
}
.panel-prod__fav.fav-active .icon {
  opacity: 1;
  background: radial-gradient(ellipse 80% 68% at 50% 88%, #fdd796 0%, rgba(255, 147, 83, 0) 100%), linear-gradient(135deg, #883be1, #ff69a4);
}

@media (max-width: 790px) {
  .panel-prod__left {
    display: none;
  }
  .panel-prod__right {
    width: 100%;
    justify-content: space-between;
  }
  .panel-prod {
    padding: 9px 0 58px;
  }
  .panel-prod__old-price {
    font-size: 12px;
  }
  .panel-prod__discount {
    font-size: 10px;
  }
  .panel-prod__price {
    font-size: 17px;
    font-weight: 500;
  }
  .panel-prod__fav {
    padding: 11px;
  }
  .panel-prod__click {
    padding: 11px;
    border: 1px solid var(--secondary-ui-light-grey, #f3f4f6);
    background: transparent;
  }
  .panel-prod__click span {
    display: none;
  }
  .panel-prod__click .icon {
    display: block;
    background-color: #7d7e88;
    mask-image: url("../img/icons/click.svg");
    -webkit-mask-image: url("../img/icons/click.svg");
    width: 16px;
    aspect-ratio: 1/1;
  }
  .panel-prod__click:hover {
    border-color: var(--primary-brand-pink, #f00a6e);
  }
  .panel-prod__click:hover .icon {
    background-color: var(--primary-brand-pink, #f00a6e);
  }
}
@media (max-width: 1300px) {
  .gallery__main-controls {
    display: none;
  }
}
@media (max-width: 1150px) {
  .write-review__star {
    width: 32px;
  }
  .write-review__file-icon {
    width: 30px;
    margin-bottom: 10px;
  }
  .write-review__file-label {
    padding: 10px;
  }
  .write-review__form {
    gap: 10px;
  }
  .write-review__text {
    min-height: 80px;
  }
  .write-review__file-title {
    font-size: 14px;
    padding-right: 29px;
  }
  .write-review__value {
    font-size: 40px;
  }
  .modal__container_review {
    width: calc(100% - 32px);
  }
  .write-review__title {
    padding-right: 29px;
  }
  .write-review__not-auth .notice {
    margin-right: 38px;
  }
  .gallery__main-controls {
    display: none;
  }
  .gallery__main {
    width: 100%;
    aspect-ratio: 4/3;
    height: auto;
    max-height: 500px;
  }
}
@media (max-width: 576px) {
  .write-review__file-icon {
    width: 37px;
    margin-bottom: 16px;
  }
  .write-review__file-label {
    padding: 15px;
  }
  .write-review__form {
    gap: 15px;
  }
  .write-review__file-title {
    font-size: 16px;
    text-align: center;
  }
  .write-review__value {
    font-size: 32px;
  }
  .write-review__btn {
    width: 100%;
  }
  .star__error {
    width: 32px;
    height: 32px;
  }
  .write-review__text {
    min-height: 105px;
  }
  .write-review__not-auth .notice {
    margin-right: 0;
    margin-top: 34px;
    padding: 25px;
  }
  .write-review__not-auth .notice .notice-title {
    font-size: 16px;
  }
  .write-review__not-auth__btn {
    width: 100%;
  }
  .modal__success-icon {
    width: 46px;
    margin-bottom: 15px;
  }
  .gallery__main {
    height: auto;
    width: auto;
    border-radius: 16px;
  }
  .gallery__main > .slick-list {
    overflow: visible;
  }
  .gallery__item {
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
  }
  .gallery__thumb-img {
    height: auto;
    margin: 0 4px;
  }
  .gallery__thumb .slick-list {
    margin: 0 -4px;
    overflow: visible;
  }
  .gallery__thumb {
    overflow: visible;
  }
  .gallery__main-wrap {
    margin-bottom: 15px;
  }
  .gallery__thumb-wrap {
    overflow: visible;
  }
  .gallery__review-info {
    padding: 12px;
  }
  .modal__container_gallery {
    overflow: hidden;
  }
  .gallery__content {
    overflow: visible;
  }
  .gallery__thumb-wrap::before {
    left: -16px;
  }
  .gallery__thumb-wrap::after {
    right: -16px;
  }
  .gallery__item .review__avatar {
    width: 39px;
  }
  .gallery__item .review__avatar img {
    width: 34px;
  }
  .gallery__item .review__avatar span {
    font-size: 12px;
  }
  .gallery__item .review__author {
    gap: 8px;
  }
  .gallery__item .review__name {
    font-size: 15px;
  }
  .review__link {
    padding: 2px 4px;
    border-radius: 900px;
  }
  .review__link span {
    display: none;
  }
  .review__link .icon {
    display: block;
    background-color: #7d7e88;
    mask-image: url("../img/icons/chevron-right-thin.svg");
    -webkit-mask-image: url("../img/icons/chevron-right-thin.svg");
    width: 18px;
    height: 18px;
    aspect-ratio: auto;
  }
  .gallery__review-info {
    justify-content: start;
    align-items: end;
    gap: 8px;
  }
}
.modal__container_quick {
  width: calc(100vw - 40px);
  max-width: 797px;
}

.quick {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quick__product {
  display: flex;
  padding-bottom: 20px;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  border-bottom: 1px solid var(--secondary-ui-light-grey, #f3f4f6);
}
.quick__product-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.quick__product-img {
  border-radius: 12px;
  border: 1px solid var(--secondary-ui-light-grey, #f3f4f6);
  position: relative;
  width: 142px;
  height: 142px;
}
.quick__product-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  align-self: stretch;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 26.1px */
  margin: 5px 0 15px;
}
.quick__product-avail {
  display: flex;
  align-items: center;
  gap: 4px;
}
.quick__product-avail span {
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 16.9px */
}
.quick__product-stores {
  border-radius: 6px;
  border: 1px dashed var(--secondary-ui-blue, #49536c);
  display: flex;
  padding: 3px 6px;
  justify-content: center;
  align-items: center;
  color: var(--secondary-ui-blue, #49536c);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 16.9px */
}
.quick__product-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.quick__product-quant {
  display: flex;
  align-items: center;
  gap: 15px;
}
.quick__quant-label {
  color: var(--secondary-ui-dark-grey, #7d7e88);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
}
.quick__old-price {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 21px */
  text-decoration-line: line-through;
  color: var(--secondary-ui-dark-grey, #7d7e88);
  white-space: nowrap;
}
.quick__discount {
  display: flex;
  padding: 1px 3px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: var(--secondary-ui-green, #5cb975);
  color: var(--secondary-ui-white, #fff);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 149%; /* 16.39px */
  white-space: nowrap;
}
.quick__price {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 29px */
  white-space: nowrap;
}

.quick__contacts {
  display: flex;
  gap: 20px;
}
.quick__contacts .field {
  flex: 1 1 0;
}
.quick__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}
.quick__bottom .form__agreement {
  flex: 1 1 0;
}
.quick__bottom .quick__btn {
  flex: 1 1 0;
}

@media (max-width: 1150px) {
  .quick__product-quant {
    flex-direction: column;
    gap: 3px;
  }
  .modal__container_quick {
    width: calc(100vw - 32px);
  }
  .quick__product-img {
    width: 120px;
    height: 120px;
  }
  .quick__product-title {
    font-size: 16px;
    margin-bottom: 7px;
  }
  .quick__product-avail {
    flex-direction: column;
    gap: 3px;
    align-items: start;
  }
}
@media (max-width: 576px) {
  .quick__contacts {
    flex-direction: column;
    gap: 15px;
  }
  .quick__bottom {
    flex-direction: column;
    gap: 15px;
  }
  .quick__product {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
  .quick {
    gap: 15px;
  }
  .quick__product-avail {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }
  .quick__price-block {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .quick__price {
    font-size: 17px;
    font-weight: 500;
  }
  .quick__old-price {
    font-size: 12px;
  }
  .quick__quant-label {
    display: none;
  }
  .product-quant__btn {
    border-radius: 8px;
    padding: 7px;
  }
  .product-quant__btn .icon {
    width: 13px;
  }
  .quick__product-title {
    font-size: 14px;
    margin: 5px 0;
  }
  .quick__product-right {
    gap: 26px;
  }
  .modal__container_quick {
    padding-top: 32px;
  }
  .quick__bottom .quick__btn {
    flex: auto;
    width: 100%;
  }
  .quick__product-img {
    width: 84.081px;
    height: 84.081px;
  }
  .quick__product-left {
    gap: 10px;
  }
  .quick__product-stores {
    font-size: 12px;
    padding: 1px 4px;
  }
  .quick__product-avail span {
    font-size: 12px;
  }
}
.modal__container_quick-success {
  width: 100%;
  max-width: 319px;
}
.modal__container_quick-success .modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal__container_quick-success .quick-success__title {
  text-align: center;
  margin-bottom: 20px;
}
.modal__container_quick-success .modal__descr {
  text-align: center;
}
.modal__container_quick-success .quick-success__btn {
  width: 100%;
}

.modal__success-icon_min {
  width: 34px;
  aspect-ratio: 1/1;
  margin-bottom: 20px;
}

.breadcrumbs_product {
  margin-top: 30px;
}

.empty-reviw__btn {
  margin-top: 4px;
}

@media (max-width: 576px) {
  .modal__container_quick-success {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }
  .modal__container_quick-success .quick-success__title {
    margin-bottom: 10px;
  }
  .modal__container_quick-success .modal__descr {
    text-align: center;
  }
  .modal__container_quick-success .quick-success__btn {
    width: 100%;
  }
  .modal__success-icon_min {
    margin-bottom: 10px;
  }
  .product__tab-about .product__description {
    padding-bottom: 0;
  }
  .product__spec-value {
    font-size: 13px;
  }
  .review__stars {
    gap: 1px;
  }
  .review__stars svg {
    width: 14px;
    height: auto;
  }
  .product__about-block .reviews__list {
    gap: 10px;
  }
  .reviews-all {
    width: 100%;
  }
  .breadcrumbs_product {
    margin-top: 20px;
  }
  .product__imgs-main .card__labels {
    top: 10px;
    left: 10px;
  }
  .product__subtitle-reviews .product__reviews-quant {
    margin-top: 0;
  }
  .reviews__head-info .reviews-rating__stars {
    gap: 0;
  }
  .reviews-descr__left {
    gap: 5px;
  }
  .reviews__add .btn {
    font-size: 12px;
  }
  .reviews__pagination {
    justify-content: center;
  }
  .notice_empty-review .notice-text {
    font-size: 14px;
  }
}
.product__blur {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10.5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.product__blur-text {
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 26.1px */
  margin-bottom: 12px;
  max-width: 248px;
}
.product__blur-btn {
  padding: 13px 18px;
}
.product__blur-btn span {
  font-size: 14px;
  line-height: 130%;
}

@media (max-width: 1150px) {
  .product__blur-text {
    font-size: 16px;
    margin-bottom: 8px;
    max-width: 235px;
  }
  .product__blur-btn span {
    font-size: 13px;
  }
}