.home {
  padding: 118px 0 56px;
}

.home h1 {
  margin: 0 0 16px;
}

.home .box-text {
  font-size: var(--fs-md);
}

.home-wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  padding: 30px 32px 24px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--dk-soft);
}

.home-wrapper::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 248px;
  height: 84px;
  background: url("../img/home-decor.svg") no-repeat center;
  background-size: 100%;
  z-index: -1;
}

.home-wrapper__content {
  width: calc(100% - 256px);
}

.home-wrapper__icons {
  max-width: 256px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 -16px;
}

.home-wrapper__icon {
  margin: 0 0 16px 0;
  width: 120px;
  height: 120px;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dk-white);
  border-radius: var(--radius-2xl);
  padding: 10px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.home-wrapper__icon img {
  max-height: 100%;
}

.home-wrapper__icon:nth-last-child(1),
.home-wrapper__icon:last-child {
  margin-bottom: 0;
}

.home-wrapper__icon-key {
  background: transparent;
  box-shadow: none;
}

.slogans-products-item2 {
  background: var(--dk-soft);
}

.slogans-products-item2,
.slogans-products-item3 {
  height: auto;
}

.slogans-products-item__image {
  position: absolute;
  right: 40px;
  bottom: 0;
  max-width: 580px;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link {
  text-align: right;
  display: flex;
  align-items: center;
  color: var(--dk-text);
}

.link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin: 0 0 0 4px;
  stroke: var(--dk-text);
}

.advantages {
  margin: 40px 0 0;
  padding: 88px 0 89px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: radial-gradient(31.3% 49.2% at 61.09% 50.05%, rgba(124, 13, 198, 0.28) 0%, rgba(255, 255, 255, 0) 100%);
}

.advantages h2 {
  top: 120px;
  position: sticky;
  max-width: 460px;
}

.advantages-list {
  margin: 0 0 0 auto;
  max-width: 769px;
  width: calc(100% - 500px);
}

.advantages-box {
  width: 100%;
  background: var(--dk-white);
  margin: 0 0 35px;
  padding: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
}

.advantages-box__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--dk-soft);
  padding: 5px;
}

.advantages-box__text {
  width: calc(100% - 40px);
  padding: 0 0 0 32px;
}

.advantages-box h3 {
  margin: 0 0 6px;
}

.advantages-box:last-child {
  margin: 0;
}

/* Старая карточка товара (.product-card __head/__footer/__avialability/.new-price/.btn и т.п.) удалена: живая карточка рендерится dk_render_product_card() на новых BEM-классах, стили — в product-card.css (грузится последним, перекрывает). Старая разметка осталась только в закомментированном блоке index.php. */

.chats-link {
  display: flex;
  align-items: center;
  color: var(--dk-text);
}

.chats-link svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  fill: var(--dk-grey-500);
  margin: 0 3px 0 0;
}

.chats-link:hover {
  color: var(--dk-dark);
}

