

/* Start:/local/templates/mobility_shop/assets/css/product-item.css?177195185311631*/
.product {
  margin-top: 40px;
}
.product-gallery__img {
  text-align: center;
  position: relative;
}
.product-gallery__img .product-discount {
  font-weight: 600;
  color: #ffffff;
  background: #df0614;
  padding: 4px 4px;
  position: absolute;
  top: 0;
  left: 0;
}
.product-gallery__img img {
  height: 440px;
  object-fit: cover;
}
.product-gallery__thumbs-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.product-gallery__list {
  display: flex;
  gap: 12px;
  overflow: hidden;
  flex: 1;
}
.product-gallery__list > div {
  flex: 0 0 calc((100% - 12px * 4) / 5);
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.product-gallery__list > div.active, .product-gallery__list > div:hover {
  opacity: 1;
}
.product-gallery__list > div.active {
  border-color: var(--ms-color-accent);
}
.product-gallery__list > div.hidden {
  display: none;
}
.product-gallery__list > div img {
  border-radius: 5px;
  height: 85px;
  width: 100%;
  object-fit: cover;
}

.product-info__top .product-article {
  color: #828282;
}
.product-info__top .product-favorite {
  display: flex;
  gap: 4px;
  align-items: center;
  cursor: pointer;
}
.product-info__top .product-favorite img {
  width: 20px;
  height: 20px;
}
.product-info__reviews {
  display: flex;
  align-items: flex-end;
  margin-top: 20px;
  gap: 12px;
  color: #828282;
  line-height: 20px;
}
.product-info__price {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 40px;
}
.product-info__price > span {
  font-weight: 600;
  font-size: 30px;
}
.product-info__price .old-price {
  font-size: 18px;
  text-decoration-line: line-through;
  color: #828282;
  font-weight: 300;
}
.product-info__models {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.product-info__models .product-model {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-info__models .product-model.--color .param-item {
  border: 2px solid #f2f2f2;
  border-radius: 50%;
  padding: 4px;
  cursor: pointer;
}
.product-info__models .product-model.--color .param-item.active {
  border-color: var(--ms-color-accent);
}
.product-info__models .product-model.--color .param-item.disabled {
  opacity: 0.35;
  pointer-events: none;
}
.product-info__models .product-model.--color .param-item > div {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}
.product-info__models .product-model__params {
  display: flex;
  gap: 10px;
}
.product-info__models .product-model__params .param-item {
  background: #f2f2f2;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.product-info__models .product-model__params .param-item.active {
  border: 2px solid var(--ms-color-accent);
}
.product-info__models .product-model__params .param-item.disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
.product-info .product-actions {
  width: 410px;
  max-width: 100%;
  margin-top: 40px;
}
.product-info .product-actions__basket {
  display: flex;
  gap: 15px;
}
.product-info .product-actions__basket .basket-count {
  display: flex;
  gap: 3px;
  flex: 50%;
}
.product-info .product-actions__basket .basket-count span {
  display: inline-flex;
  flex: 50%;
  height: 50px;
  background: #f2f2f2;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
}
.product-info .product-actions__basket .basket-count button {
  flex: 25%;
  height: 50px;
  background: var(--ms-color-accent);
  border-radius: 6px;
  color: #ffffff;
  font-weight: 600;
}
.product-info .product-actions__basket .basket-add {
  flex: 50%;
  color: #ffffff;
  background: var(--ms-color-accent);
  border-radius: 8px;
}
.product-info .product-actions__buy {
  background: #f2f2f2;
  border-radius: 6px;
  height: 50px;
  width: 100%;
  margin-top: 12px;
}
.product-info .product-actions__city {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  cursor: pointer;
}
.product-info .product-actions__city > div {
  color: #828282;
  font-size: 15px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.product-info .product-actions__delivery {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-info .product-actions__delivery .delivery-item {
  display: flex;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #eaeaea;
  gap: 12px;
}
.product-info .product-actions__delivery .delivery-item__icon {
  width: 48px;
  height: 24px;
}
.product-info .product-actions__delivery .delivery-item__icon img {
  width: 100%;
  height: auto;
}
.product-info .product-actions__delivery .delivery-item__info {
  flex: 70%;
}
.product-info .product-actions__delivery .delivery-item__info .delivery-title {
  font-weight: 600;
  font-size: 15px;
}
.product-info .product-actions__delivery .delivery-item__info .delivery-description {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  margin-top: 4px;
}
.product-info .product-actions__delivery .delivery-item__price {
  margin-left: auto;
}

.nav-tabs {
  margin-bottom: 40px;
  border: 0;
}
.nav-tabs .nav-link, .nav-tabs .nav-link > span {
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  color: #8b8d92;
  font-family: "Nunito Sans", serif;
  border: 0;
}
.nav-tabs .nav-link.active {
  border-bottom: 2px solid var(--ms-color-text);
}
.nav-tabs .nav-link.active, .nav-tabs .nav-link.active > span {
  color: var(--ms-color-text);
}

.characteristics-list {
  width: 50%;
}
.characteristics-list .characteristic-item {
  display: flex;
  padding: 12px 30px;
  justify-content: space-between;
}
.characteristics-list .characteristic-item:nth-child(odd) {
  background-color: #f2f2f2;
}
.characteristics-list .characteristic-item__value {
  font-weight: 600;
}

.tab-content ul {
  padding-left: 20px;
  list-style-type: disc;
}
.tab-content h1,
.tab-content h2,
.tab-content h3,
.tab-content h4,
.tab-content h5,
.tab-content h6 {
  margin: 25px 0;
  font-weight: 700;
}

.gallery-arrow {
  background: none;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}
.gallery-arrow:hover {
  border-color: var(--ms-color-accent);
}
.gallery-arrow img {
  width: 16px;
  height: 16px;
}

.reviews-star img {
  width: 18px;
  height: 18px;
}

.reviews-section {
  max-width: 700px;
}

.reviews-empty {
  color: #828282;
  padding: 20px 0;
}

.review-item {
  padding: 20px 0;
  border-bottom: 1px solid #eaeaea;
}
.review-item__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-item__header strong {
  font-size: 16px;
}
.review-item__date {
  color: #828282;
  font-size: 13px;
}
.review-item__stars {
  margin-top: 8px;
}
.review-item__stars img {
  width: 16px;
  height: 16px;
}
.review-item__text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.review-form {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eaeaea;
}
.review-form h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
}
.review-form__field {
  margin-bottom: 16px;
}
.review-form__stars img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.review-form .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  width: 100%;
  transition: border-color 0.2s ease;
}
.review-form .form-control:focus {
  outline: none;
  border-color: var(--ms-color-accent);
}
.review-form textarea.form-control {
  resize: vertical;
}
.review-form .btn {
  color: #ffffff;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  border: 0;
}

.review-form-wrap {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eaeaea;
}
.review-form-wrap h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
}

.review-form__field {
  margin-bottom: 16px;
}
.review-form__field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.review-form__actions {
  margin-top: 20px;
}

.review-form__message {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
}
.review-form__message--success {
  background: #e8f5e9;
  color: #2e7d32;
}
.review-form__message--error {
  background: #fce4ec;
  color: #c62828;
}

#reviews .ms-star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}
#reviews .ms-star-rating img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: transform 0.15s ease;
}
#reviews .ms-star-rating img:hover {
  transform: scale(1.15);
}

