/* ######################################### */
/* #            Настройка шрифтов          # */
/* ######################################### */

@font-face {
  font-family: "Manrope";
  font-weight: 200;
  src: url("/local/templates/default/fonts/Manrope/Manrope-ExtraLight.ttf");
}

@font-face {
  font-family: "Manrope";
  font-weight: 300;
  src: url("/local/templates/default/fonts/Manrope/Manrope-Light.ttf");
}

@font-face {
  font-family: "Manrope";
  font-weight: 400;
  src: url("/local/templates/default/fonts/Manrope/Manrope-Regular.ttf");
}

@font-face {
  font-family: "Manrope";
  font-weight: 500;
  src: url("/local/templates/default/fonts/Manrope/Manrope-Medium.ttf");
}

@font-face {
  font-family: "Manrope";
  font-weight: 600;
  src: url("/local/templates/default/fonts/Manrope/Manrope-SemiBold.ttf");
}

@font-face {
  font-family: "Manrope";
  font-weight: 700;
  src: url("/local/templates/default/fonts/Manrope/Manrope-Bold.ttf");
}

@font-face {
  font-family: "Manrope";
  font-weight: 800;
  src: url("/local/templates/default/fonts/Manrope/Manrope-ExtraBold.ttf");
}

.manrope {
  font-family: var(--font-family);
  font-style: normal;
  line-height: 1;
  font-optical-sizing: auto;
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-body);
}

.extra-light {
  font-weight: 200;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extra-bold {
  font-weight: 800;
}

.font-settings-body {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-body);
  line-height: 1;
}

a {
  color: inherit;
  /* цвет как у родителя */
  text-decoration: none;
  /* нет подчёркивания */
  background-color: transparent;
  /* прозрачный фон */
  cursor: pointer;
  /* курсор-указатель */
  font-weight: inherit;
  /* насыщенность как у родителя */
  line-height: inherit;
  /* высота строки как у родителя */
}

/* Для всех состояний */
a:hover,
a:active,
a:visited,
a:focus {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

textarea {
  /* Обнуляем отступы и границы */
  margin: 0;
  padding: 0;
  border: none;

  /* Убираем внутреннюю тень (Chrome/Safari) */
  box-shadow: none;

  /* Сбрасываем фоновый цвет и шрифт */
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;

  /* Отключаем resize (если нужно) */
  resize: none;

  /* Убираем стили автодополнения (Chrome) */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Убираем контур фокуса (осторожно: см. примечание ниже) */
  outline: none;

  /* Сохранение базового поведения текста */
  text-align: left;
  white-space: pre-wrap; /* Сохраняет переносы строк */
  overflow: auto; /* Обеспечивает прокрутку при переполнении */

  /* Сброс выравнивания и вертикального позиционирования */
  vertical-align: top;

  /* Ширина по умолчанию (избегаем 100% от родителя, если не нужно) */
  width: auto;
  min-width: 0;

  background-color: var(--background-light);
}

input,
textarea {
  /* Обнуляем отступы и границы */
  margin: 0;
  padding: 0;
  border: none;

  /* Убираем внутреннюю тень (Chrome, Safari) */
  box-shadow: none;

  /* Сбрасываем фоновый цвет и шрифт */
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;

  /* Отключаем стили автодополнения (Chrome) */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Убираем выделение при фокусе (опционально) */
  outline: none;

  /* Сохраняем поведение текста */
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
}

textarea {
  padding: 10px;
  font-size: var(--font-size-body);
  white-space: unset;
  overflow-y: scroll;
}

/* ######################################### */
/* #      Стандартные стили для кнопок     # */
/* ######################################### */
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-blue);
  outline: none;
  box-shadow: none;
  font-size: var(--font-size-button-text);
  font-weight: var(--font-weight-text-detail-card);
  min-width: calc((100vw - 960px) / (1920 - 960) * (140 - 100) + 100px);
  min-height: calc((100vw - 960px) / (1920 - 960) * (40 - 20) + 20px);
  max-width: 260px;
  width: fit-content;
  padding: calc((100vw - 960px) / (1920 - 960) * (10 - 5) + 5px)
    calc((100vw - 960px) / (1920 - 960) * (20 - 10) + 10px);
  line-height: 1;
  text-align: center;
  border-radius: var(--border-radius);
  color: var(--font-color-white);
  cursor: pointer;
  user-select: none;
  font-family: var(--font-family);
  transition: var(--transition);
}