.timer-card {
  width: 100%;
  height: 100%;
  color: var(--dk-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(to right, rgb(24, 24, 27) 0%, rgb(52, 42, 65));
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.timer-card h4 {
  margin: 20px auto 0;
  font-size: var(--fs-md);
}

.progress-timer {
  width: 100%;
  height: 266px;
  margin: 0 auto auto;
  position: relative;
  z-index: 1;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: var(--dk-dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.progress-timer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  transform: translate(-50%, -50%);
  z-index: -1;
  background: linear-gradient(to bottom, rgb(52, 42, 65) 0%, rgb(24, 24, 27) 100%);
  border-radius: 50%;
}

.countdown-time {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-weight: var(--fw-regular);
  font-size: var(--fs-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.labelformat {
  width: 100%;
}

.timerDisplay {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timerDisplay .displaySection {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 65px;
  position: relative;
}

.timerDisplay .displaySection::after {
  content: ":";
  position: absolute;
  top: -1px;
  right: 0;
  color: var(--dk-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timerDisplay .displaySection:last-child::after {
  display: none;
}

.displaySection {
  font-size: var(--fs-xl);
  border: none;
  font-family: "Inter", sans-serif;
}

.periodDisplay {
  margin: 8px auto 0;
  color: var(--dk-grey-500);
  font-size: var(--fs-sm);
  text-transform: lowercase;
}

.numberDisplay {
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
}

.progress-timer__circle {
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  margin: auto;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.progress-timer__circle::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--dk-dark);
  width: 23px;
  height: 23px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid var(--dk-dark);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes width {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

.feedback-section {
  margin: 0 0 40px;
}

.link-text-show {
  display: flex;
  align-items: center;
  margin: 8px 0 0;
}

.link-text-show svg {
  fill: none;
  stroke: currentColor;
  margin: 0 0 0 8px;
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.link-text-show.click svg {
  transform: rotate(180deg);
}

.reviews .box-text {
  font-size: var(--fs-md);
  max-width: 633px;
}

.reviews .box-text .link-reviews-page {
  text-decoration: none;
}

.reviews .box-text .color-blue {
  color: var(--dk-blue);
}

.reviews .box-text .color-blue:hover {
  color: var(--dk-dark);
}

.reviews-section__nav {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.reviews-section__nav .rating {
  font-weight: var(--fw-medium);
  font-size: var(--fs-lg);
  justify-content: flex-end;
}

.reviews-section__nav .rating svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
}

.reviews-section__nav .btn {
  margin: auto 0 0 auto;
}

.reviews-gallery {
  width: 100%;
  margin: 40px 0 32px;
  display: flex;
  align-items: flex-start;
}

.reviews-gallery__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0 8px 8px 0;
}

.reviews-gallery__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.btn-all-photo {
  height: 96px;
  background: transparent;
  padding: 10px 14px;
}

.product-slider {
  position: relative;
  overflow: hidden;
}

.product-pagination-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  position: absolute;
  left: 0;
  bottom: 0;
}

.product-pagination-image a {
  flex: 1;
  height: 100%;
}

.price-wrapper {
  white-space: nowrap;
}

.price {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--dk-dark);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.old-price {
  text-decoration-line: line-through;
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  color: var(--dk-grey-500);
  margin: 0 8px 0 0;
}

.sale-price {
  color: var(--dk-error);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
}

.sale-price span {
  font-weight: var(--fw-regular);
  font-size: var(--fs-sm);
}

.new-price {
  color: var(--dk-dark);
}

.product-status-next {
  background: var(--dk-error);
  color: var(--dk-white);
  padding: 7px 12px;
  font-size: var(--fs-xs);
  border-radius: var(--radius-sm);
}

.promo-label {
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  padding: 8.5px 10px;
  line-height: normal;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
}

.promo-label img {
  margin: 0 4px 0 0;
  width: 14px;
}

.promo-label-hit {
  background: var(--dk-soft);
  color: var(--dk-text);
}

.promo-label-sale {
  background: var(--dk-soft);
  color: var(--dk-text);
}

.promo-label-list {
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.promo-label-list li {
  margin: 0 8px 5px 0;
}

.promo-label-list li:last-child {
  margin: 0 0 5px;
}

.hits-section {
  padding: 64px 0 88px;
}

.discount-section {
  overflow: hidden;
}

.discount-section .row-scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
}

.discount-section .product-card,
.discount-section .timer-card {
  min-width: 230px;
}

.popular-articles,
.for-business {
  overflow: hidden;
}

.for-business .row-scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
}

.for-business .product-card {
  min-width: 230px;
}

.news-card {
  width: 100%;
  line-height: var(--lh-body);
}

.news-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 240px;
  border-radius: var(--radius-sm);
}

.news-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.news-card__body {
  width: 100%;
  padding: 16px 0 0;
}

.news-card__title {
  color: var(--dk-dark);
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  margin: 16px 0 8px;
}

.news-card:hover .news-card__title {
  color: var(--dk-dark);
}

.date {
  color: var(--dk-grey-500);
  width: 100%;
}

.seo-section {
  margin: 0 0 120px;
}

.seo-section h2 {
  font-size: var(--fs-2xl);
}

.seo-section .box-text {
  font-size: var(--fs-sm);
  line-height: var(--lh-body);
  position: relative;
  z-index: 1;
}

.seo-section .box-text.open {
  height: auto;
  overflow: visible;
}

.seo-section .box-text.open::before {
  opacity: 0;
}

.page {
  padding: 118px 0 0;
}

.page.close-special {
  padding: 136px 0 0;
}

.page-catalog-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.page-catalog-wrapper h1 {
  display: flex;
  align-items: center;
}

.page-catalog-content {
  width: calc(100% - 310px);
  padding: 0 0 0 35px;
}

.download-button {
  width: 100%;
  padding: 0;
  height: 40px;
  margin: 20px 0;
}

.sidebar {
  border: 1.3px solid var(--dk-grey-bg);
  border-radius: var(--radius-sm);
  max-width: 310px;
  width: 100%;
  padding: 24px 0;
  line-height: var(--lh-body);
}

.sidebar__head {
  padding: 0 24px;
  margin: 0 0 16px;
}

.sidebar-menu li {
  margin: 0;
}

.sidebar-menu li:last-child {
  margin: 0;
}

.sidebar-menu li a {
  color: var(--dk-text);
}

.sidebar-menu li a:hover {
  color: var(--dk-dark);
}

.sidebar-menu li a:hover .dropdown-toggle__icon {
  stroke: var(--dk-dark);
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 8px 24px;
  width: 100%;
}

.dropdown-toggle__icon {
  stroke: var(--dk-text);
  fill: none;
  width: 16px;
  height: 16px;
  margin: 0 0 0 8px;
  transition: transform 0.2s ease, stroke 0.15s ease;
}

.dropdown.open>.dropdown-toggle {
  color: var(--dk-dark);
}

.dropdown.open>.dropdown-toggle>.dropdown-toggle__icon {
  stroke: var(--dk-dark);
  transform: rotate(180deg);
}

.dropdown-menu {
  margin: 8px 0 0;
  display: none;
}

.dropdown-menu .dropdown-item {
  padding: 8px 10px 8px 32px;
  width: 100%;
}

/* Общие стили для dropdown-item - переопределяются для меню каталога ниже */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item.active {
  background: var(--dk-border);

}

.dropdown-menu .dropdown-item.active {
  font-weight: var(--fw-semibold);
}

.dropdown-catalog .btn-catalog.open .btn-catalog__icon {
  display: none;
}

.dropdown-catalog .btn-catalog.open .btn-catalog__icon-close {
  display: flex;
}

.dropdown-catalog .dropdown-menu {
  margin: 5px 0 0;
  overflow: hidden;
}

/* Старые стили для обратной совместимости - переопределяются в .dropdown-menu-catalog */
.dropdown-catalog .sidebar-menu li {
  margin: 0 0 8px;
}

.dropdown-catalog .sidebar-menu li:last-child {
  margin: 0;
}

.dropdown-catalog .sidebar-menu li .dropdown-item {
  padding-left: 32px;
}

.dropdown-catalog .sidebar-menu li .dropdown-menu {
  margin: 0;
}

.dropdown-menu-catalog {
  position: absolute;
  border: 1px solid var(--dk-border);
  border-radius: var(--radius-md);
  background: var(--dk-white);
  z-index: 10;
  min-width: 270px;
  padding: 20px 0;
}

/* Стили для меню каталога как в профиле */
.dropdown-menu-catalog .sidebar-menu li {
  margin: 0 0 4px;
  position: relative;
}

.dropdown-menu-catalog .sidebar-menu li:last-child {
  margin: 0;
}

.dropdown-menu-catalog .sidebar-menu li a {
  display: flex;
  align-items: center;
  padding: 10px 24px;
  width: 100%;
  color: var(--dk-text);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease, fill 0.2s ease;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.dropdown-menu-catalog .sidebar-menu li a:hover {
  background: var(--dk-border);
  color: var(--dk-text);
}

.dropdown-menu-catalog .sidebar-menu li.active a {
  background: var(--dk-border);
  color: var(--dk-text);
  font-weight: var(--fw-semibold);
}

.dropdown-menu-catalog .sidebar-menu li a span {
  pointer-events: none;
}

.dropdown-menu-catalog .dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 10px 24px;
  width: 100%;
  color: var(--dk-text);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease, fill 0.2s ease;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  border: none;
}

.dropdown-menu-catalog .dropdown-toggle:hover {
  background: var(--dk-border);
  color: var(--dk-text);
}

.dropdown-menu-catalog .dropdown-toggle:hover .dropdown-toggle__icon {
  stroke: var(--dk-text);
}

.dropdown-menu-catalog .dropdown.open>.dropdown-toggle {
  background: var(--dk-border);
  color: var(--dk-text);
  font-weight: var(--fw-semibold);
}

.dropdown-menu-catalog .dropdown.open>.dropdown-toggle>.dropdown-toggle__icon {
  stroke: var(--dk-text);
  transform: rotate(180deg);
}

.dropdown-menu-catalog .dropdown-menu {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.dropdown-menu-catalog .dropdown-menu .dropdown-item {
  padding: 8px 24px 8px 40px;
  color: var(--dk-text);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease, fill 0.2s ease;
  display: block;
}

.dropdown-menu-catalog .dropdown-menu .dropdown-item:hover,
.dropdown-menu-catalog .dropdown-menu .dropdown-item.active {
  background: var(--dk-border);
  color: var(--dk-text);
}

.btn-toggle-sidebar {
  margin: 0 0 0 8px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--dk-dark);
}

.page-information h1 {
  margin: 0 0 24px;
}

.page-information .box-text a {
  display: initial;
  text-decoration: underline;
  color: var(--dk-dark);
}

.banner {
  max-width: 310px;
  width: 100%;
  position: relative;
  color: var(--dk-text);
  padding: 40px 24px 36px;
  display: flex;
  flex-direction: column;
  line-height: var(--lh-body);
  border-radius: var(--radius-sm);
  position: relative;
  z-index: 1;
  margin: 0 0 0 auto;
  border: 1px solid var(--dk-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.banner h3 {
  color: var(--dk-dark);
  margin: 0 0 8px;
}

.banner-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 152px;
  z-index: -1;
}

.banner .box-text {
  max-width: 240px;
}

.banner .btn {
  margin: 140px 0 0;
}

.d-tablet {
  display: none;
}

.d-mobile {
  display: none;
}

.form {
  margin: 40px 0 0;
  width: 100%;
}

.form .row {
  margin: 0 -12px;
}

.form .col-50,
.form .col-100 {
  padding: 0 12px;
}

.form .box-text {
  margin: 8px 0 24px;
  font-size: var(--fs-sm);
}

.input-text {
  position: absolute;
  left: 0;
  top: 15.5px;
  transition: 0.3s ease;
  line-height: var(--lh-body);
  width: 100%;
  padding: 0 22px;
  display: inline-block;
  color: var(--dk-grey-500);
  font-size: var(--fs-sm);
  pointer-events: none;
  z-index: 1;
}

.product-image-wrapper {
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.product-image {
  height: 555px;
  width: calc(100% - 80px - 16px);
  margin: 0 0 0 auto;
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  position: relative;
}

.product-image img {
  max-height: 100%;
  width: 100%;
}

.product-image .promo-label-list {
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px;
  align-items: center;
  z-index: 1;
}

.product-image .promo-label-list .promo-label-list-article {
  margin-left: auto;
}

.product-image .promo-label {
  color: var(--dk-text);
  border-radius: var(--radius-sm);
  background: var(--dk-white);
}

.product-image__slider {
  width: 100%;
  height: 100%;
}

.product-image__slider .product-image__preview-item {
  height: 100%;
}

.product-image__slider .product-image__preview-item img {
  border-radius: var(--radius-lg);
}

.product-image__slider .slick-track,
.product-image__slider .slick-list {
  height: 100%;
}

.product-image__preview {
  width: 100%;
  max-width: 80px;
  height: 100%;
  padding: 0;
  /*display: none;*/
}

.product-image__preview .slide {
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  margin: 0 0 8px;
  cursor: pointer;
  background: var(--dk-white);
  width: 100%;
}

.product-image__preview .slide.slick-current {
  border-color: var(--dk-dark);
}

.product-image__preview-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100%;
}

.product-image__preview-item img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.product-content-wrapper {
  width: 100%;
  margin-bottom: 40px;
}

.sale-value {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--dk-white);
  line-height: var(--lh-body);
  padding: 6px 10px;
  margin: 0 0 0 8px;
  display: inline-block;
  border-radius: var(--radius-full);
  background: var(--dk-error);
  margin: 0 0 0 auto;
}

.subtitle-product {
  margin: 8px 0 0;
  font-size: var(--fs-md);
}

.product-image .promo-label img {
  width: 15px;
}

.checkout-content-wrap {
  position: sticky;
  top: 140px;
  margin-bottom: 20px;
}

.checkout-box {
  /* position: sticky;
  top: 120px; */
  max-width: 310px;
  width: 100%;
  margin: 0 0 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--dk-grey-bg);
  border-radius: var(--radius-lg);
  padding: 24px 24px 32px;
}

.checkout-box .list-characteristics {
  margin: 24px 0;
}

.checkout-box .btn-group {
  width: 100%;
}

.checkout-box .btn-group .btn {
  width: 100%;
  margin: 0 0 8px;
}

.checkout-box .btn-group .btn:last-child {
  margin: 0;
}

.banner-key {
  width: 100%;
  color: var(--dk-white);
  margin: 24px 0 0;
  padding: 40px 24px;
  border-radius: var(--radius-sm);
  background: var(--dk-dark);
}

.banner-key .btn {
  width: 100%;
  margin: 32px 0 0;
}

.list-characteristics {
  width: 100%;
  line-height: 17px;
  font-size: var(--fs-sm);
}

.list-characteristics li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 16px;
}

.list-characteristics li:last-child {
  margin: 0;
}

.list-characteristics span {
  text-align: right;
}

.list-characteristics p {
  font-weight: var(--fw-regular);
}

.btn-download-file {
  width: 100%;
  margin: 12px 0 0;
  color: var(--dk-dark);
  border-width: 2px;
}

.status-availability,
.promo-link,
.delivery-instant,
.difference {
  display: flex;
  align-items: center;
}

.status-availability img,
.promo-link img,
.delivery-instant img,
.difference img {
  margin: 0 6px 0 0;
  width: 16px;
}

.difference img {
  width: 24px;
  margin: 0;
}

.delivery-instant {
  justify-content: start;
  font-weight: var(--fw-regular);
  font-size: var(--fs-sm);
}

.promo-wrapper {
  width: 100%;
  margin: 16px 0 28px;
}

.promo-wrapper__label {
  margin: 10px 0 0;
  display: none;
  position: relative;
}

.promo-wrapper__label.focus .promo-wrapper__btn {
  display: none;
}

.promo-wrapper__label.focus input {
  border-color: var(--dk-green);
  color: var(--dk-green);
}

.promo-wrapper__btn {
  margin: 0 0 0 auto;
  width: 40px;
  height: 40px;
  background: url("../img/check-promo.svg") no-repeat center;
  background-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 6px;
  right: 6px;
}

.promo-link {
  display: flex;
  align-items: center;
  line-height: 100%;
  color: var(--dk-grey-300);
  font-size: var(--fs-xs);
}

.promo-link:hover {
  color: var(--dk-grey-500);
}

.promo-link span {
  border-bottom: 1px dashed currentColor;
}

.buy-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 24px 0 0;
}

.buy-wrapper .btn {
  width: calc(50% - 4px);
}

.consent {
  margin: 24px 0;
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  max-width: 265px;
}

.consent a {
  color: inherit;
  text-decoration: underline;
}

/* На странице отзыва согласие в широкой колонке — базовый max-width:265px ломал текст на 3 строки */
.page-review-product .consent {
  max-width: none;
}

.consent--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  max-width: none;
  width: 100%;
  cursor: pointer;
}

.consent--checkbox > input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;
  margin: 2px 0 0;
  padding: 0;
  flex: 0 0 18px;
  background: var(--dk-white);
  border: 1.5px solid var(--dk-border-i);
  border-radius: var(--radius-xs);
  box-shadow: none;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  accent-color: var(--dk-dark);
  cursor: pointer;
  position: static;
}

.consent--checkbox > span {
  flex: 1 1 auto;
  min-width: 0;
}

.d-inline {
  display: inline;
}

.amount {
  margin: 0 auto 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dk-grey-500);
  border-radius: var(--radius-md);
  height: 44px;
  width: calc(50% - 4px);
  padding: 0 20px;
}