.similar-products {
  margin-top: 100px;
}

@media screen and (max-width: 991px) {
  .product {
    margin-top: 30px;
  }
  .product > .col-6,
  .product > .col-5 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .product-gallery__img img {
    height: 320px;
    width: 100%;
    object-fit: contain;
  }
  .product-info {
    margin-top: 30px;
  }
  .product-info__top {
    flex-wrap: wrap;
    gap: 8px;
  }
  .product-info__price {
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .product-info__models {
    gap: 20px;
  }
  .product-info__models .product-model {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-info__models .product-model__params {
    flex-wrap: wrap;
  }
  .product-info .product-actions {
    width: 100%;
  }
  .characteristics-list {
    width: 100%;
  }
  .similar-products {
    margin-top: 60px;
  }
  .nav-tabs .nav-link, .nav-tabs .nav-link > span {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .product-gallery__img img {
    height: 260px;
  }
  .product-gallery__thumbs-wrap {
    gap: 4px;
  }
  .product-gallery__list > div img {
    height: 60px;
  }
  .product-info__reviews {
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    line-height: normal;
  }
  .product-info__price {
    gap: 8px;
  }
  .product-info__price > span {
    font-size: 26px;
    line-height: 1.2;
  }
  .product-info__price .old-price {
    font-size: 14px;
  }
  .product-info__models {
    margin-top: 30px;
    gap: 20px;
  }
  .product-info .product-actions {
    margin-top: 30px;
  }
  .product-info .product-actions__basket {
    flex-direction: column;
    gap: 12px;
  }
  .product-info .product-actions__basket .basket-count,
  .product-info .product-actions__basket .basket-add {
    flex: auto;
    width: 100%;
  }
  .product-info .product-actions__basket .basket-count span,
  .product-info .product-actions__basket .basket-count button {
    height: 46px;
  }
  .product-info .product-actions__basket .basket-add {
    text-align: center;
    justify-content: center;
    padding: 12px;
  }
  .nav-tabs {
    margin-bottom: 30px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .nav-tabs .nav-link, .nav-tabs .nav-link > span {
    font-size: 16px;
    white-space: nowrap;
  }
  .characteristics-list .characteristic-item {
    padding: 8px 16px;
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .similar-products {
    margin-top: 40px;
  }
  .reviews-section {
    max-width: 100%;
  }
  .review-form .btn {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .product-info__price > span {
    font-size: 24px;
  }
  .product-gallery__img img {
    height: 200px;
  }
  .gallery-arrow {
    width: 32px;
    height: 32px;
  }
}

/*# sourceMappingURL=product-item.css.map */

/* End */
/* /local/templates/mobility_shop/assets/css/product-item.css?177195185311631 */
