.t-name_xl{font-weight:500!important}
.t-name_md{font-weight:500!important}
@media(min-width:1440px){
.t-container_fluid {width: 1440px!important}
}
@media screen and (min-width:981px){
.t-store__prod-snippet__container {padding-top: 120px!important}
}
@media screen and (max-width:640px){
.t-container_fluid {padding-top: 20px!important;}
}



/* ============================================================
   ONAIL — общие стили сайта
   Вставляется в Tilda: Настройки сайта → Ещё → HTML-код внутрь 
   обёрнутым в  ... 
   ------------------------------------------------------------
   Все значения сняты из Figma «Редизайн сайта ONAIL».
   Префикс o- у всех классов, чтобы не конфликтовать со стилями Tilda.
   ============================================================ */

:root {
  /* ---------- Цвета ---------- */
  --o-red:        #D90C18;  /* бренд, логотип */
  --o-ink:        #504D4D;  /* основной текст, тёмные кнопки */
  --o-ink-2:      #808080;  /* названия товаров, плейсхолдеры */
  --o-ink-3:      #9D9D9D;  /* текст в подвале */
  --o-ink-4:      #A4A4A4;  /* подписи, бордеры кнопок-контактов */
  --o-ink-5:      #C2C2C2;  /* юридические сноски */

  --o-line:       #EAEAEA;  /* бордер попапа */
  --o-line-2:     #A3A3A3;  /* бордер чекбокса */

  --o-bg:         #F8F8F8;  /* фон страницы и шапки */
  --o-surface:    #FFFFFF;  /* карточки, поля ввода */
  --o-dark:       #363636;  /* фон подвала */

  /* ---------- Типографика ---------- */
  --o-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  --o-fs-10: 10px;   --o-lh-10: 14px;   /* юр. сноски */
  --o-fs-12: 12px;   --o-lh-12: 14.5px; /* пилюли, кнопки-контакты */
  --o-fs-13: 13px;   --o-lh-13: 15.7px; /* пункты меню */
  --o-fs-14: 14px;   --o-lh-14: 17.4px; /* названия товаров, ссылки подвала */
  --o-fs-16: 16px;   --o-lh-16: 22.4px; /* основной текст */
  --o-fs-17: 17px;   --o-lh-17: 20.3px; /* заголовки колонок подвала */
  --o-fs-18: 18px;   --o-lh-18: 21.8px; /* цена */
  --o-fs-23: 23px;   --o-lh-23: 32.2px; /* заголовок страницы */
  --o-fs-26: 26px;   --o-lh-26: 31.7px; /* логотип */

  /* ---------- Радиусы ---------- */
  --o-r-card:  15px;  /* карточка товара, textarea, попап */
  --o-r-btn:   30px;  /* кнопка «+» на карточке */
  --o-r-pill:  36px;  /* пилюли фильтра, кнопки, инпуты */
  --o-r-round: 100px; /* поля ввода в форме */

  /* ---------- Тени ---------- */
  --o-shadow: 0 5px 5px rgba(0, 0, 0, .25);

  /* ---------- Сетка ---------- */
  --o-container: 1288px;   /* контент-контейнер веба */
  --o-gap: 22px;           /* зазор в сетке каталога */
  --o-header-h: 70px;      /* высота шапки на вебе */

  /* ---------- Анимация ---------- */
  --o-ease: cubic-bezier(.4, 0, .2, 1);
  --o-dur: .25s;
}

/* ============================================================
   Сброс и база
   ============================================================ */

.o *,
.o *::before,
.o *::after { box-sizing: border-box; }