.amount span {
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  z-index: 1;
}

.amount input {
  border: none !important;
  border-radius: 0;
  padding: 0 !important;
  text-align: center;
  background: transparent;
  color: var(--dk-dark);
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  height: 100%;
  box-shadow: none;
  z-index: 0;
}

.btn-buy {
  font-weight: var(--fw-medium);
  width: 100%;
  margin: 24px auto 0;
}

.payments-method {
  margin: 24px 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-payment {
  margin: 24px 0 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.list-payment li {
  margin: 0 6px 10px 0;
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-payment li:last-child {
  margin: 0 0 10px;
}

.product-info-box {
  width: 100%;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.product-info-box:last-child {
  border: none;
  margin: 0;
  padding: 0;
}

.product-info-box__head {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 0 24px;
}

.product-info-box .promo-label-list {
  width: -moz-fit-content;
  width: fit-content;
}

.product-info-box__footer {
  margin: 24px 0 0;
  width: 100%;
  display: none;
}

.product-info-box__footer .list-payment {
  margin: 0;
}

.product-info-box__footer .list-payment li {
  margin-bottom: 0;
}

.product-info-box:first-child .product-info-box__footer .list-characteristics {
  display: none;
}

.product-info-box .list-characteristics li {
  position: relative;
  background: var(--dk-white);
  z-index: 1;
}

.product-info-box .list-characteristics li p,
.product-info-box .list-characteristics li span,
.product-info-box .list-characteristics li a {
  position: relative;
  z-index: 1;
  background: var(--dk-white);
}

.product-info-box .list-characteristics li p {
  padding: 0 8px 0 0;
}

.product-info-box .list-characteristics li span,
.product-info-box .list-characteristics li a {
  padding: 0 0 0 8px;
}

.product-info-box .list-characteristics li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: url("../img/line-characteristics.svg") no-repeat left center;
  background-size: cover;
  bottom: 3px;
  left: 0;
}

.product-info-box .list-characteristics li .link {
  font-size: var(--fs-base);
  text-decoration: underline;
}

.product-info-box .list-characteristics li .link:hover {
  color: var(--dk-dark);
}

.product-info-box__tabs {
  width: 100%;
  display: flex;
  align-items: stretch;
}

.product-info-box__tabs .difference {
  margin: 0 24px 0 10px;
}

.product-info-box__tabs .tabs__caption {
  background: var(--dk-soft);
  border-radius: var(--radius-md);
  padding: 3px;
  gap: 2px;
  flex-wrap: nowrap;
  overflow-x: auto;
  width: 100%;
}

.product-info-box__tabs .tabs__caption .btn {
  color: var(--dk-grey-500);
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  margin: 0;
  font-size: var(--fs-sm);
  padding: 10px;
  flex: 1;
  transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.product-info-box__tabs .tabs__caption .btn:not(.active):hover {
  color: var(--dk-dark);
  background: transparent;
}

.product-info-box__tabs .tabs__caption .btn.active {
  background: var(--dk-white);
  color: var(--dk-dark);
  box-shadow: var(--shadow-xs);
}

.link-copy-acticle {
  display: flex;
  align-items: center;
  color: var(--dk-text);
  font-size: var(--fs-base);
}

.link-copy-acticle:hover {
  color: var(--dk-dark);
}

.link-copy-acticle:hover svg {
  stroke: currentColor;
}

.link-copy-acticle svg {
  fill: none;
  width: 24px;
  height: 21px;
  margin: 0 0 0 4px;
  stroke: var(--dk-text);
}

.warranty-box-product {
  width: 100%;
  color: var(--dk-white);
  margin: 24px 0;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, var(--dk-dark) 0, var(--dk-dark-h) 100%);
  position: relative;
  z-index: 1;
}

.warranty-box-product::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 122px;
  background: url("../img/decor-bg1.svg") no-repeat right bottom;
  background-size: 100%;
}

.warranty-box-product h3 {
  color: var(--dk-white);
  font-size: var(--fs-xl);
}

.warranty-box-product .link {
  color: var(--dk-border-i);
  text-align: left;
  margin: 8px 0 0;
}

.warranty-box-product .link:hover {
  color: var(--dk-white);
}

.warranty-box-product .link:hover svg {
  stroke: currentColor;
}

.warranty-box-product .link svg {
  stroke: var(--dk-border-i);
  width: 24px;
  height: 24px;
  fill: none;
  margin: 0 0 0 4px;
}

.reviews-product-slider {
  width: 100%;
  margin: 40px 0 80px;
}

.rating {
  display: flex;
  align-items: center;
}

.list-rating {
  display: flex;
  align-items: center;
}

.list-rating li {
  margin: 0 4px 0 0;
  fill: var(--dk-star);
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-rating li svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
}

.list-rating li span {
  margin: 0 0 0 4px;
}

.list-rating li:last-child {
  margin: 0;
}

.list-rating li.star0 {
  fill: var(--dk-warn-bg);
}

.rating-value {
  color: var(--dk-text);
  line-height: normal;
  border-bottom: 1px solid var(--dk-text);
  margin: 0 0 0 16px;
}

.rating-value:hover {
  color: var(--dk-dark);
}

.link-share {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 auto;
  stroke: var(--dk-grey-500);
  fill: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.difference {
  margin: 0 0 0 auto;
  color: var(--dk-text);
  font-size: var(--fs-sm);
}

.difference:hover {
  color: var(--dk-dark);
}

.logo-partner {
  margin: 0 0 8px;
}

.information-box {
  width: 100%;
  margin: 64px 0 56px;
  border-radius: var(--radius-sm);
  background: var(--dk-soft);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 32px;
  line-height: var(--lh-body);
}

.information-box .box-text {
  width: calc(100% - 235px);
  padding: 0 24px 0 0;
  margin: 0 auto 0 0;
}

.tabs__caption-product {
  width: 100%;
  margin: 0 0 32px;
  position: relative;
  background: var(--dk-soft);
  border-radius: var(--radius-md);
  padding: 3px;
  gap: 2px;
  display: flex;
  align-items: stretch;
  font-size: var(--fs-sm);
  color: var(--dk-text);
}

.tabs__caption-product li {
  border: none;
  padding: 10px;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  border-radius: var(--radius-md);
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--dk-grey-500);
}

.tabs__caption-product li.active {
  background: var(--dk-white);
  color: var(--dk-dark);
  box-shadow: var(--shadow-xs);
}

.tabs__caption-product li:not(.active):hover {
  color: var(--dk-dark);
  background: transparent;
}

.faq .tabs__content .block_hover .box-text {
  width: calc(100% - 32px);
  padding: 0 32px 0 0;
}

.help-product-box {
  width: 100%;
  position: sticky;
  top: 140px;
  z-index: 2;
  max-width: 310px;
  width: 100%;
  margin: 0 0 0 auto;
  padding: 24px;
  border-radius: var(--radius-lg);
  color: var(--dk-white);
  background: var(--dk-dark);
}

.help-product-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 204px;
  height: 127px;
  background: url("../img/decor-bg2.svg") no-repeat center;
  background-size: 100%;
}

.help-product-box .btn {
  margin: 48px 0 0;
  height: 40px;
}

.help-product-box .btn-white {
  color: var(--dk-dark);
}

.help-product-box .btn-white:hover {
  background: var(--dk-white);
  color: var(--dk-dark);
  opacity: 0.9;
}

.help-product-box h3 {
  margin: 0 0 8px;
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  max-width: 250px;
  color: var(--dk-white);
}

.reviews-product-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--dk-grey-bg);
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  text-align: left;
}

.reviews-product-box:last-child {
  margin: 0;
}

.reviews-product-box__head {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  margin: 0 0 24px;
}

.reviews-product-box__head h3 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  max-width: 250px;
}

.reviews-product-box__head .date {
  font-size: var(--fs-xs);
  /*margin: 4px 0 0;*/
}

.reviews-product-box__body {
  width: 100%;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

.reviews-product-box__body .box-text {
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  max-width: none;
}

.reviews-product-box__body .box-text.show-text {
  max-height: none;
  overflow: visible;
}

.reviews-product-box .reviews-box__user-name {
  text-align: left;
  align-items: start;
}

.reviews-product-box .reviews-box__user {
  margin: 0 auto 0 0;
}

.reviews-product-box .reviews-box__user-avatar {
  margin: 0 16px 0 0;
}

.reviews-product-box__footer {
  margin: auto 0 0;
  width: 100%;
}

.reviews-product-box .rate-review p {
  color: var(--dk-grey-500);
  font-weight: var(--fw-medium);
  margin: 0 0 4px;
  font-size: var(--fs-sm);
}

.reviews-product-box .rate-review__yes {
  color: var(--dk-dark);
}

.reviews-product-box .rate-review__yes:hover {
  color: var(--dk-dark);
}

.reviews-product-box .reviews-gallery {
  margin: 0 0 16px;
}

.reviews-product-box .reviews-gallery__item {
  margin: 0 8px 8px 0;
}

.reviews-product-box .reviews-gallery__item:last-child {
  margin: 0 0 8px;
}

.reviews-product-box .btn-border-dark {
  background: var(--dk-grey-bg);
}

.reviews-product-box .btn-border-dark:hover {
  border: 1px solid var(--dk-dark);
  background: var(--dk-dark);
  color: var(--dk-white);
}

.btn-toggle-reviews {
  margin: 24px auto 0;
}

.reviews-product-box-call::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 183px;
  width: 100%;
  z-index: -1;
  background: url("../img/decor-bg3.svg") no-repeat center top;
  background-size: 100%;
}

.reviews-product-slider .slick-slide {
  height: auto;
  padding: 0 8px;
}

.reviews-product-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.reviews-product-slider .slick-list {
  margin: 0 -8px;
}

.reviews-product-slider .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--dk-text);
  padding: 8px;
  stroke: var(--dk-text);
  fill: none;
}

.reviews-product-slider .slick-arrow svg {
  transform: none;
}