.button.default {
  background-color: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--font-color-white);
}

.button.default:hover {
  background-color: var(--brand-orange);
  border-color: var(--brand-orange);
  color: var(--font-color-white);
}

.button.accent {
  background-color: var(--brand-orange);
  border-color: var(--brand-orange);
  color: var(--font-color-white);
}

.button.accent:hover {
  background-color: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--font-color-white);
}

.button.additional {
  background-color: var(--background-bold);
  border-color: var(--brand-bold);
  color: var(--font-color-white);
}

.button.bordered {
  background-color: var(--background-light);
  border: 1px solid var(--button-bordered-border-color);
  color: var(--font-color-main);
}

.button.bordered:hover {
  background-color: var(--brand-orange);
  color: var(--font-color-white);
  border-color: var(--brand-orange);
}

.button.medium {
  min-width: 120px;
  min-height: auto;
  font-size: 16px;
}

.button.small {
  min-width: 100px;
  min-height: auto;
  font-size: 14px;
}

.button:disabled {
  background-color: var(--background-bold);
  cursor: not-allowed;
  color: var(--font-color-white);
  border-color: var(--background-bold);
}

.button:disabled:hover {
  background-color: var(--background-bold);
  color: var(--font-color-white);
  border-color: var(--background-bold);
}

/* ######################################### */
/* #      Стандартные стили для иконок     # */
/* ######################################### */
/*
Структура HTML-кода
[div|a|span].icon > svg
*/
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  width: calc((100vw - 375px) / (1920 - 375) * (83 - 41) + 41px);
  height: calc((100vw - 375px) / (1920 - 375) * (83 - 41) + 41px);
  user-select: none;
}

.icon.min {
  max-width: 16px;
  max-height: 16px;
  min-width: 16px;
  min-height: 16px;
  width: 16px;
  height: 16px;
}