.o {
  font-family: var(--o-font);
  font-size: var(--o-fs-16);
  line-height: var(--o-lh-16);
  color: var(--o-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.o img,
.o svg { display: block; max-width: 100%; }

.o a { color: inherit; text-decoration: none; }

.o button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.o ul,
.o ol { margin: 0; padding: 0; list-style: none; }

.o p { margin: 0; }

/* Скрыть визуально, оставить для скринридеров */
.o-sr {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Контейнер
   Ширина контента 1288, боковые поля 76 на 1440.
   Ниже — резиновый с уменьшающимися полями.
   ============================================================ */

.o-container {
  width: 100%;
  max-width: calc(var(--o-container) + 32px);
  margin-inline: auto;
  padding-inline: 16px;
}

@media (min-width: 480px) {
  .o-container {
    max-width: calc(var(--o-container) + 48px);
    padding-inline: 24px;
  }
}

@media (min-width: 960px) {
  .o-container {
    max-width: calc(var(--o-container) + 80px);
    padding-inline: 40px;
  }
}

@media (min-width: 1440px) {
  .o-container {
    max-width: calc(var(--o-container) + 152px);
    padding-inline: 76px;
  }
}

/* ============================================================
   Показ / скрытие по брейкпойнтам
   моб  ≤ 479
   планшет  480 – 959
   веб  ≥ 960
   ============================================================ */

.o-only-web,
.o-only-tablet { display: none; }

@media (min-width: 480px) {
  .o-only-mob { display: none; }
  .o-only-tablet { display: block; }
}

@media (min-width: 960px) {
  .o-only-tablet { display: none; }
  .o-only-web { display: block; }
}

/* ============================================================
   Типографика
   ============================================================ */

.o-h1 {
  margin: 0;
  font-size: var(--o-fs-23);
  line-height: var(--o-lh-23);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--o-ink);
}

.o-caption {
  font-size: var(--o-fs-14);
  line-height: var(--o-lh-14);
  color: var(--o-ink-4);
}

.o-note {
  font-size: var(--o-fs-10);
  line-height: var(--o-lh-10);
  color: var(--o-ink-5);
}

/* ============================================================
   Кнопки
   ============================================================ */

/* Тёмная кнопка-таблетка: «Отправить», «Перейти к оформлению» */
.o-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 53px;
  padding: 0 32px;
  border-radius: var(--o-r-pill);
  background: var(--o-ink);
  color: #fff;
  font-size: var(--o-fs-14);
  line-height: var(--o-lh-14);
  font-weight: 600;
  text-transform: uppercase;
  transition: opacity var(--o-dur) var(--o-ease);
}

.o-btn:hover { opacity: .85; }

/* Кнопка-контакт: MAX / ТЕЛЕГРАМ / WHATSAPP — с бордером и стрелкой */
.o-btn-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 53px;
  padding: 0 20px;
  border: 1px solid var(--o-ink-4);
  border-radius: var(--o-r-pill);
  color: var(--o-ink);
  font-size: var(--o-fs-12);
  line-height: var(--o-lh-12);
  font-weight: 600;
  text-transform: uppercase;
  transition: border-color var(--o-dur) var(--o-ease),
              background-color var(--o-dur) var(--o-ease);
}

.o-btn-contact:hover {
  border-color: var(--o-ink);
  background: rgba(0, 0, 0, .02);
}

/* Пилюля фильтра каталога */
.o-pill {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 22px;
  border-radius: var(--o-r-pill);
  background: var(--o-surface);
  color: var(--o-ink);
  font-size: var(--o-fs-12);
  line-height: var(--o-lh-12);
  white-space: nowrap;
  transition: background-color var(--o-dur) var(--o-ease),
              color var(--o-dur) var(--o-ease);
}

.o-pill:hover { background: #EFEFEF; }

.o-pill.is-active {
  background: var(--o-ink);
  color: #fff;
}

/* ============================================================
   Поля формы
   ============================================================ */

.o-input,
.o-textarea {
  width: 100%;
  padding: 16px 21px;
  border: 0;
  background: var(--o-surface);
  color: var(--o-ink);
  font-family: var(--o-font);
  font-size: var(--o-fs-14);
  line-height: 19.6px;
  outline: none;
  transition: box-shadow var(--o-dur) var(--o-ease);
}

.o-input {
  height: 53px;
  border-radius: var(--o-r-round);
}

.o-textarea {
  min-height: 90px;
  border-radius: var(--o-r-card);
  resize: vertical;
}

.o-input::placeholder,
.o-textarea::placeholder { color: #807F7F; }

.o-input:focus,
.o-textarea:focus { box-shadow: 0 0 0 1px var(--o-ink-4); }

.o-input.is-error,
.o-textarea.is-error { box-shadow: 0 0 0 1px var(--o-red); }

/* Чекбокс согласия */
.o-check {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.o-check input { position: absolute; opacity: 0; pointer-events: none; }

.o-check__box {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border: 1px solid var(--o-line-2);
  background: transparent;
  transition: background-color var(--o-dur) var(--o-ease),
              border-color var(--o-dur) var(--o-ease);
}

.o-check input:checked + .o-check__box {
  border-color: var(--o-ink);
  background: var(--o-ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px 8px no-repeat;
}

.o-check input:focus-visible + .o-check__box { outline: 2px solid var(--o-ink-4); outline-offset: 2px; }

.o-check__text {
  font-size: var(--o-fs-10);
  line-height: var(--o-lh-10);
  color: var(--o-ink-5);
}

.o-check__text a { text-decoration: underline; }

/* ============================================================
   Карточка товара (каталог)
   Веб: 305×398, радиус 15, зазор 22, 4 колонки
   ============================================================ */

.o-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--o-gap);
}

@media (min-width: 480px) { .o-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .o-grid { grid-template-columns: repeat(4, 1fr); } }

.o-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--o-r-card);
  background: var(--o-surface);
  transition: box-shadow var(--o-dur) var(--o-ease),
              transform var(--o-dur) var(--o-ease);
}