.reviews-product-slider .slick-arrow:hover,
.reviews-product-slider .slick-arrow:focus {
  border: 1px solid var(--dk-dark);
  background: var(--dk-dark);
  stroke: var(--dk-white);
}

.reviews-product-slider .slick-prev {
  left: -64px;
}

.reviews-product-slider .slick-next {
  right: -64px;
}

.table,
table {
  width: 100%;
  text-align: left;
  border: 1px solid var(--dk-border-i);
  margin: 24px 0;
  border-collapse: collapse;
  border-spacing: 0;
}

.table thead,
table thead {
  background: var(--dk-grey-bg);
}

.table th,
table th {
  padding: 12px 24px;
}

.table th:first-child,
table th:first-child {
  width: 45%;
}

.table td,
table td {
  padding: 12px 24px;
}

.table td:first-child,
table td:first-child {
  width: 45%;
}

.table tr,
table tr {
  background: var(--dk-white);
}

.table tr .bg-grey,
table tr .bg-grey {
  background: var(--dk-grey-bg);
}

.table-products-title {
  border: none;
}

.table-products-title thead th {
  width: 50%;
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  padding: 0 24px 16px;
  background: var(--dk-white);
}

.table-products {
  position: relative;
}

.table-products::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140px;
}

.table-products.hide::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--dk-white) 82.12%);
}

.table-products thead th {
  padding: 12px 24px 8px;
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
}

.table-products td {
  width: 50%;
  padding: 12px 24px 12px;
}

.table-products tbody tr {
  background: var(--dk-white);
}

.table-products tbody .bg-grey {
  background: var(--dk-grey-bg);
}

.table-products tbody .tr-answer td {
  padding: 0 24px 12px;
}

.table-products td.table-products__subtitle {
  font-size: var(--fs-sm);
  color: var(--dk-grey-500);
  padding: 12px 24px 4px;
}

.load-more-wrap {
  font-size: var(--fs-base);
  margin: -48px auto 0;
  position: relative;
  z-index: 1;
}

.attention-box {
  padding: 24px;
  margin: 32px 0 0;
  border: none;
  background: var(--dk-error-bg);
  border-radius: var(--radius-sm);
  color: var(--dk-dark);
  align-items: flex-start;
}

.attention-box h3 {
  color: var(--dk-error);
  margin: 0 0 8px;
}

.attention-box .box-text {
  padding: 0;
  width: 100%;
  font-size: var(--fs-md);
  line-height: 28px;
}

.attention-box .box-text .link-inline {
  border: none;
}

.attention-box .box-text a {
  color: var(--dk-blue);
}

.attention-box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: transparent;
  order: 1;
}

.attention-box__text {
  width: calc(100% - 40px);
}

.panel_heading {
  width: 100%;
  margin: 0 0 8px;
  background: var(--dk-grey-bg);
  border-radius: var(--radius-2xl);
}

.panel_heading .block_title {
  padding: 24px;
}

.panel_heading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  stroke: var(--dk-grey-500);
  fill: none;
}

.panel_heading.in .panel_heading-icon {
  transform: rotate(180deg);
}

.panel_heading.in .block_title {
  padding: 24px 24px 8px;
}

.panel_heading.in .block_title::after {
  background: url("../img/minus-icon.svg") no-repeat center;
  background-size: 100%;
}

.panel_heading:last-child {
  margin: 0;
}

.block_title {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin: 0;
  cursor: pointer;
  padding: 15px;
  transition: 0.3s ease;
}

.block_title h3 {
  margin: 0 32px 0 0;
  font-size: var(--fs-md);
  line-height: 32px;
}

.block_title::after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 auto;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: url("../img/plus-icon.svg") no-repeat center;
  background-size: 100%;
}

.block_hover {
  display: none;
  color: var(--dk-text);
  line-height: var(--lh-body);
  font-size: var(--fs-md);
  padding: 0 24px 24px;
}

.block_hover .box-text {
  max-width: 878px;
}

.help-remotely-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  padding: 61px 32px;
  position: relative;
  z-index: 1;
  background: var(--dk-soft);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.help-remotely-wrapper h2 {
  margin: 0 0 16px;
}

.help-remotely-wrapper .box-text {
  font-size: var(--fs-md);
  max-width: 600px;
}

.help-remotely-wrapper .btn-group {
  margin: 24px 0 0;
}

.help-remotely-wrapper__img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  max-width: 320px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-remotely-wrapper__content {
  max-width: 647px;
  width: 100%;
}

.article-card {
  width: 100%;
  height: 100%;
  line-height: var(--lh-snug);
  font-size: var(--fs-lg);
}

.article-card__img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  height: 200px;
}

.article-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.article-card__body {
  width: 100%;
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  height: calc(100% - 200px);
}

.article-card__title {
  color: var(--dk-dark);
  margin: 0 0 auto;
}

.article-card__title:hover {
  color: var(--dk-dark);
}

.article-card__date {
  margin: 16px 0 0;
  color: var(--dk-grey-500);
}

.recommended {
  margin: 40px 0;
}

.recommended .reviews-gallery {
  flex-wrap: nowrap;
}

.reviews h2 {
  margin: 0 0 24px;
}

.reviews-services {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 32px;
}

.reviews-services h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 32px 0 0;
}

.reviews-services-link {
  display: flex;
  align-items: center;
  color: var(--dk-text);
}

.reviews-services-link:hover {
  color: var(--dk-dark);
}

.reviews-services-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.reviews-services-list li {
  display: flex;
  align-items: center;
  padding: 0 8px 0 0;
  margin: 0 8px 0 0;
  border-right: 1px solid var(--dk-border-i);
}

.reviews-services-list li:last-child {
  padding: 0;
  margin: 0;
  border: none;
}

.reviews-services-list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
}

.page-product .nav-breadcrumb .link-share {
  display: none;
}

.page-product .box-text h3 {
  margin: 20px 0;
}

.page-product .box-text ul,
.page-product .box-text ol {
  margin: 0 0 15px;
  font-size: var(--fs-base);
}

.page-product .box-text ul li,
.page-product .box-text ol li {
  margin: 0 0 5px;
}

.page-product .box-text a {
  display: initial;
  text-decoration: underline;
  color: var(--dk-dark);
}

.page-product .attention-box .box-text a {
  color: var(--dk-blue);
  text-decoration: none;
}

.page-product h1 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--dk-dark);
}

.page-politics h1 {
  margin: 0 0 16px;
}

.page-error .box-text {
  max-width: 315px;
  margin: 40px auto;
}

.page-error-wrapper {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-error-wrapper__img {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-sales tr:nth-child(even),
table tr:nth-child(even) {
  background: var(--dk-grey-bg);
}

.contats-wrapper {
  margin: 48px 0 40px;
  width: 100%;
  padding: 48px 24px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  background-color: var(--dk-grey-bg);
  border: 1px solid var(--dk-border-i);
  border-radius: var(--radius-lg);
}

.contats-wrapper__content {
  width: calc(100% - 369px);
}

.contats-wrapper__content .box-text {
  margin: 8px 0 48px;
  font-size: var(--fs-sm);
  max-width: 380px;
}

.requisites {
  max-width: 369px;
  width: 100%;
  padding: 16px 24px;
  line-height: 180%;
}

.contacts-box {
  font-size: var(--fs-sm);
  margin: 0 0 24px;
}

.contacts-box a {
  color: #000;
  font-weight: var(--fw-semibold);
  margin: 4px 0 0;
}

.contacts-box a:hover {
  color: var(--dk-dark);
}

.about-products {
  margin: 80px 0 0;
}

.about-products .box-text {
  margin: 8px 0 32px;
}

.about-products .chapter-card__img {
  max-width: 230px;
}

.about-products__title {
  margin: 0 0 78px;
}

.individual-approach h2 {
  margin: 0 0 24px;
}

.difference-about {
  margin: 46px 0 0;
  width: 100%;
}

.difference-about h3 {
  margin: 0 0 24px;
}

.difference-about .tabs__caption {
  width: 100%;
}

.difference-about .tabs__caption li {
  margin: 0 16px 16px 0;
  border: 1.3px solid var(--dk-dark);
  border-radius: var(--radius-sm);
  padding: 11px 24px;
  color: var(--dk-dark);
}

.difference-about .tabs__caption li.active {
  color: var(--dk-dark);
  background: var(--dk-soft);
  border-color: transparent;
}

.difference-about .tabs__caption li:last-child {
  margin: 0 0 16px;
}

.difference-about .tabs__content {
  margin: 8px 0 0;
}

.page-about .nav-breadcrumb {
  margin: 0 0 60px;
}

.about-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-wrapper__images {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-wrapper__img {
  padding: 10px;
  width: calc(50% - 4px);
  margin: 0 auto 8px 0;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-2xl);
  background: var(--dk-grey-bg);
}

.about-wrapper__img:nth-child(even) {
  margin-right: 0;
}

.about-wrapper__img:last-child {
  width: 100%;
  margin: 0;
}

.about-wrapper__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.about-wrapper h1 {
  margin: 0 0 16px;
  max-width: 660px;
}

.about-wrapper .box-text {
  font-size: var(--fs-md);
}

.about-in-numbers-box {
  width: 100%;
  height: 100%;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--dk-white);
  border: 1px solid var(--dk-border);
  font-size: var(--fs-md);
  display: flex;
  flex-direction: column;
}

.about-in-numbers-box__icon {
  width: 34px;
  height: 34px;
  margin: 0;
  color: var(--dk-grey-400);
}

.about-in-numbers-box__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.about-in-numbers-box__head {
  width: 100%;
  padding: 20px 0 0;
}

.about-in-numbers-box__head h3 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--dk-dark);
  font-variant-numeric: tabular-nums;
}

.about-in-numbers-box__head h3 .unit {
  font-weight: var(--fw-regular);
  font-size: var(--fs-md);
  color: var(--dk-grey-500);
  letter-spacing: 0;
}

.about-in-numbers-box__body {
  padding: 12px 0 0;
  width: 100%;
}

.about-in-numbers-box__body p {
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
  color: var(--dk-grey-500);
}

/* Тинты карточек — только основной блок «О нас в цифрах» (бренд-страница):
   плоские мягкие подложки, без рамки и градиентов, иконка в тон. */