.icon svg {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon svg path {
  transition: all 0.3s ease-in-out;
}

.icon.favorites {
  --fill-color: var(--brand-blue);
}

.icon.favorites:hover {
  --fill-color: var(--brand-orange);
}

.icon.favorites.selected {
  --fill-color: var(--brand-orange);
}

/* ######################################### */
/* #              Темы курсоров            # */
/* ######################################### */
.cursor-auto {
  cursor: auto;
}

.cursor-default {
  cursor: default;
}

.cursor-none {
  cursor: none;
}

.cursor-context-menu {
  cursor: context-menu;
}

.cursor-help {
  cursor: help;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-progress {
  cursor: progress;
}

.cursor-wait {
  cursor: wait;
}

.cursor-cell {
  cursor: cell;
}

.cursor-crosshair {
  cursor: crosshair;
}

.cursor-text {
  cursor: text;
}

.cursor-vertical-text {
  cursor: vertical-text;
}

.cursor-alias {
  cursor: alias;
}

.cursor-copy {
  cursor: copy;
}

.cursor-move {
  cursor: move;
}

.cursor-no-drop {
  cursor: no-drop;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-all-scroll {
  cursor: all-scroll;
}

.cursor-col-resize {
  cursor: col-resize;
}

.cursor-row-resize {
  cursor: row-resize;
}

.cursor-n-resize {
  cursor: n-resize;
}

.cursor-e-resize {
  cursor: e-resize;
}

.cursor-s-resize {
  cursor: s-resize;
}

.cursor-w-resize {
  cursor: w-resize;
}

.cursor-ns-resize {
  cursor: ns-resize;
}

.cursor-ew-resize {
  cursor: ew-resize;
}

.cursor-ne-resize {
  cursor: ne-resize;
}

.cursor-nw-resize {
  cursor: nw-resize;
}

.cursor-se-resize {
  cursor: se-resize;
}

.cursor-sw-resize {
  cursor: sw-resize;
}

.cursor-nesw-resize {
  cursor: nesw-resize;
}

.cursor-nwse-resize {
  cursor: nwse-resize;
}

.cursor-grab {
  cursor: grab;
}

.cursor-grabbing {
  cursor: grabbing;
}

.cursor-zoom-in {
  cursor: zoom-in;
}

.cursor-zoom-out {
  cursor: zoom-out;
}

.user-select-none {
  user-select: none;
}

/* ######################################### */
/* #                Пагинация              # */
/* ######################################### */
.pagination {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  height: auto;
}

.pagination .pagination-arrow.disable {
  display: none;
}

.pagination .pagination-items {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.pagination .pagination-items .pagination-items--item {
  display: flex;
  aspect-ratio: 1/1;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-body);
  color: var(--brand-blue);
  line-height: 1;
  font-size: 24px;
}

.pagination .pagination-items .pagination-items--item.current {
  color: var(--font-color-white);
  min-width: 24px;
  min-height: 24px;
  max-width: 60px;
  max-height: 60px;
  width: calc((100vw - 375px) / (1920 - 375) * (60 - 24) + 24px);
  height: calc((100vw - 375px) / (1920 - 375) * (60 - 24) + 24px);
  background-color: var(--brand-orange);
  border-radius: 50%;
}

/* ######################################### */
/* #          Настройки слайдера           # */
/* ######################################### */
.slider {
  display: flex;
  flex-direction: column;
}

.slider .slider-arrows,
.slider .slider-content {
  flex-grow: 1;
}

.slider .slider-arrows {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

.slider .slider-arrows .slider-arrows--arrow {
  display: flex;
  max-width: 50px;
  max-height: 50px;
  flex-grow: 1;
  aspect-ratio: 1/1;
  border-radius: 50%;
  cursor: pointer;
}

/* ######################################### */
/* #             Общие стили               # */
/* ######################################### */
.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-grow-m {
  flex-grow: 1;
}

.flex-grow-a {
  flex-grow: 0;
}

.flex-direction-column {
  flex-direction: column;
}

.flex-direction-column-reverse {
  flex-direction: column-reverse;
}

.flex-direction-row {
  flex-direction: row;
}

.flex-direction-row-reverse {
  flex-direction: row-reverse;
}

.grid {
  display: grid;
}

.align-items-start {
  align-items: start;
}

.align-items-end {
  align-items: end;
}

.align-items-center {
  align-items: center;
}

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

.justify-content-start {
  justify-content: start;
}

.justify-content-end {
  justify-content: end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-space-around {
  justify-content: space-around;
}

.justify-content-space-between {
  justify-content: space-between;
}

.justify-content-space-evenly {
  justify-content: space-evenly;
}

.align-self-end {
  align-self: end;
}

.gap-s {
  gap: 10px;
}

.gap-m {
  gap: 20px;
}

.gap-l {
  gap: 30px;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-reset li {
  margin: 0;
  padding: 0;
}

.ol-decimal {
  list-style-type: decimal;
}

/* 1, 2, 3... (по умолчанию) */
.ol-decimal-zero {
  list-style-type: decimal-leading-zero;
}

/* 01, 02, 03... */
.ol-lower-roman {
  list-style-type: lower-roman;
}

/* i, ii, iii... */
.ol-upper-roman {
  list-style-type: upper-roman;
}

/* I, II, III... */
.ol-lower-alpha {
  list-style-type: lower-alpha;
}

/* a, b, c... */
.ol-upper-alpha {
  list-style-type: upper-alpha;
}

/* A, B, C... */
.ol-lower-latin {
  list-style-type: lower-latin;
}

/* аналогично lower-alpha */
.ol-upper-latin {
  list-style-type: upper-latin;
}

/* аналогично upper-alpha */
.ol-armenian {
  list-style-type: armenian;
}

/* армянская нумерация */
.ol-georgian {
  list-style-type: georgian;
}

/* грузинская нумерация */
.ol-none {
  list-style-type: none;
}

/* без номеров */
.ol-outside {
  list-style-position: outside;
}

/* номер вне текста */
.ol-inside {
  list-style-position: inside;
}

/* номер внутри текста */
.ul-disc {
  list-style-type: disc;
}

/* закрашенный кружок (по умолчанию) */
.ul-circle {
  list-style-type: circle;
}

/* незакрашенный кружок */
.ul-square {
  list-style-type: square;
}

/* квадрат */
.ul-none {
  list-style-type: none;
}

/* без маркера */
.ul-outside {
  list-style-position: outside;
}

/* вне текстового блока */
.ul-inside {
  list-style-position: inside;
}

/* внутри текстового блока */

.background-color-light {
  background-color: var(--background-light);
}

.background-color-regular {
  background-color: var(--background-regular);
}

.background-color-medium {
  background-color: var(--background-medium);
}

.background-color-bold {
  background-color: var(--background-bold);
}

.three-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  width: calc((100vw - 960px) / (1920 - 960) * (18 - 14) + 14px);
  min-height: 10px;
}

.three-lines .line {
  display: inline-block;
  width: 100%;
  height: calc((100vw - 960px) / (1920 - 960) * (2 - 1) + 1px);
  background-color: var(--background-light);
}

.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

input {
  border: none;
  outline: none;
  box-shadow: none;
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-body);
  color: var(--font-color-grey);
  min-height: var(--element-min-height);
  padding: 0 10px;
  background-color: var(--background-light);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  border: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px var(--background-light) inset; /* Заливает фон белым */
  -webkit-text-fill-color: var(--font-color-grey); /* Цвет текста */
  transition: background-color 5000s ease-in-out 0s !important;
}

input:focus {
  border-color: var(--brand-blue);
}

/* Стили для модальных окон */

.popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  z-index: 20;
  transition: all 0.2s ease-in-out;
  background-color: var(--overlay-background);
  backdrop-filter: var(--overlay-backdrop-filter);
}

.popup.active {
  opacity: 1;
  visibility: visible;
}

.popup .content {
  position: absolute;
  width: var(--width);
  height: var(--height);
  min-width: var(--min-width);
  min-height: var(--min-height);
  max-width: var(--max-width);
  max-height: var(--max-height);
  margin: 10px;
  background-color: var(--background-color);
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 5px));
  opacity: 0;
  visibility: hidden;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all 0.2s ease-in-out;
  z-index: 22;
}

.popup.active .content {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.popup .content div[data-popup-close-button] {
  display: flex;
  width: var(--width);
  height: var(--height);
  cursor: pointer;
  user-select: none;
}

.popup .popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.popup .popup-header .popup-header--title {
  font-size: var(--font-size-detail-card);
  font-weight: var(--font-weight-detail-card);
  text-transform: uppercase;
}

.popup .popup-header .popup-header--close {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup .popup-content {
  padding: 10px 0;
}

.popup .popup-footer {
  margin-top: 10px;
}

/* ERID STYLES */
.erid {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--font-color-grey);
  font-size: var(--font-size-add-text-menu);
  font-weight: var(--font-weight-add-text-menu);
  gap: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.erid .erid-popup {
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.erid,
.erid .erid-popup {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius);
  padding: 5px;
  transition: var(--transition);
}

.erid .erid-popup > span {
  text-wrap: nowrap;
  cursor: text;
}

.erid .erid-popup {
  opacity: 0;
  visibility: hidden;
}

.erid:hover .erid-popup {
  opacity: 1;
  visibility: visible;
}

/* Form styles */
.form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: calc((100vw - 960px) / (1920 - 960) * (40 - 30) + 30px);
  font-size: var(--font-size-main-text-menu);
}

@media screen and (min-width: 1920px) {
  .form {
    gap: 40px;
  }
}

.form .form-row {
  width: 100%;
}

.form .form-row .form-item-holder {
  position: relative;
}

.form .form-row .form-item-holder .form-label {
  position: absolute;
  left: 10px;
  top: 50%;
  display: inline-block;
  padding: 5px 0;
  cursor: text;

  font-size: var(--font-size-navigation-text-menu);

  color: var(--font-color-grey);
  transform: translateY(-50%);
  transition: var(--transition);
}

.form .form-row .form-item-holder .form-item--textarea + .form-label {
  top: 20px;
}

.form .form-row .form-item-holder .form-item {
  width: 100%;
  border: 1px solid var(--brand-blue);
  border-radius: var(--border-radius);
  background-color: var(--background-light);
  max-height: calc((100vw - 960px) / (1920 - 960) * (50 - 30) + 30px);
  min-height: calc((100vw - 960px) / (1920 - 960) * (50 - 30) + 30px);
}

.form .form-row .form-item-holder .form-item.form-item--textarea {
  min-height: calc(var(--font-size-body) * 12);
}

.form .form-row .form-item-holder .form-item,
.form .form-row .form-item-holder .form-item:-webkit-autofill,
.form .form-row .form-item-holder .form-item:focus,
.form .form-row .form-item-holder .form-item:active {
  -webkit-text-fill-color: var(--font-color-main);
  color: inherit;
}

.form .form-row .form-item-holder .form-item--error:not(.form-item) {
  position: absolute;
  top: 100%;
  padding: 2px 0;
  left: 10px;
  font-size: var(--font-size-add-text-menu);
  color: var(--error-color);
}

.form .form-row .form-item-holder .form-item:autofill + .form-label,
.form .form-row .form-item-holder .form-item.active + .form-label {
  top: 0;
  transform: translateY(-100%);
}

.form .form-row .form-item-note.only-mobile {
  display: none;
}

.form .form-row .form-item-holder .form-checkbox {
  display: flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  cursor: pointer;
  font-size: var(--font-size-body);
}

.form .form-row .form-item-holder .form-checkbox .checkbox {
  position: relative;
  overflow: hidden;
}

.form .form-row .form-item-holder .form-checkbox .form-checkbox--view {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  width: calc((100vw - 960px) / (1920 - 960) * (24 - 16) + 16px);
  height: calc((100vw - 960px) / (1920 - 960) * (24 - 16) + 16px);
  background-color: var(--background-bold);
  cursor: pointer;
  transition: var(--transition);
}

.form .form-row .form-item-holder .form-checkbox .form-checkbox--view::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("/local/templates/default/svg/form_checker.svg") no-repeat
    center;
  background-size: 80%;
  opacity: 0;
  visibility: hidden;
  background-color: var(--brand-orage);
  top: 6px;
  left: 0;
  transition: var(--transition);
}

.form
  .form-row
  .form-item-holder
  .form-checkbox
  .jcf-checked
  + .form-checkbox--view {
  background-color: var(--brand-orange);
}

.form
  .form-row
  .form-item-holder
  .form-checkbox
  .jcf-checked
  + .form-checkbox--view::after {
  opacity: 1;
  visibility: visible;
  top: 1px;
}

.form .form-row .form-item-holder .form-checkbox input[type="checkbox"] {
  display: none;
}

/* ALERTS */
.alert {
  width: 100%;
  border-radius: var(--border-radius);
  font-size: 14px;
  padding: 15px;
  margin-bottom: 0;
}

.alert.alert-danger {
  color: #a94442;
  background-color: #f2dede;
}
/* Лейблы товара */
.labels .labels-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc((100vw - 960px) / (1920 - 960) * (10 - 8) + 8px);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  padding: 5px 5px 4px 5px;
  border: 1px solid var(--brand-blue);
  color: var(--brand-blue);
  border-radius: var(--border-radius);
  user-select: none;
  text-wrap: nowrap;
}

