/* ================================
   PRODUCT PAGE
================================ */

.product-page {
  padding-top: 28px;
  padding-bottom: 0;
}

.product-page .container {
  max-width: 1470px;
}

.product-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 28px;

  color: #777777;
  font-size: 13px;
  line-height: 1.3;
}

.product-breadcrumbs__link {
  color: #777777;
  text-decoration: none;
}

.product-breadcrumbs__link:hover {
  color: #b57a24;
  text-decoration: none;
}

.product-breadcrumbs__sep {
  color: #9a9a9a;
  font-size: 11px;
  line-height: 1;
}

.product-breadcrumbs__current {
  color: #555555;
}

/* ================================
   MAIN PRODUCT GRID
================================ */

.product-main {
  display: grid;
  grid-template-columns: minmax(0, 595px) minmax(0, 1fr);
  gap: 62px;
  align-items: start;

  margin-bottom: 58px;
}

.product-main>* {
  min-width: 0;
}

/* ================================
   PRODUCT GALLERY
================================ */

.product-gallery {
  width: 100%;
  max-width: 595px;
  min-width: 0;

  overflow: hidden;
}

.product-gallery__main-wrap {
  position: relative;

  width: 100%;
  max-width: 100%;
  min-width: 0;

  margin-bottom: 18px;
}

.product-gallery__main {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  overflow: hidden;

  border-radius: 3px;
  background: #f5f1ea;
}

.product-gallery__main .swiper-wrapper {
  align-items: stretch;
}

.product-gallery__main .swiper-slide {
  width: 100%;
  height: auto;
}

.product-gallery__link {
  display: block;

  width: 100%;
  aspect-ratio: 3 / 4;

  overflow: hidden;

  background: #f5f1ea;
}

.product-gallery__image {
  display: block;

  width: 100%;
  height: 100%;
  max-width: none;

  object-fit: cover;
  object-position: center top;
}