.about-in-numbers .about-in-numbers-box {
  border-color: transparent;
}
.about-in-numbers .about-in-numbers-box1 { background: var(--accent-neutral-bg); }
.about-in-numbers .about-in-numbers-box1 .about-in-numbers-box__icon { color: var(--accent-neutral-ink); }
.about-in-numbers .about-in-numbers-box2 { background: var(--accent-green-bg); }
.about-in-numbers .about-in-numbers-box2 .about-in-numbers-box__icon,
.about-in-numbers .about-in-numbers-box2 .about-in-numbers-box__head h3 .num { color: var(--accent-green-ink); }
.about-in-numbers .about-in-numbers-box3 { background: var(--accent-blue-bg); }
.about-in-numbers .about-in-numbers-box3 .about-in-numbers-box__icon { color: var(--accent-blue-ink); }
.about-in-numbers .about-in-numbers-box4 { background: var(--accent-amber-bg); }
.about-in-numbers .about-in-numbers-box4 .about-in-numbers-box__icon { color: var(--accent-amber-ink); }

/* ===== Reveal-on-scroll для /about/ — IntersectionObserver + CSS, без зависимостей.
   Прячем целевые блоки ТОЛЬКО при .js-anim на <html> (ставится инлайн-скриптом в начале страницы
   и только при поддержке IntersectionObserver + не reduced-motion). Без .js-anim — контент сразу видим.
   .feedbacks-content/-image не перечисляем: у них в разметке есть и .legislative-content/-image. ===== */
.js-anim .about-in-numbers .about-in-numbers-box,
.js-anim .official-business-box,
.js-anim .official-requisites-box,
.js-anim .legislative-content,
.js-anim .legislative-image,
.js-anim .help-product-box,
.js-anim .we-appreciate .we-appreciate-text,
.js-anim .we-appreciate .box-text {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-anim .we-appreciate .we-appreciate-text,
.js-anim .we-appreciate .box-text {
  transform: translateX(-44px);
}
.js-anim .about-in-numbers .about-in-numbers-box.is-visible,
.js-anim .official-business-box.is-visible,
.js-anim .official-requisites-box.is-visible,
.js-anim .legislative-content.is-visible,
.js-anim .legislative-image.is-visible,
.js-anim .help-product-box.is-visible,
.js-anim .we-appreciate .we-appreciate-text.is-visible,
.js-anim .we-appreciate .box-text.is-visible {
  opacity: 1;
  transform: none;
}

.page-news h1 {
  width: 100%;
  margin: 0 0 32px;
}

.page-news .box-text {
  max-width: 475px;
}

.page-news .title-wrapper {
  margin: 0 0 8px;
}


.list-filter {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 -145px 0 auto;
}

.list-filter li {
  margin: 0 16px 0 0;
}

.list-filter li:last-child {
  margin: 0;
}

.list-filter-link {
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  color: var(--dk-dark);
}

.list-filter-link.active {
  background: var(--dk-dark);
  color: var(--dk-white);
}

.news-row {
  align-items: stretch;
}

.news-box {
  width: 100%;
  height: 100%;
  background: var(--dk-white);
  border: 1px solid var(--dk-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease;
}

.news-box:hover {
  border-color: var(--dk-border-h);
}

.news-box__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-box__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
}

.news-box__image-footer {
  width: 100%;
  padding: 16px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.news-box__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.news-box__info {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--dk-grey-500);
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  margin: 8px 0 0;
}

.news-box__info li {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  margin: 0;
}

.news-box__info li:after {
  content: "";
  display: inline-block;
  margin: 0 8px;
  background: var(--dk-border-i);
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.news-box__info li:last-child:after {
  display: none;
}

.news-box__info a {
  color: var(--dk-text);
}

.news-box__info a:hover {
  color: var(--dk-dark);
}

.news-box__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: var(--dk-dark);
  transition: color 0.15s ease;
}

.news-box__body .news-box__info {
  margin-top: auto;
  padding-top: 12px;
}

.news-box__title:hover {
  color: var(--dk-grey-500);
}

.news-box__view {
  margin: 24px 0 0;
  color: var(--dk-dark);
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
}

.news-box__footer {
  margin: auto 0 0;
}

.news-box__report {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
}

.news-box-max {
  border-radius: var(--radius-lg);
  height: auto;
  border: 1px solid var(--dk-border);
  background: var(--dk-white);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 20px;
  gap: 20px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.news-box-max:hover {
  border-color: var(--dk-border-h);
}

.news-box-max .news-box__image {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: var(--radius-md);
  background: var(--dk-grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Boxy product shot (PROPERTY_PICTURE / PREVIEW_PICTURE) — оставляем «воздух» вокруг коробки */
.news-box-max .news-box__image img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

/* FLAT_PICTURE — портретная промо-картинка 3:4, без обрезки */
.news-box-max--flat {
  gap: 32px;
  padding: 24px;
}

.news-box-max--flat .news-box__image {
  width: 210px;
  height: 280px;
  background: transparent;
}

.news-box-max--flat .news-box__image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.news-box-max--flat .news-box__title {
  font-size: var(--fs-2xl);
}

.news-box-max--flat .new-price {
  font-size: var(--fs-2xl);
}

.news-box-max .news-box__body {
  flex: 1;
  min-width: 0;
  width: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.news-box-max .promo-label-list {
  justify-content: flex-start;
  margin: 0 0 12px;
}

.news-box-max__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: var(--fs-xs);
  color: var(--dk-grey-500);
  line-height: 1;
}

.news-box-max__rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px 3px 6px;
  background: var(--dk-green);
  color: var(--dk-white);
  border-radius: var(--radius-sm);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-xs);
  line-height: 1;
}

.news-box-max__rating-pill svg {
  flex-shrink: 0;
}

.news-box-max__rating-count {
  white-space: nowrap;
}

.news-box-max .news-box__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-heading);
  color: var(--dk-dark);
}

.news-box-max .news-box__title:hover {
  color: var(--dk-grey-500);
}

.news-box-max .price {
  align-items: center;
  margin: 16px 0 0;
  width: 100%;
}

.news-box-max .old-price {
  margin: 0 0 3px 16px;
  font-weight: var(--fw-regular);
}

.news-box-max .new-price {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--dk-dark);
}

.news-box-max .new-price sup {
  font-weight: var(--fw-regular);
  font-size: var(--fs-sm);
}

.news-box-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
  padding: 20px;
  height: auto;
  margin: 0 0 32px;
  background: var(--dk-white);
  border: 1px solid var(--dk-border);
  border-radius: var(--radius-lg);
  transition: border-color 0.15s ease;
}

.news-box-title:hover {
  border-color: var(--dk-border-h);
}

.news-box-title__image {
  flex-shrink: 0;
  width: 420px;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dk-soft);
  display: block;
}

.news-box-title__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.news-box-title__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-box-title .news-box__title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-heading);
  max-width: none;
  margin: 0 0 16px;
  color: var(--dk-dark);
}

.news-box-title__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 20px 0 0;
  color: var(--dk-dark);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  width: fit-content;
  transition: gap 0.15s ease;
}

.news-box-title__cta:hover {
  gap: 10px;
  color: var(--dk-dark);
}

.news-box-title__cta svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.news-sidebar-box {
  width: 100%;
  margin: 0 0 32px;
}

.news-sidebar-box:last-child {
  margin: 0;
}

.news-sidebar-box h4 {
  margin: 0 0 24px;
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
}

.list-news {
  width: 100%;
}

.list-news>li {
  width: 100%;
  margin: 0 0 24px;
}

.list-news>li:last-child {
  margin: 0;
}

.list-news .news-box__info {
  margin: 8px 0 0;
}

.list-news__link {
  width: 100%;
  font-size: var(--fs-base);
  color: var(--dk-dark);
  transition: color 0.15s ease;
}

.list-news__link:hover {
  color: var(--dk-grey-500);
}

.list-tags {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: var(--fs-sm);
}

.list-tags li {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 8px 8px 0;
}

.list-tags li:last-child {
  margin: 0;
}

.list-tags a {
  padding: 10px 12px;
  color: var(--dk-grey-500);
  border-radius: var(--radius-sm);
  background: var(--dk-grey-bg);
}

.list-tags a:hover {
  background: var(--dk-dark);
  color: var(--dk-white);
}

.news-box-min {
  padding: 24px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--dk-border);
  display: flex;
  flex-direction: column;
  height: 340px;
}

.news-box-min .news-box__body {
  padding: 0;
}

.news-box-min .list-category-news {
  margin: 0 0 24px;
  font-size: var(--fs-xs);
}

.btn-load {
  margin: 0 auto;
}

.list-category-news {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: var(--fs-sm);
  margin: 0 0 16px;
  width: 100%;
}

.list-category-news li {
  margin: 0 16px 0 0;
}

.list-category-news li:last-child {
  margin: 0;
}

.list-category-news li a {
  text-decoration: underline;
  color: var(--dk-dark);
}

.list-category-news li a:hover {
  color: var(--dk-dark);
}

.page-acticle .nav-breadcrumb {
  margin: 0 0 48px;
}

.page-acticle h1,
.page-acticle .h1 {
  width: 100%;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  line-height: 36px;
  letter-spacing: -0.005em;
}

.page-acticle h2,
.page-acticle .h2 {
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  line-height: 30px;
  letter-spacing: -0.005em;
  text-align: left;
}

.page-acticle h3 {
  font-family: "Inter", sans-serif;
  font-weight: var(--fw-medium);
  font-size: var(--fs-lg);
  line-height: 26px;
  letter-spacing: -0.005em;
  text-align: left;
}

.page-acticle .box-text {
  font-size: var(--fs-md);
  margin: 0 0 32px;
}

.page-acticle .box-text:last-child {
  margin: 0;
}

.page-acticle .box-text p {
  margin: 0 0 16px;
}

.page-acticle .box-text p:last-child {
  margin: 0;
}

.page-acticle .box-text>ol,
.page-acticle .box-text>ul {
  margin: 0 0 16px;
  padding: 0 0 0 20px;
}

.page-acticle .box-text>ol:last-child,
.page-acticle .box-text>ul:last-child {
  margin: 0;
}