.o-card:hover { box-shadow: var(--o-shadow); }

.o-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 78px 35px 36px;
}

.o-card__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform var(--o-dur) var(--o-ease);
}

.o-card:hover .o-card__media img { transform: scale(1.04); }

.o-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 23px 23px;
  margin-top: auto;
}

.o-card__title {
  font-size: var(--o-fs-14);
  line-height: var(--o-lh-14);
  color: var(--o-ink-2);
}

.o-card__price {
  font-size: var(--o-fs-18);
  line-height: var(--o-lh-18);
  color: var(--o-ink);
}

/* Кнопка «+» → при наведении раскрывается в «+ 🛒» */
.o-card__add {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 34px;
  height: 34px;
  padding: 0 7px;
  border-radius: var(--o-r-btn);
  background: transparent;
  overflow: hidden;
  transition: width var(--o-dur) var(--o-ease),
              background-color var(--o-dur) var(--o-ease);
}

.o-card:hover .o-card__add,
.o-card__add:focus-visible {
  width: 70px;
  background: var(--o-ink);
}

.o-card__add svg { width: 20px; height: 20px; flex: none; }
.o-card__add svg path,
.o-card__add svg line { stroke: var(--o-ink); transition: stroke var(--o-dur) var(--o-ease); }

.o-card:hover .o-card__add svg path,
.o-card:hover .o-card__add svg line { stroke: #fff; }

/* Иконка корзины видна только в раскрытом состоянии */
.o-card__add .o-icon-cart { opacity: 0; transition: opacity var(--o-dur) var(--o-ease); }
.o-card:hover .o-card__add .o-icon-cart { opacity: 1; }

/* ============================================================
   Утилиты прокрутки (горизонтальные скроллы)
   ============================================================ */

.o-hscroll {
  display: flex;
  gap: var(--o-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.o-hscroll::-webkit-scrollbar { display: none; }
.o-hscroll > * { scroll-snap-align: start; flex: none; }

/* ============================================================
   Уважение к настройкам доступности
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .o *,
  .o *::before,
  .o *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}










.o-pcard {
  --o-photo-gap: 1.73%;
  --o-sticky-top: 30px;
}

.o-pcard .o-slide-off { display: none !important; }

@media screen and (min-width: 640px) {
  .o-pcard .t-slds,
  .o-pcard .t-slds__main,
  .o-pcard .t-slds__container { height: auto !important; }

  .o-pcard .t-slds__items-wrapper {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    transition: none !important;
  }

  .o-pcard .t-slds__item {
    float: none !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 0 var(--o-photo-gap) !important;
    padding: 0 !important;
  }
  .o-pcard .t-slds__item:last-of-type { margin-bottom: 0 !important; }

  .o-pcard .t-slds__wrapper,
  .o-pcard .t-slds__imgwrapper { width: 100% !important; height: auto !important; }

  .o-pcard .t-slds__imgwrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0 !important;
  }

  .o-pcard .t-slds__bgimg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
  }

  .o-pcard .t-slds__arrow_container,
  .o-pcard .t-slds__thumbsbullet-wrapper,
  .o-pcard .t-slds__bullet_wrapper,
  .o-pcard .t-slds__caption { display: none !important; }

  .o-pcard .t-catalog__prod-popup__col-right,
  .o-pcard.t744 .t744__col.t-col_4 {
    position: sticky;
    top: var(--o-sticky-top);
    align-self: flex-start;
  }
}

@media screen and (max-width: 639px) {
  .o-pcard .t-slds,
  .o-pcard .t-slds__main,
  .o-pcard .t-slds__container { height: auto !important; }

  .o-pcard .t-slds__items-wrapper {
    display: flex !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    transition: none !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .o-pcard .t-slds__items-wrapper::-webkit-scrollbar { display: none; }

  .o-pcard .t-slds__item {
    float: none !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    height: auto !important;
    scroll-snap-align: start;
  }

  .o-pcard .t-slds__wrapper,
  .o-pcard .t-slds__imgwrapper { width: 100% !important; height: auto !important; }

  .o-pcard .t-slds__imgwrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0 !important;
  }

  .o-pcard .t-slds__bgimg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
  }

  .o-pcard .t-slds__arrow_container { display: none !important; }
}






@media screen and (min-width: 960px) {
  .o-pcard.t744 .t-container.js-product-single {
    display: flex !important;
    align-items: flex-start;
    max-width: 1288px !important;
    width: 100% !important;
    padding: 0 !important;
  }
  .o-pcard.t744 .t744__col_first {
    width: 49.30% !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
  }
  .o-pcard.t744 .t744__col.t-col_4 {
    width: 44.10% !important;
    max-width: none !important;
    flex: 0 0 44.10% !important;
    margin: 0 0 0 6.60% !important;
    padding: 0 !important;
    float: none !important;
  }
  .o-pcard.t744 .t744__info { padding: 0 !important; margin: 0 !important; }
  .o-pcard.t744 .t744__textwrapper { padding: 36px 0 0 !important; margin: 0 !important; }
}

.o-pcard.t744 .t744__title-wrapper { margin: 0 0 17px !important; padding: 0 !important; }
.o-pcard.t744 .t744__title {
  font-size: 23px;
  line-height: 32.2px;
  font-weight: 400;
  color: #504D4D;
  margin: 0 !important;
  padding: 0 !important;
}
.o-pcard.t744 .t744__title_small { display: none !important; }

.o-pcard.t744 .t744__price-wrapper { margin: 0 0 45px !important; padding: 0 !important; }
.o-pcard.t744 .t744__price,
.o-pcard.t744 .t744__price-value,
.o-pcard.t744 .t744__price-currency {
  font-size: 20px;
  line-height: 24.2px;
  font-weight: 600;
  color: #504D4D;
}

.o-pcard.t744 .t744__btn-wrapper {
  margin: 0 0 47px !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 24px;
}
.o-pcard.t744 .t744__btn-wrapper .t-btn {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 161px !important;
  height: 53px !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 36px !important;
  background: linear-gradient(90deg, #504D4D 0%, #767171 21.57%, #504D4D 100%) !important;
  color: #fff !important;
  font-size: 14px !important;
  line-height: 20.2px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  box-shadow: none !important;
}

.o-pcard.t744 .t744__descr {
  font-size: 14px !important;
  line-height: 20.2px !important;
  font-weight: 400;
  color: #626060 !important;
  margin: 0 0 43px !important;
  padding: 0 !important;
  max-width: 455px;
}





/* ONAIL — карточка товара: плитки и ссылки */
.o-pcard.t744 .o-ask { font-size: 14px; line-height: 17.4px; color: #626060; text-decoration: none; white-space: nowrap; }
.o-pcard.t744 .o-spec { display: flex; gap: 8px; margin: 0 0 39px; }
.o-pcard.t744 .o-spec__i {
  flex: 1 1 0; min-width: 0; height: 90px; box-sizing: border-box;
  padding: 9px 9px 0; border: 1px solid #EAEAEA; border-radius: 9px;
  display: flex; flex-direction: column; align-items: center;
}
.o-pcard.t744 .o-spec__ico { width: 30px; height: 30px; margin-bottom: 7px; background: center/contain no-repeat; flex: none; }
.o-pcard.t744 .o-spec__k { font-size: 9px; line-height: 12.9px; color: #9C9191; text-align: center; }
.o-pcard.t744 .o-spec__v { font-size: 13px; line-height: 18.1px; font-weight: 600; color: #9C9191; text-align: center; }
.o-pcard.t744 .o-tochar { display: block; font-size: 14px; line-height: 17.4px; color: #979797; text-decoration: none; }





/* ONAIL — карточка товара: правки */
.o-pcard .t-slds__item { margin: 0 0 var(--o-photo-gap) !important; }
.o-pcard .t-slds__item.o-slide-last { margin-bottom: 0 !important; }

.o-pcard.t744 .t744__title { font-weight: 400 !important; color: #504D4D !important; }

.o-pcard.t744 .t744__btn-wrapper .t-btn {
  background: linear-gradient(296deg, #504D4D -14.74%, #767171 8.61%, #504D4D 93.54%) !important;
}

.o-pcard.t744 .o-ask,
.o-pcard.t744 .o-tochar,
.o-pcard.t744 .o-spec {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
}
.o-pcard.t744 .o-spec__v { font-weight: 600; }


.o-pcard.t744 .t744__title { font-size: 23px !important; line-height: 32.2px !important; }
.o-pcard.t744 .t744__btn-wrapper .t-btn {
  background: linear-gradient(119deg, #767171 0%, #504D4D 100%) !important;
}


.o-pcard.t744 .o-arrow {
  display: inline-block;
  width: 10.7px;
  height: 9.2px;
  margin-left: 6px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.7' height='9.2' viewBox='0 0 10.7 9.2'%3E%3Cpath d='M0 4.6H10.2M5.6 0.5L10.2 4.6L5.6 8.7' stroke='%23000' stroke-width='1' fill='none'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.7' height='9.2' viewBox='0 0 10.7 9.2'%3E%3Cpath d='M0 4.6H10.2M5.6 0.5L10.2 4.6L5.6 8.7' stroke='%23000' stroke-width='1' fill='none'/%3E%3C/svg%3E") no-repeat center/contain;
}






/* ONAIL — карточка товара: планшет и моб */
@media screen and (min-width: 640px) and (max-width: 959px) {
  .o-pcard.t744 .t-container.js-product-single { display: flex !important; align-items: flex-start; max-width: none !important; width: 100% !important; padding: 0 3.125% !important; box-sizing: border-box; }
  .o-pcard.t744 .t744__col_first { width: 45.17% !important; max-width: none !important; flex: 0 0 45.17% !important; padding: 0 !important; margin: 0 !important; float: none !important; }
  .o-pcard.t744 .t744__col.t-col_4 { width: 48.33% !important; max-width: none !important; flex: 0 0 48.33% !important; margin: 0 0 0 6.5% !important; padding: 0 !important; float: none !important; }
  .o-pcard.t744 .t744__info { padding: 0 !important; margin: 0 !important; }
  .o-pcard.t744 .t744__textwrapper { padding: 0 !important; margin: 0 !important; }
  .o-pcard.t744 .t744__title-wrapper { margin: 0 0 1.72% !important; }
  .o-pcard.t744 .t744__title { font-size: 2.5vw !important; line-height: 3.5vw !important; }
  .o-pcard.t744 .t744__price-wrapper { margin: 0 0 4.84% !important; }
  .o-pcard.t744 .t744__price,
  .o-pcard.t744 .t744__price-value,
  .o-pcard.t744 .t744__price-currency { font-size: 2.1875vw !important; line-height: 2.64vw !important; }
  .o-pcard.t744 .t744__btn-wrapper { margin: 0 0 5.31% !important; gap: 2.5vw; }
  .o-pcard.t744 .t744__btn-wrapper .t-btn { width: 19.06vw !important; height: 5.47vw !important; font-size: 1.5625vw !important; line-height: 2.1vw !important; }
  .o-pcard.t744 .o-support { display: none !important; }
  .o-pcard.t744 .o-ask { font-size: 1.5625vw !important; line-height: 1.89vw !important; }
  .o-pcard.t744 .o-arrow { width: 1.67vw; height: 1.44vw; margin-left: .94vw; }
  .o-pcard.t744 .t744__descr { font-size: 1.5625vw !important; line-height: 2.1875vw !important; margin: 0 0 6.09% !important; max-width: none; }
  .o-pcard.t744 .o-spec {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    gap: 6px 4px !important;
    margin: 0 0 6.09% !important;
  }
  .o-pcard.t744 .o-spec__i { height: 6.72vw; flex-direction: row; align-items: center; justify-content: flex-start; padding: 0 1.4vw; gap: 1.4vw; background: #fff; border: 0 !important; border-radius: .97vw; }
  .o-pcard.t744 .o-spec__ico { width: 3.4vw; height: 3.4vw; margin: 0; }
  .o-pcard.t744 .o-spec__k,
  .o-pcard.t744 .o-spec__v { text-align: left; }
  .o-pcard.t744 .o-spec__k { font-size: 1.1vw !important; line-height: 1.5vw !important; }
  .o-pcard.t744 .o-spec__v { font-size: 1.5vw !important; line-height: 2vw !important; }
  .o-pcard.t744 .o-tochar { font-size: 1.5625vw !important; line-height: 1.89vw !important; }
}

@media screen and (max-width: 639px) {
  .o-pcard.t744 .t-container.js-product-single { display: block !important; max-width: none !important; width: 100% !important; padding: 0 !important; }
  .o-pcard.t744 .t744__col_first { width: 100% !important; max-width: none !important; padding: 0 !important; margin: 0 0 9.41vw !important; float: none !important; }
  .o-pcard.t744 .t744__col.t-col_4 { width: 100% !important; max-width: none !important; padding: 0 5.88% !important; margin: 0 !important; float: none !important; box-sizing: border-box; }
  .o-pcard.t744 .t744__info { padding: 0 !important; margin: 0 !important; }
  .o-pcard.t744 .t744__textwrapper { padding: 0 !important; margin: 0 !important; }
  .o-pcard.t744 .t744__title-wrapper { margin: 0 0 4.41vw !important; }
  .o-pcard.t744 .t744__title { font-size: 5.294vw !important; line-height: 7.412vw !important; }
  .o-pcard.t744 .t744__price-wrapper { margin: 0 0 10.88vw !important; }
  .o-pcard.t744 .t744__price,
  .o-pcard.t744 .t744__price-value,
  .o-pcard.t744 .t744__price-currency { font-size: 4.706vw !important; line-height: 5.706vw !important; }
  .o-pcard.t744 .t744__btn-wrapper { margin: 0 0 13.53vw !important; padding: 0 !important; display: flex !important; align-items: center; gap: 2.35vw; }
  .o-pcard.t744 .t744__btn-wrapper .t-btn { width: 72.35vw !important; height: 13.53vw !important; font-size: 3.529vw !important; line-height: 4.941vw !important; border-radius: 36px !important; }
  .o-pcard.t744 .o-support { display: inline-flex !important; align-items: center; justify-content: center; width: 13.53vw; height: 13.53vw; border-radius: 50%; background: linear-gradient(119deg, #767171 0%, #504D4D 100%); flex: none; }
  .o-pcard.t744 .o-support i { display: block; width: 6.35vw; height: 6.35vw; background: #fff; -webkit-mask: var(--o-chat) no-repeat center/contain; mask: var(--o-chat) no-repeat center/contain; }
  .o-pcard.t744 .o-ask { display: none !important; }
  .o-pcard.t744 .t744__descr { font-size: 3.529vw !important; line-height: 4.941vw !important; margin: 0 0 12.94vw !important; max-width: none; }
  .o-pcard.t744 .o-spec { display: flex !important; flex-direction: column; gap: 2.35vw !important; margin: 0 0 9.12vw !important; }
  .o-pcard.t744 .o-spec__i { flex: none !important; height: 18.82vw; flex-direction: row; align-items: center; justify-content: flex-start; padding: 0 0 0 5.29vw; gap: 9.41vw; background: #fff; border: 0 !important; border-radius: 2.72vw; }
  .o-pcard.t744 .o-spec__ico { width: 8.82vw; height: 8.82vw; margin: 0; }
  .o-pcard.t744 .o-spec__k,
  .o-pcard.t744 .o-spec__v { text-align: left; }
  .o-pcard.t744 .o-spec__k { font-size: 2.94vw !important; line-height: 3.56vw !important; }
  .o-pcard.t744 .o-spec__v { font-size: 4.12vw !important; line-height: 4.97vw !important; }
  .o-pcard.t744 .o-tochar { font-size: 3.529vw !important; line-height: 4.265vw !important; }
  .o-pcard.t744 .o-arrow { width: 3.15vw; height: 2.7vw; margin-left: 1.76vw; }
}

.o-pcard.t744 {
  --o-chat: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5Z' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='8.5' cy='12' r='1' fill='%23000'/%3E%3Ccircle cx='12' cy='12' r='1' fill='%23000'/%3E%3Ccircle cx='15.5' cy='12' r='1' fill='%23000'/%3E%3C/svg%3E");
}
</style>