.labels .labels-item.green {
  border-color: var(--label-green);
  color: var(--label-green);
}

.labels .labels-item.red {
  border-color: var(--label-red);
  color: var(--label-red);
}

.labels .labels-item.blue {
  border-color: var(--label-blue);
  color: var(--label-blue);
}

.labels .labels-item.orange {
  border-color: var(--label-orange);
  color: var(--label-orange);
}

.labels .labels-item.yellow {
  border-color: var(--label-yellow);
  color: var(--label-yellow);
}

.product-item .product-item--body .product-item--body--image,
.detail
  .product
  .product-inner
  .product-inner--media
  .media
  .media-main
  .image-container {
  position: relative;
}

.top-labels {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 5px;
  margin-top: 5px;
  z-index: 1;
  gap: 5px;
}

.top-labels .labels-item--container {
  --i: 1.15;
  width: calc((100vw - 960px) / (1920 - 960) * (calc(26 * var(--i)) - calc(20 * var(--i))) + calc(20px * var(--i)));
  height: calc((100vw - 960px) / (1920 - 960) * (calc(26 * var(--i)) - calc(20 * var(--i))) + calc(20px * var(--i)));
  padding: 2px;
  background-color: var(--background-regular);
  border-radius: var(--border-radius);
}

.top-labels .labels-item--container .labels-item {
  width: 100%;
  height: 100%;
  padding: 2px;
  font-size: calc((100vw - 960px) / (1920 - 960) * (14 - 10) + 10px);
}