.page-acticle .box-text>ol li,
.page-acticle .box-text>ul li {
  margin: 0 0 16px;
}

.page-acticle .box-text>ol li:last-child,
.page-acticle .box-text>ul li:last-child {
  margin: 0;
}

.page-acticle .box-text .m-0 li {
  margin: 0;
}

.page-acticle .box-text .my-ul {
  padding: 0;
}

.page-acticle .box-text .my-ul li {
  margin: 0;
}

.page-acticle .box-text video {
  width: 100%;
  margin: 16px 0 0;
}

.page-acticle .box-text .copy-line {
  margin: 8px 0 0;
}

.page-acticle .box-text .copy-line p {
  margin: 0;
}

.page-acticle .box-text>a {
  display: initial;
  text-decoration: underline;
  color: var(--dk-dark);
}

.page-acticle .box-text .link-copy-acticle,
.page-acticle .box-text .text-button-click {
  display: inline-flex;
}

.page-acticle .box-text .link-article {
  display: flex;
  text-decoration: none;
}

.page-acticle .box-text .product-line-article__name {
  text-decoration: none;
  color: var(--dk-dark);
}

.page-acticle .box-text .product-line-article__name:hover {
  color: var(--dk-dark);
}

.page-acticle .box-text h3 {
  width: 100%;
  margin: 0 0 16px;
}

.page-acticle .box-text .list-decimal__title,
.page-acticle .box-text .list-dots__title {
  margin: 0;
  font-weight: var(--fw-medium);
}

.page-acticle .list-tags {
  margin: 0 0 32px;
}

.page-acticle .list-tags:last-child {
  margin: 0;
}

.page-acticle .news-sidebar-box {
  height: 100%;
}

.text-button-click {
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
  font-weight: var(--fw-regular);
  color: var(--dk-dark);
  background: var(--dk-soft);
}

.list-decimal__title,
.list-dots__title {
  margin: 0;
  font-weight: var(--fw-medium);
}

.list-decimal li::marker,
.list-dots li::marker {
  font-weight: var(--fw-medium);
}

.link-article {
  display: flex;
  align-items: center;
  margin: 16px 0 0;
  font-size: var(--fs-base);
}

.link-article svg {
  stroke: currentColor;
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin: 0 0 0 8px;
}

.article-menu {
  width: 100%;
  position: sticky;
  top: 100px;
  z-index: 1;
  padding: 0 0 0 12px;
  font-size: var(--fs-base);
  line-height: 22px;
}

.article-menu::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--dk-grey-bg);
  border-radius: var(--radius-sm);
}

.article-menu li {
  margin: 0 0 16px;
  width: 100%;
}

.article-menu li:last-child {
  margin: 0;
}

.article-menu__link {
  width: 100%;
  position: relative;
  z-index: 1;
  color: var(--dk-text);
}

.article-menu__link::before {
  content: "";
  position: absolute;
  left: -12px;
  width: 4px;
  height: 0;
  border-radius: var(--radius-sm);
  background: var(--dk-dark);
  transition: 0.3s ease;
}

.article-menu__link:hover,
.article-menu__link:focus,
.article-menu__link.active {
  color: var(--dk-text);
}

.article-menu__link:hover::before,
.article-menu__link.active::before {
  height: 100%;
}

.article-title-wrapper {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 32px;
  background: var(--dk-grey-bg);
  border-radius: var(--radius-2xl);
  padding: 60px 24px;
}

.article-title-wrapper .news-box__info {
  margin: 0 auto 16px;
  justify-content: center;
}

.article-title-wrapper-v2 {
  text-align: left;
  padding: 0;
  border-radius: 0;
  background: transparent;
  align-items: flex-start;
}

.article-title-wrapper-v2 .news-box__info {
  margin: 0 0 16px;
  justify-content: flex-start;
}

.article-image {
  width: 100%;
  margin: 32px 0;
  text-align: center;
}

.article-image img {
  width: 100%;
  border-radius: var(--radius-2xl);
  border: 1.5px solid var(--dk-grey-bg);
}

.article-image__name {
  margin: 16px auto 0;
  font-size: var(--fs-base);
  color: var(--dk-text);
}

.comparison {
  margin: 32px 0;
}

.comparison h3 {
  margin: 0 0 16px;
}

.copy-line {
  width: 100%;
  margin: 16px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: var(--dk-grey-bg);
  color: var(--dk-dark);
  border-radius: var(--radius-md);
  padding: 14.5px 24px;
  font-size: var(--fs-base);
}

.link-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  fill: none;
  stroke: var(--dk-dark);
  margin: 0 0 0 auto;
}

.link-copy:hover {
  stroke: currentColor;
}

.product-line-article {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 0 8px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--dk-border);
  background: var(--dk-white);
}

.product-line-article:last-child {
  margin: 0;
}

.product-line-article__left {
  display: flex;
  align-items: center;
}

.product-line-article__name {
  padding: 0 0 0 16px;
  color: var(--dk-dark);
  max-width: 336px;
  font-size: var(--fs-md);
  line-height: normal;
}

.product-line-article__name:hover {
  color: var(--dk-dark);
}

.product-line-article__img {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-line-article__right {
  margin-left: auto;
}

.product-line-article__info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: var(--fs-base);
}

.product-line-article__info .chats-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.product-line-article .price-wrapper {
  display: flex;
  align-items: flex-end;
  margin: 8px 0 0;
}

.product-line-article .price-wrapper .old-price {
  margin: 0 0 0 16px;
}

.product-line-article .price-wrapper .new-price {
  color: var(--dk-dark);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
}

.product-line-article .price-wrapper .new-price span {
  font-weight: var(--fw-regular);
  font-size: var(--fs-sm);
}

.product-line {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid var(--dk-border);
  border-radius: var(--radius-sm);
  margin: 20px 0 0;
  padding: 18px 16px;
}

.product-line__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.product-line__icon img {
  border: none;
  border-radius: 0;
}

.product-line__name {
  color: var(--dk-text);
  margin: 0 auto 0 0;
  width: calc(100% - 40px - 108px);
  padding: 0 16px;
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
}

.product-line__name:hover {
  color: var(--dk-dark);
}

.article-evaluation {
  background: var(--dk-grey-bg);
  border-radius: var(--radius-2xl);
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  margin: 0 0 32px;
}

.article-evaluation:last-child {
  margin: 0;
}

.article-evaluation h3 {
  text-align: center;
  margin: 0 auto 16px;
}

.article-evaluation .box-text {
  margin: 16px auto 24px;
  max-width: 300px;
  color: var(--dk-text);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: normal;
}

.article-evaluation .list-rating {
  font-size: var(--fs-base);
}

.article-evaluation .list-rating li {
  margin: 0 32px 0 0;
}

.article-evaluation .list-rating li:last-child {
  margin: 0;
}

.article-evaluation .list-rating a {
  color: var(--dk-text);
}

.article-evaluation .list-rating a:hover {
  color: var(--dk-dark);
}

.article-evaluation .list-rating span {
  display: block;
  margin: 8px auto 0;
}

.also-articles {
  margin: 120px 0 0;
}

.also-articles h2 {
  font-size: var(--fs-3xl);
}

.schare-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  margin: 0 auto 0 0;
}

.schare-box p {
  margin: 0 24px 0 0;
}

.schare-box-links {
  display: flex;
  align-items: center;
}

.schare-box__link {
  display: flex;
  align-items: center;
  color: var(--dk-text);
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
}

.schare-box__link:hover {
  color: var(--dk-dark);
}

.schare-box__link:after {
  content: "";
  display: inline-block;
  margin: 0 8px;
  background: var(--dk-text);
  border-radius: 50%;
  width: 4px;
  height: 4px;
}

.schare-box__link:last-child:after {
  display: none;
}

.form-search {
  position: relative;
}

.form-search button {
  background: transparent;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 16px;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--dk-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-search input {
  background: transparent;
  border: 1px solid var(--dk-border-i);
  border-radius: var(--radius-md);
  padding: 0 40px 0 16px;
  box-shadow: none;
  font-size: var(--fs-base);
}

.form-search input::-moz-placeholder {
  color: var(--dk-text);
}

.form-search input::placeholder {
  color: var(--dk-text);
}

.form-search label {
  margin: 0;
}

.form-search .input-text {
  font-size: var(--fs-base);
  color: var(--dk-text);
}

.distribution-box {
  width: 100%;
  height: 100%;
  text-align: center;
  color: var(--dk-text);
  font-size: var(--fs-base);
  border: 1.5px solid var(--dk-border);
  background: var(--dk-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.distribution-box:hover {
  color: var(--dk-dark);
}

.distribution-box:hover .distribution-box__title {
  color: var(--dk-dark);
}

.distribution-box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--dk-soft);
  border-radius: var(--radius-md);
  padding: 10px;
  width: 56px;
  min-width: 56px;
  height: 56px;
}

.distribution-box__val {
  position: absolute;
  color: var(--dk-dark);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  width: 31px;
  height: 31px;
  top: 8px;
  right: 8px;
  background: var(--dk-soft);
}

.distribution-box__title {
  font-size: var(--fs-lg);
  margin: 0 auto 4px;
  color: var(--dk-dark);
}

.tabs-my .tabs__caption {
  width: 100%;
  font-size: var(--fs-sm);
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
}

.tabs-my .tabs__caption li {
  margin: 0 0 16px 0;
  border: none;
  border-radius: var(--radius-full);
  padding: 12px 16px;
  color: var(--dk-text);
  cursor: pointer;
}

.tabs-my .tabs__caption li.active {
  color: var(--dk-dark);
  background: var(--dk-soft);
  border-color: transparent;
}

.tabs-my .tabs__caption li:last-child {
  margin: 0 0 16px;
}

.tabs-my .tabs__content {
  margin: 8px 0 0;
}

.distribution-line {
  margin: 0 0 16px;
  flex-wrap: nowrap;
}

.distribution-line:last-child {
  margin: 0;
}

.distribution-line .distribution-box__icon {
  margin: 0;
}

.distribution-line .product-line__name {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0 0 24px;
  margin: 0;
}

.distribution-line .product-line__name-category {
  display: block;
  font-size: var(--fs-sm);
  margin: 4px 0 0;
}

.distribution-line .product-line__name-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: #000;
}