.product-gallery__zoom {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;

  padding: 0;
  border: 0;
  border-radius: 50%;

  background: #ffffff;
  color: #1e1e1e;

  font-size: 20px;
  line-height: 1;

  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

  transition:
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.product-gallery__zoom:hover {
  color: #b57a24;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

/* ================================
   PRODUCT GALLERY THUMBS
================================ */

.product-gallery__thumbs-wrap {
  position: relative;

  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;

  width: 100%;
  max-width: 100%;
  min-width: 0;

  overflow: hidden;
}

.product-gallery__thumbs {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  overflow: hidden;
}

.product-gallery__thumbs .swiper-wrapper {
  align-items: stretch;
}

.product-gallery__thumbs .swiper-slide {
  height: auto;
  min-width: 0;
}

.product-gallery__thumb {
  display: block;

  width: 100%;
  aspect-ratio: 3 / 4;

  padding: 0;

  border: 1px solid transparent;
  border-radius: 3px;

  background: #ffffff;

  overflow: hidden;
  cursor: pointer;

  transition:
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.product-gallery__thumb.is-active {
  border-color: #b57a24;
}

.product-gallery__thumb:hover {
  border-color: rgba(181, 122, 36, 0.6);
}

.product-gallery__thumb img {
  display: block;

  width: 100%;
  height: 100%;
  max-width: none;

  object-fit: cover;
  object-position: center top;
}

.product-gallery__thumb-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  padding: 0;
  border: 1px solid #e2e2e2;
  border-radius: 50%;

  background: #ffffff;
  color: #1e1e1e;

  font-size: 16px;
  line-height: 1;

  cursor: pointer;

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.product-gallery__thumb-nav:hover {
  color: #b57a24;
  border-color: #b57a24;
  background-color: #ffffff;
}

/* ================================
   PRODUCT SUMMARY
================================ */

.product-summary {
  min-width: 0;
  padding-top: 0;
}

.product-title {
  margin: 0 0 22px;

  color: #1e1e1e;

  font-size: 38px;
  line-height: 1.08;
  font-weight: 400;
  text-transform: uppercase;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;

  margin-bottom: 8px;

  color: #000000;
}

.product-price__prefix {
  color: #000000;

  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
}

.product-price__value {
  color: #000000;

  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
}

.product-price__old {
  color: #777777;

  font-size: 18px;
  line-height: 1.2;
  text-decoration: line-through;
}

.product-price-note {
  margin-bottom: 34px;

  color: #555555;

  font-size: 15px;
  line-height: 1.4;
}

.product-summary-block {
  margin-bottom: 28px;
}

.product-summary-block--material {
  display: flex;
  gap: 10px;
}

.product-summary-block--material .featured-product-card__panel-order {
  width: calc(50% - 10px);
}

.product-summary-wrapper {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}

.product-summary-block__title {
  margin-bottom: 14px;

  color: #1e1e1e;

  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.product-complect-list {
  display: flex;
  flex-direction: column;
  gap: 13px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.product-complect-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;

  color: #1e1e1e;

  font-size: 15px;
  line-height: 1.35;
}

.product-complect-list i {
  color: #b57a24;

  font-size: 23px;
  line-height: 1;
}

.product-option-prices {
  border-top: 1px solid #e4e4e4;
}

.product-option-prices__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: baseline;

  padding: 12px 0;

  border-bottom: 1px solid #e4e4e4;
}

.product-option-prices__name {
  color: #1e1e1e;

  font-size: 15px;
  line-height: 1.35;
}

.product-option-prices__value {
  color: #000000;

  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;

  white-space: nowrap;
}

.product-material {
  color: #1e1e1e;

  font-size: 15px;
  line-height: 1.45;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;

  margin-top: 32px;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 48px;
  padding: 0 22px;

  border-radius: 3px;

  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    opacity 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.product-btn--primary {
  border: 1px solid #a86c18;
  background: linear-gradient(180deg, #c69038 0%, #a86c18 100%);
  color: #ffffff;
}

.product-btn--outline {
  border: 1px solid #1e1e1e;
  background: #ffffff;
  color: #1e1e1e;
}

.product-btn:hover {
  opacity: 0.9;
}

/* ================================
   HOME CONSULT + ART BLOCK
================================ */

.special-offer {
  margin-top: 45px;
  margin-bottom: 60px;
}

.special-offer__grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.special-offer__consult {
  padding: 35px 38px;
  border: 1px solid #d9d9d9;
}

.special-offer__consult-content {
  min-width: 0;
}

.special-offer__title {
  margin: 0 0 11px;
  color: #1e1e1e;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
}

.special-offer__subtitle {
  margin: 0 0 11px;
  color: #b36c07;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  text-transform: uppercase;
}

.special-offer-wrapper {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.special-offer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.special-offer__list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 25px;
  align-items: center;
}

.special-offer__list span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 27px;
  color: #b57a24;
  font-size: 27px;
  line-height: 1;
}

.special-offer__list p {
  margin: 0;

  color: #1e1e1e;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
}

.special-offer__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  width: 100%;
}

.special-offer__form input {
  display: block;

  width: 100%;
  height: 42px;
  padding: 0 17px;

  background: #ffffff;
  border: 1px solid #d2d2d2;
  border-radius: 2px;

  color: #1e1e1e;
  font-size: 12px;
  line-height: 1.2;
  outline: none;
}

.special-offer__form input::placeholder {
  color: #9b9b9b;
}

.special-offer__form button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  width: 100%;
  height: 43px;
  padding: 0 18px;

  background: linear-gradient(180deg, #c8953e 0%, #a86c1b 100%);
  border: 1px solid #a86c1b;
  border-radius: 2px;

  color: #ffffff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;

  cursor: pointer;
}

.special-offer__form button:hover {
  background: linear-gradient(180deg, #c8953e 0%, #a86c1b 100%);
  color: #000000;
  text-decoration: none;
  opacity: 0.9;
}

.special-offer__art {
  position: relative;
  min-height: 170px;
  padding: 35px 38px;

  background-color: #111111;
  background-image:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.58) 43%,
      rgba(0, 0, 0, 0.14) 100%),
    url("../image/block-svo-bg.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  overflow: hidden;
}

.special-offer__art .line-break {
  display: block;
}

.special-offer__art-content {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  z-index: 2;
}

.special-offer__art-title {
  margin-bottom: 11px;
  font-size: 22px;
  text-transform: uppercase;
  color: #ffffff;
}

.special-offer__art-text {
  margin: 0 0 11px;
  color: #b36c07;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
  text-transform: uppercase;
}

.special-offer__art-description {
  margin: 0 0 22px;
  color: #fff;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
}

.special-offer__art-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 135px;
  min-height: 38px;
  padding: 0 24px;

  border: 1px solid #c8953e;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.22);

  color: #ffffff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.special-offer__art-btn:hover {
  background: linear-gradient(180deg, #c8953e 0%, #a86c1b 100%);
  color: #ffffff;
  text-decoration: none;
}

/* ================================
   INFO CARDS
================================ */

.product-info {
  margin-top: 0;
  margin-bottom: 60px;
}

.product-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border: 1px solid #e4e4e4;
  background: #ffffff;
}

.product-info-card {
  min-width: 0;

  padding: 34px 32px 32px;

  border-right: 1px solid #e4e4e4;
}

.product-info-card:last-child {
  border-right: 0;
}

.product-info-card__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  padding: 0;
  margin: 0 0 22px;

  border: 0;
  background: transparent;
  color: #1e1e1e;

  font-size: 20px;
  line-height: 1.15;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;

  cursor: default;
}

.product-info-card__toggle i {
  display: none;

  color: #b57a24;

  font-size: 14px;
  line-height: 1;

  transition: transform 0.2s ease;
}

.product-info-card__content {
  display: block;
}

.product-description {
  color: #555555;

  font-size: 14px;
  line-height: 1.65;
}

.product-description p {
  margin: 0 0 15px;
}

.product-description p:last-child {
  margin-bottom: 0;
}

.product-description ul {
  margin: 18px 0 0;
  padding: 0;

  list-style: none;
}

.product-description li {
  position: relative;

  margin-bottom: 12px;
  padding-left: 28px;
}

.product-description li:last-child {
  margin-bottom: 0;
}

.product-description li::before {
  content: "\f00c";

  position: absolute;
  top: 0;
  left: 0;

  color: #b57a24;

  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
}

.product-attributes {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.product-attributes__row {
  display: grid;
  grid-template-columns: auto minmax(18px, 1fr) auto;
  gap: 8px;
  align-items: baseline;

  color: #1e1e1e;

  font-size: 14px;
  line-height: 1.35;
}

.product-attributes__name {
  color: #555555;
}

.product-attributes__dots {
  border-bottom: 1px dotted #bcbcbc;
  transform: translateY(-3px);
}

.product-attributes__value {
  color: #1e1e1e;
  text-align: right;
}

.product-services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;

  margin: 0 0 24px;
  padding: 0;

  list-style: none;
}

.product-services-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  align-items: center;

  color: #1e1e1e;

  font-size: 14px;
  line-height: 1.35;
}