.top-labels .labels-item--container[data-label-type="icon"] {
  background-color: transparent;
}

.top-labels .labels-item--container[data-label-type="icon"] .labels-item {
  border: none;
  background-position: center;
  background-size: contain;
}

/* Лейблы товара */

@media screen and (max-width: 960px) {
  .button {
    padding: 5px 10px;
  }

  .form .form-row .form-item-holder .form-item {
    min-height: 30px;
    max-height: 30px;
  }

  .form .form-row .form-item-holder .form-checkbox .form-checkbox--view {
    width: 18px;
    height: 18px;
  }
}

@media (hover: none) {
  /* Стили для устройств без hover (мобильные, планшеты) */

  .button.default:hover {
    background-color: var(--brand-blue) !important;
    border-color: var(--brand-blue) !important;
    color: var(--font-color-white) !important;
  }

  .button.accent:hover {
    background-color: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    color: var(--font-color-white) !important;
  }

  .button.additional:hover {
    background-color: var(--background-bold) !important;
    border-color: var(--brand-bold) !important;
    color: var(--font-color-white) !important;
  }

  .button.bordered:hover {
    background-color: var(--background-light) !important;
    border: 1px solid var(--button-bordered-border-color) !important;
    color: var(--font-color-main) !important;
  }

  .detail
    .product
    .product-inner
    .product-inner--media
    .media
    .media-slider--container
    .media-slider--arrow:hover {
    background-color: var(--brand-blue) !important;
  }
}

.no-scrollbar {
  /* Для Firefox */
  scrollbar-width: none;

  /* Для IE и Edge */
  -ms-overflow-style: none;
}

/* Для Chrome, Safari, Opera (WebKit‑браузеры) */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Медиа-запрос для всех экранов выше 1920 пикселей */
@media screen and (min-width: 1920px) {
  .button {
    min-width: 140px;
    min-height: 40px;
    padding: 5px 10px;
  }

  .actions-group .actions-measure {
    min-width: 92px !important;
  }

  .number .control {
    padding: 5px 10px !important;
  }

  .actions-group {
    gap: 10px !important;
  }

  .form .form-row .form-item-holder .form-item {
    max-height: 50px;
    min-height: 50px;
  }
}