.distribution-line-characteristics {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

.distribution-line-characteristics li {
  margin: 0 16px 0 0;
}

.distribution-line-characteristics li:last-child {
  margin: 0;
}

.disctribution-content {
  margin: 60px 0 0;
}

.disctribution-content h3 {
  margin: 0 0 24px;
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
}

.distribution-page .product-image {
  height: 346px;
  width: 100%;
}

.distribution-page .product-info-box {
  border-bottom: none;
  margin: 0;
}

.distribution-page .product-info-box:last-child {
  padding: 24px 0 0;
  border-top: 1px solid var(--dk-border-i);
}

.verifed-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dk-success-bg);
  padding: 8px;
  color: var(--dk-green);
  width: 100%;
  border-radius: var(--radius-sm);
}

.verifed-box__icon {
  margin: 0 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
}

.key-box {
  margin: 0 0 24px;
}

.key-box .btn {
  width: 100%;
}

.checkout-box-verifed h4 {
  width: 100%;
  margin: 0 0 8px;
  font-size: var(--fs-base);
}

.checkout-box-toggle {
  width: 100%;
  padding: 8px 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 32px;
  font-size: var(--fs-base);
}

.checkout-box-toggle .svg-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: none;
  stroke: var(--dk-text);
}

.download-distribution {
  margin: 24px 0;
}

.download-distribution-link {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 8px 0;
  margin: 0 0 8px;
  color: #000;
}

.download-distribution-link:hover {
  color: var(--dk-dark);
}

.download-distribution-link:last-child {
  margin: 0;
}

.download-distribution-link__name {
  margin: 0 auto 0 12px;
}

.download-distribution-link__lang {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dk-dark);
  border-radius: var(--radius-xs);
  width: 36px;
  height: 24px;
}

.download-distribution-link__lang img {
  border-radius: var(--radius-xs);
  width: 100%;
}

.page-reviews .tabs__caption {
  margin: 32px 0 16px;
}

.page-reviews .tabs__caption li {
  border-radius: var(--radius-sm);
  padding: 13.5px 24px;
}

.page-reviews .reviews-services-link.color-accent {
  color: var(--dk-dark);
}

.page-reviews .tabs__content>.reviews-box {
  display: none;
}

.page-reviews .tabs__content>.reviews-box:nth-child(-n+5) {
  display: block;
}

.page-reviews .title-wrapper {
  margin: 0 0 32px;
}

.reviews-box {
  width: 100%;
  border-top: 1px solid var(--dk-border);
  padding: 24px 0 0;
  margin: 24px 0 0;
}

.reviews-box:first-child {
  margin: 0;
}

.reviews-box__head,
.reviews-box__body,
.reviews-box__footer {
  width: 100%;
}

.reviews-box__head {
  margin: 0 0 16px;
}

.reviews-box__date {
  color: var(--dk-grey-500);
  font-size: var(--fs-xs);
  margin: 0 0 0 16px;
}

.reviews-box__body .box-text {
  margin: 0 0 10px;
}

.reviews-box__body .box-text:last-child {
  margin: 0;
}

.reviews-box__body h4 {
  font-weight: var(--fw-semibold);
  margin: 0 0 4px;
  width: 100%;
  color: var(--dk-text);
}

.reviews-box__footer {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}

.reviews-box__navigation {
  display: flex;
  align-items: center;
}

.reviews-box__user {
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
  text-align: right;
}

.reviews-box__user-name {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.reviews-box__user-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 16px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  min-width: 48px;
  overflow: hidden;
  background: var(--dk-grey-bg);
}

.reviews-box__user-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.reviews-box__user-avatar .icon-avatar {
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.category-user {
  margin: 2px 0 0;
  font-size: var(--fs-xs);
  text-decoration: underline;
  color: var(--dk-grey-500);
}

.category-user:hover {
  color: var(--dk-dark);
}

.help-product-box .box-text {
  max-width: none;
}

.login-user {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--dk-text);
  display: flex;
  align-items: center;
}

.login-user:hover {
  color: var(--dk-dark);
}

.like-box {
  display: flex;
  align-items: center;
  margin: 0 8px 0 0;
}

.like-box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  fill: var(--dk-dark);
}

.like-box__value {
  margin: 0 8px 0 0;
}

.like-box:last-child {
  margin: 0;
}

.like-box:hover {
  color: var(--dk-dark);
}

.like-box:hover .like-box__icon {
  fill: var(--dk-dark);
}

.answer-link {
  margin: 0 0 0 24px;
}

.answer-box {
  margin: 32px 0 0;
  padding: 0 0 0 32px;
  border: none;
  border-left: 1px solid var(--dk-dark);
}

.answer-box:first-child {
  margin: 32px 0 0;
}

.btn-load-reviews {
  margin: 8px auto 0;
}

.title-wrapper__content {
  max-width: 507px;
}

.rating-company {
  margin: 0 0 0 auto;
}

.rating-company-values {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 15px;
}

.rating-val {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  line-height: 130%;
  margin: 0 8px 0 0;
  color: var(--dk-dark);
}

.adding-review {
  display: none;
}

.adding-review__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 24px;
}

.adding-review__head h3 {
  width: -moz-fit-content;
  width: fit-content;
}

.adding-review-product {
  display: block;
  margin: 32px 0 0;
}

.ordered-product {
  top: 110px;
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--dk-grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
}

.ordered-product .promo-label-list {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
}

.ordered-product .promo-label {
  font-weight: var(--fw-regular);
}

.rating-star {
  display: inline-flex;
  margin: 0 0 0 8px;
  position: relative;
}

.rating-star input {
  display: none;
}

.rating-star input:checked~label svg {
  fill: var(--dk-star);
}

.rating-star label {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px 0 0;
  position: relative;
  fill: var(--dk-warn-bg);
  z-index: 1;
  cursor: pointer;
}

.rating-star label:last-child {
  margin: 0;
}

.rating-star label svg {
  pointer-events: none;
}

.radio-group {
  display: flex;
}

.star-rating {
  margin: 0 0 0 8px;
  position: relative;
}

.star-rating input {
  display: none;
}

.star-rating label {
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
  position: relative;
  fill: var(--dk-warn-bg);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.star-rating label:last-child {
  margin: 0;
}

.star-rating label svg {
  fill: var(--dk-star);
}

.star-rating input:checked+label~label svg {
  fill: var(--dk-warn-bg);
}

.form-review textarea {
  height: 104px;
}

.label-file {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 28px 16px;
  text-align: center;
  border: 1px dashed var(--dk-grey-bg);
  border-radius: var(--radius-sm);
  color: var(--dk-grey-500);
  cursor: pointer;
}

.label-file a {
  margin: 0 auto;
}

.label-file input {
  display: none;
}

.label-file.drop-zone--over {
  border: 1px dashed var(--dk-dark);
}

.jFiler {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.dropzone {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#upload-queue {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  width: 100%;
}

#upload-queue .wrap {
  height: 100px;
  margin: 0 20px 20px 0;
  border: 1px solid var(--dk-border);
  border-radius: var(--radius-xs);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-width: 100px;
  position: relative;
}

#upload-queue .wrap img {
  max-height: 100%;
  max-width: 100%;
  flex-shrink: 0;
}

#upload-queue .wrap .delete {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8117647059);
  border-radius: var(--radius-xl);
  top: 5px;
  right: 5px;
}

#upload-queue .wrap .delete .svg-icon {
  stroke: #000;
  cursor: pointer;
}

.fileup-file {
  margin: 0 10px 10px 0;
}

.fileup-file:last-child {
  margin: 0 0 10px;
}

.add-reviews.disabled {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--dk-grey-bg);
  color: var(--dk-grey-300);
  cursor: initial;
}

.add-reviews.disabled::before {
  display: none;
}

.tooltip-wrapper {
  position: relative;
  z-index: 2;
  margin: 0 2px 0 0;
}

.tooltip-wrapper:hover .tooltip-body {
  display: block;
}

.tooltip-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tooltip-body {
  position: absolute;
  left: -20px;
  bottom: 100%;
  margin: 0 0 14px;
  max-width: 190px;
  min-width: 190px;
  color: var(--dk-white);
  padding: 12px 24px;
  font-size: var(--fs-xs);
  background: var(--dk-text);
  border-radius: var(--radius-md);
  text-align: left;
  z-index: 2;
  display: none;
}

.tooltip-body::before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 18px;
  border-top: 14px solid var(--dk-text);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}

.name-user-answer {
  font-weight: var(--fw-medium);
  margin: 0 0 0 8px;
}

.adding-review-user {
  padding: 0 0 0 32px;
  border-left: 1px solid var(--dk-dark);
  margin: 32px 0 0;
}

.reviews-gallery {
  width: 100%;
}

.reviews-gallery__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 14px 24px 0 0;
}

.reviews-gallery__item img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-thanks .box-text {
  max-width: 655px;
}

.page-thanks .btn {
  margin: 40px 0 0;
}

.loader-checked {
  width: 78px;
  height: 78px;
  background: var(--dk-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 32px;
  padding: 20px;
  fill: green;
  position: relative;
}

.loader-checked .circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
}

.loader-checked .circle__item {
  width: 100%;
  height: 100%;
  position: relative;
}

.loader-checked .circle__spinner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.loader-checked .circle__spinner .path {
  stroke: green;
  stroke-linecap: round;
  animation: dash 10s linear forwards;
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dasharray: 130, 150;
    stroke-dashoffset: 0;
  }
}

.sale-key__content {
  max-width: 655px;
}

.sale-key__content .box-text {
  max-width: 500px;
}

.form-sale {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 40px 0 0att;
}

.form-sale .copy-line {
  margin: 0 16px 0 0;
  max-width: 233px;
  width: 100%;
}

.form-sale .btn {
  margin: 0;
}

.reviews-modal-slider .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--dk-text);
  padding: 8px;
  stroke: var(--dk-text);
  fill: none;
}

.reviews-modal-slider .slick-arrow svg {
  transform: none;
}

.reviews-modal-slider .slick-arrow:hover {
  background: var(--dk-dark);
  border-color: var(--dk-dark);
  stroke: var(--dk-white);
}