.product-services-list i {
  color: #b57a24;

  font-size: 26px;
  line-height: 1;
}

.product-info-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #b57a24;

  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
}

.product-info-link:hover {
  color: #1e1e1e;
  text-decoration: none;
}

.product-info-card__text {
  margin: 0 0 20px;

  color: #555555;

  font-size: 14px;
  line-height: 1.55;
}

.product-help-phone {
  display: block;

  margin-bottom: 8px;

  color: #000000;

  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
}

.product-help-phone:hover {
  color: #b57a24;
  text-decoration: none;
}

.product-help-time {
  margin-bottom: 22px;

  color: #555555;

  font-size: 14px;
  line-height: 1.4;
}

.product-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 44px;
  padding: 0 18px;

  border: 1px solid #b57a24;
  border-radius: 3px;

  background: transparent;
  color: #b57a24;

  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.product-help-btn:hover {
  background: #b57a24;
  color: #ffffff;
}

/* ================================
   RELATED PRODUCTS ON PRODUCT PAGE
================================ */

.product-related-products {
  margin-top: 0;
  margin-bottom: 60px;
}

.product-related-products .featured-products__head {
  text-align: left;
}

.product-related-products .featured-products__title::after {
  left: 0;
  transform: none;
}

.product-related-products .featured-products__slider-wrap {
  min-width: 0;
}