.reviews-modal-slider .slick-prev {
  left: -65px;
}

.reviews-modal-slider .slick-next {
  right: -65px;
}

.reviews-modal-slide {
  width: 100%;
  display: flex;
  align-items: start;
}

.reviews-modal-slide__photo {
  max-width: 800px;
  height: 610px;
  width: 100%;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.reviews-modal-slide__photo img {
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.reviews-modal-slide__content {
  width: calc(100% - 800px - 16px);
  margin: 0 0 0 auto;
  height: auto;
}

.reviews-modal-slide__content:last-child {
  margin: 0 0 0 auto;
}

.reviews-modal-slide .reviews-product-box__footer {
  margin: 0;
}

.gallery-photo-modal {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 16px 0 0;
}

.gallery-photo-modal__item {
  width: 96px;
  height: 96px;
  min-width: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px 8px 0;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-photo-modal__item img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.official-business h2 {
  margin: 0 0 8px;
}

.official-business .box-text {
  margin: 0 0 24px;
  max-width: 411px;
}

.official-business .btn-group .btn {
  margin: 0 auto 0 0;
  width: calc(50% - 5px);
}

.official-business .btn-group .btn:last-child {
  margin: 0;
}

.official-requisites-box {
  width: 100%;
  background: var(--dk-grey-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  font-size: var(--fs-base);
  margin: 0 0 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.official-requisites-box p {
  font-size: var(--fs-md);
}

.official-requisites-box h4 {
  font-size: var(--fs-lg);
  width: 100%;
}

.official-requisites-box .list-requisites {
  margin: 24px 0 0;
}

.official-requisites-box .list-requisites li {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin: 0 0 16px;
}

.official-requisites-box .list-requisites li:last-child {
  margin: 0;
}

.official-requisites-box .list-requisites li span {
  min-width: 208px;
  display: block;
  color: var(--dk-text);
}

.official-requisites-box__position {
  margin: 8px 0 0;
  display: block;
  width: 100%;
}

.official-requisites-box .list-requisites-documents {
  margin: 75px 0 0;
}

.official-requisites-bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("../img/requisites-bg.svg") no-repeat center;
  background-size: 100%;
  width: 332px;
  height: 116px;
}

.btn-check-time2 {
  display: none;
}

.list-requisites-documents {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list-requisites-documents li span {
  color: var(--dk-text);
  display: block;
  margin: 0 0 8px;
}

.list-requisites-documents li p {
  font-size: var(--fs-lg);
  color: var(--dk-dark);
}

.legislative-wrapper {
  width: 100%;
  padding: 32px;
  border-radius: var(--radius-2xl);
  background: var(--dk-soft);
}

.legislative-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 412px;
  width: 100%;
  border-radius: var(--radius-lg);
}

.legislative-image img {
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.legislative-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: var(--fs-md);
  padding: 32px;
}

.legislative-content .btn {
  margin: 24px 0 0;
  color: var(--dk-dark);
}

.legislative-content .btn:hover {
  color: var(--dk-white);
}

.time-tested .box-text {
  margin: 0 0 40px;
}

.time-tested .about-in-numbers-box__body {
  padding: 28px 0 0;
}

.time-tested .about-in-numbers-box .box-text {
  margin: 0;
}

/* «Проверены временем» — три простые нейтральные карточки (число + подпись),
   базовый стиль .about-in-numbers-box без тинтов/иконок. Без накруток. */

.feedback-wrapper {
  background: var(--dk-soft);
}

.feedbacks-image {
  height: 359px;
  box-shadow: 0 14px 31px 0 rgba(0, 0, 0, 0.04), 0 57px 57px 0 rgba(0, 0, 0, 0.03), 0 128px 77px 0 rgba(0, 0, 0, 0.02);
}

.we-appreciate {
  margin: 0 0 40px;
}

.we-appreciate-text {
  color: var(--dk-dark);
  font-size: 124px;
  font-weight: var(--fw-regular);
  letter-spacing: -1px;
  line-height: 0.9;
  width: 100%;
}

.we-appreciate-text span {
  font-weight: var(--fw-regular);
}

.we-appreciate-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.we-appreciate-wrapper .we-appreciate-text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0 0;
}

.we-appreciate-wrapper .box-text {
  max-width: 431px;
  font-size: var(--fs-md);
}

.we-appreciate-text2 {
  text-align: right;
}

.help-section {
  padding: 32px 0;
  display: none;
}

.page-faq h1 {
  /*margin: 0 0 48px;*/
  width: 100%;
}

.page-faq .tabs__caption-product {
  width: -moz-fit-content;
  width: fit-content;
}

.page-faq .tabs__caption-product li {
  flex: none;
  padding: 10px 24px;
}

.page-faq-wrapper {
  width: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.page-faq-wrapper__content {
  width: calc(100% - 310px);
  padding: 0 32px 0 0;
}

.page-faq-wrapper__sidebar {
  max-width: 310px;
  width: 100%;
}

.faq-category {
  width: 100%;
  margin: 0 0 40px;
}

.faq-category:last-child {
  margin: 0;
}

.faq-category__name {
  margin: 0 0 0 28px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  color: var(--dk-text);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: var(--dk-soft);
}

.page-thanks-order h1 {
  margin: 0 auto 24px;
}

/* Серый фон страницы — белая карточка читается контрастом, а не только тенью (как корзина/чекаут) */
.page.page-thanks-order {
  background: var(--dk-grey-bg);
  padding-bottom: 48px;
}

.thanks-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  width: 124px;
  height: 124px;
}

.thanks-animation img {
  width: 100%;
  height: 100%;
}

.thanks-order__content {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--dk-white);
  border: 1px solid var(--dk-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.thanks-order__content-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 748px;
}

.thanks-order__content .btn-group {
  justify-content: center;
}

.thanks-order__content .box-text {
  margin: 24px auto;
  font-size: var(--fs-sm);
}

/* ----- Thanks: список товаров (мульти-заказ), выровнен по левому краю ----- */
.thanks-order__items {
  margin-top: 24px;
  text-align: left;
}
.thanks-order__items-title {
  margin: 0 0 12px;
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  text-align: left;
}
.thanks-order__items-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.thanks-order__item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--dk-grey-bg);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  text-align: left;
}
.thanks-order__item-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  object-fit: contain;
  background: var(--dk-white);
  flex-shrink: 0;
  padding: 4px;
}
.thanks-order__item-main {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.thanks-order__item-name {
  display: block;
  font-weight: var(--fw-semibold);
  color: var(--dk-dark);
  text-decoration: none;
  font-size: var(--fs-sm);
  line-height: var(--lh-heading);
  text-align: left;
}
.thanks-order__item-name:hover {
  color: var(--dk-dark);
}
.thanks-order__item-meta {
  color: var(--dk-grey-500);
  font-size: var(--fs-xs);
  margin-top: 4px;
  text-align: left;
}

/* ----- Thanks: CTA — поддержка как акцентная, заказ как вторичная ----- */
.thanks-order__cta-group {
  gap: 12px;
  margin-top: 24px;
}
.thanks-order__cta-group .btn {
  margin: 0 !important;
  min-width: 220px;
  font-size: var(--fs-sm);
}
.thanks-order__cta-support {
  background: var(--dk-dark);
  color: var(--dk-white);
  border: none;
  box-shadow: var(--shadow-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.thanks-order__cta-support:hover,
.thanks-order__cta-support:focus {
  background: var(--dk-dark-h) !important;
  color: var(--dk-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}
.thanks-order__cta-support-icon {
  width: 20px;
  height: 20px;
  fill: var(--dk-white);
}
.thanks-order__cta-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 540px) {
  .thanks-order__cta-group .btn { width: 100%; min-width: 0; }
}

/* Плоско внутри белой карточки — не «карточка-в-карточке» (анти-паттерн) */
.order-information {
  width: 100%;
  padding: 4px 0;
}

.order-information__list p,
.order-information__list span {
  position: relative;
  z-index: 1;
  background: var(--dk-white);
}

.order-information__list p {
  padding: 0 8px 0 0;
}

.order-information__list span {
  padding: 0 0 0 8px;
}

.order-information__list li {
  position: relative;
  z-index: 1;
}

.order-information__list li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: url("../img/line-characteristics.svg") no-repeat left center;
  background-size: cover;
  bottom: 3px;
  left: 0;
}

.promocode-box {
  width: 100%;
  margin: 16px 0 0;
  padding: 26px;
  border-radius: var(--radius-2xl);
  color: var(--dk-white);
  background: linear-gradient(to right, rgb(24, 24, 27) 0%, rgb(52, 42, 65));
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}

.promocode-box p {
  margin: 32px auto 0;
  display: block;
  font-size: var(--fs-md);
}

.countdown-time2 {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
}

.countdown-time2 .labelformat {
  width: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: var(--dk-white);
  font-family: "Inter", sans-serif;
}

.countdown-time2 .timerDisplay {
  padding: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
}

.countdown-time2 .displaySection {
  border: none;
  width: auto;
  flex: 1;
  padding: 0 18px 0 0;
  position: relative;
}

.countdown-time2 .displaySection:last-child {
  padding: 0;
}

.countdown-time2 .displaySection::after {
  content: ":";
  display: inline-block;
  position: absolute;
  right: 7px;
  top: 20px;
}

.countdown-time2 .numberDisplay {
  font-size: var(--fs-xl);
  color: var(--dk-white);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

.countdown-time2 .periodDisplay {
  color: var(--dk-white);
  display: block;
  text-align: center;
  font-weight: var(--fw-regular);
  font-size: var(--fs-sm);
  margin: 8px 0 0;
  text-transform: lowercase;
}

.sales-box {
  width: 100%;
  background: var(--dk-soft);
  border-radius: var(--radius-2xl);
  padding: 24px;
}

.sales-box h3 {
  margin: 0 0 24px;
  font-size: var(--fs-xl);
}

.sales-box .description-text {
  margin: 24px 0 0;
  font-size: var(--fs-xs);
  color: var(--dk-grey-500);
}

.sales-box .link-copy-acticle {
  width: 100%;
  justify-content: space-between;
}

.copy-box {
  width: 100%;
  background: var(--dk-white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
}