.product-related-products .featured-products__slider {
  min-width: 0;
  overflow: hidden;
}

/* ================================
   TABLET
================================ */

@media (max-width: 1199px) {
  .product-main {
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    gap: 38px;
  }

  .product-gallery {
    max-width: 520px;
  }

  .product-title {
    font-size: 32px;
  }

  .product-price__value {
    font-size: 34px;
  }

  .product-info-card {
    padding: 28px 24px 28px;
  }

  .product-info-card__toggle {
    font-size: 17px;
  }

  .product-services-list li {
    grid-template-columns: 26px 1fr;
  }

  .product-services-list i {
    font-size: 23px;
  }

  .special-offer__grid {
    gap: 20px;
  }

  .special-offer__consult {
    grid-template-columns: 1fr 250px;
    gap: 24px;
    padding: 25px 24px;
  }

  .special-offer__title,
  .special-offer__art-title {
    font-size: 20px;
  }

  .special-offer__art {
    padding: 32px 32px;
  }

  .special-offer__grid {
    grid-template-columns: 1fr;
  }

  .special-offer__consult {
    grid-template-columns: 1fr 300px;
  }

  .special-offer__art {
    min-height: 190px;
    background-size: contain;
  }
}

/* ================================
   TABLET SMALL
================================ */

@media (max-width: 991px) {
  .product-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-gallery {
    max-width: 595px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-summary {
    max-width: none;
  }

  .product-info__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-info-card {
    border-bottom: 1px solid #e4e4e4;
  }

  .product-info-card:nth-child(2n) {
    border-right: 0;
  }

  .product-info-card:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {
  .product-page {
    padding-top: 18px;
  }

  .product-breadcrumbs {
    gap: 7px;

    margin-bottom: 16px;

    font-size: 11px;
  }

  .product-main {
    gap: 22px;
    margin-bottom: 34px;
  }

  .product-gallery {
    max-width: 100%;
  }

  .product-gallery__main-wrap {
    margin-bottom: 13px;
  }

  .product-gallery__zoom {
    top: 16px;
    right: 16px;

    width: 42px;
    height: 42px;

    font-size: 17px;
  }

  .product-gallery__thumbs-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .product-gallery__thumb-nav {
    display: none;
  }

  .product-title {
    margin-bottom: 17px;
    font-size: 28px;
  }

  .product-price {
    margin-bottom: 6px;
  }

  .product-price__prefix {
    font-size: 20px;
  }

  .product-price__value {
    font-size: 30px;
  }

  .product-price-note {
    margin-bottom: 26px;

    font-size: 13px;
  }

  .product-summary-block {
    margin-bottom: 24px;
  }

  .product-summary-block__title {
    margin-bottom: 12px;

    font-size: 13px;
  }

  .product-complect-list {
    gap: 11px;
  }

  .product-complect-list li {
    grid-template-columns: 25px 1fr;

    font-size: 13px;
  }

  .product-complect-list i {
    font-size: 21px;
  }

  .product-option-prices__row {
    gap: 12px;
    padding: 11px 0;
  }

  .product-option-prices__name,
  .product-option-prices__value,
  .product-material {
    font-size: 13px;
  }

  .product-actions {
    gap: 10px;
    margin-top: 25px;
  }

  .product-btn {
    min-height: 50px;
  }

  .product-info {
    margin-bottom: 42px;
  }

  .product-info__grid {
    display: block;

    border: 0;
  }

  .product-info-card {
    padding: 0;

    border-right: 0;
    border-bottom: 1px solid #e4e4e4;
  }

  .product-info-card:nth-last-child(-n+2) {
    border-bottom: 1px solid #e4e4e4;
  }

  .product-info-card__toggle {
    min-height: 58px;
    margin: 0;

    font-size: 16px;

    cursor: pointer;
  }

  .product-info-card__toggle i {
    display: inline-block;
  }

  .product-info-card.is-open .product-info-card__toggle i {
    transform: rotate(180deg);
  }

  .product-info-card__content {
    display: none;
    padding: 0 0 24px;
  }

  .product-info-card.is-open .product-info-card__content {
    display: block;
  }

  .product-description,
  .product-info-card__text,
  .product-attributes__row,
  .product-services-list li {
    font-size: 13px;
  }

  .product-help-phone {
    font-size: 21px;
  }

  .product-related-products {
    margin-bottom: 42px;
  }

  .product-related-products .featured-products__slider {
    overflow: visible;
  }

  .product-related-products .featured-products__slider-wrap {
    padding-left: 42px;
    padding-right: 42px;
  }

  .product-related-products .featured-products__pagination {
    display: block;
  }

  .product-summary-block--material {
    flex-direction: column;
  }

  .product-summary-wrapper {
    width: 100%;
  }

  .product-summary-block--material .featured-product-card__panel-order {
    width: 100%;
  }

  /* .product-related-products.featured-products {
    overflow: hidden;
  } */

  .special-offer {
    margin-top: 35px;
    margin-bottom: 45px;
  }

  .special-offer .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .special-offer__grid {
    gap: 14px;
  }

  .special-offer__consult {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border: 1px solid #e4e4e4;
    padding: 18px 20px;
    min-height: 0;
    background: transparent;
  }

  .special-offer__title {
    margin-bottom: 11px;
    font-size: 17px;
    line-height: 1.08;
  }

  .special-offer__subtitle {
    margin-bottom: 11px;
    font-size: 16px;
    line-height: 1.35;
  }

  .special-offer-wrapper {
   flex-wrap: wrap; 
  }

  .special-offer__list {
    gap: 12px;
  }

  /* .special-offer__list li {
    grid-template-columns: 18px 1fr;
    gap: 7px;
  } */

  /* .special-offer__list span {
    width: 18px;
    height: 18px;
    font-size: 14px;
  } */

  /* .special-offer__list p {
    font-size: 10px;
  } */

  .special-offer__form {
    gap: 8px;
    margin-top: 0;
  }

  .special-offer__form input {
    height: 43px;
    padding: 0 12px;
    font-size: 14px;
  }

  .special-offer__form button {
    height: 43px;
    /* font-size: 9px; */
  }

  .special-offer__art {
    min-height: 112px;
    padding: 18px 20px;

    background-image:
      linear-gradient(90deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.68) 43%,
        rgba(0, 0, 0, 0.08) 100%),
      url("../image/block-svo-bg.png");
    background-position: center right;
    background-size: contain;
  }

  .special-offer__art-content {
    max-width: 210px;
  }

  .special-offer__art-title {
    margin-bottom: 11px;
    font-size: 15px;
    line-height: 1.08;
  }

  .special-offer__art-text {
    margin-bottom: 11px;
    font-size: 16px;
    line-height: 1.35;
  }

  .special-offer__art-btn {
    min-width: 82px;
    min-height: 24px;
    padding: 0 12px;
    font-size: 8px;
  }

}

/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 374px) {
  .product-title {
    font-size: 25px;
  }

  .product-price__value {
    font-size: 27px;
  }

  .product-option-prices__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-option-prices__value {
    white-space: normal;
  }

  .product-info-card__toggle {
    font-size: 15px;
  }

  .product-related-products.featured-products {
    overflow: hidden;
  }

  .special-offer__art .line-break {
    display: none;
  }

  .special-offer__title {
    font-size: 18px;
  }

  .special-offer__subtitle {
    font-size: 16px;
  }
  
  .special-offer__consult {
    padding: 16px 16px;
  }

  .special-offer__art {
    padding: 16px 16px;
  }

  /* .special-offer__art-content {
    max-width: 195px;
  } */

  .special-offer__art-title {
    font-size: 18px;
  }

  /* .special-offer__art-text {
    font-size: 8px;
  } */
}