/* ============================================================================
   Brashop — редизайн карточки товара (Спринт 3).
   Единая адаптивная вёрстка. Все правила скоупятся под .pc-root, чтобы
   универсальные имена классов (.sizes/.colors/.actions/.dots/...) не протекали
   в листинг/попапы старой вёрстки (см. план §3.2).
   Источник дизайна: docs/pcard (desktop.real.html + инлайновый CSS макета).
   ============================================================================ */

.pc-root {
  --pc-red: #F45B50;
  --pc-red-dark: #E64B41;
  --pc-rose: #F9F3F3;
  --pc-line: #E3E3E3;
  --pc-col-gap: clamp(16px, 2.5vw, 40px);
  --pc-pad: 15px; /* как у .container — чтобы карточка не была шире меню */

  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--pc-pad) 40px;
  background: #fff;
  font-family: 'Arsenal', 'Times New Roman', serif;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}
/* Ширина карточки повторяет брейкпоинты .container, чтобы контент карточки
   не выходил за пределы контейнера меню (см. .container в main.css). */
@media (min-width: 1190px) { .pc-root { max-width: 1180px; } }
@media (min-width: 1366px) { .pc-root { max-width: 1300px; } }
@media (min-width: 1920px) { .pc-root { max-width: 1440px; } }

.pc-root * { box-sizing: border-box; }
.pc-root button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.pc-root a { color: inherit; text-decoration: none; }
.pc-root img { display: block; max-width: 100%; }
.pc-root h1, .pc-root h2, .pc-root h3, .pc-root p { margin: 0; }

/* ============================ HERO ======================================== */
.pc-root .hero {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px var(--pc-col-gap);
  padding-top: 24px;
}
.pc-root .hero > .gallery-col { grid-column: span 7; min-width: 0; }
.pc-root .hero > .product-info { grid-column: span 5; min-width: 0; }

/* gallery -------------------------------------------------------------- */
.pc-root .main-img {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-height: 1000px;
  border: 1px solid #DADADA;
  border-radius: 2px;
  overflow: hidden;
  background: #f5f5f5;
}
.pc-root .main-img > img,
.pc-root .main-img > .main-img-slide > img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.pc-root .main-img video { width: 100%; height: 100%; object-fit: cover; background: #000; }

/* левая колонка кадра: миниатюры сверху, пины под ними.
   Высота ограничена высотой кадра (max-height). Раньше у .thumbs-overlay стоял
   min-height: 412px — он заставлял колонку быть выше доступного места на узких
   кадрах (высота кадра = ширина колонки × 5/4 и отличается на разных экранах),
   из-за чего нижняя стрелка наезжала на нижнюю миниатюру. Теперь min-height нет,
   а миниатюры могут ужиматься, чтобы между стрелками всегда помещалось 4 штуки. */
.pc-root .pc-rail {
  position: absolute; top: 16px; left: 0; z-index: 6;
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  max-height: calc(100% - 32px);
}
.pc-root .thumbs-overlay {
  width: 68px; margin-left: 16px;
  display: flex; flex-direction: column;
  gap: 6px;
  flex: 0 1 auto; min-height: 0;
}
.pc-root .thumbs-overlay .thumbs-track { display: flex; flex-direction: column; gap: 8px; overflow: hidden; flex: 0 1 auto; min-height: 0; }
.pc-root .thumbs-overlay .thumb {
  flex: 0 1 auto; min-height: 0;
  width: 68px; height: 88px;
  border-radius: 6px; overflow: hidden; padding: 0;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.7);
  cursor: pointer; position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: all .15s;
}
.pc-root .thumbs-overlay .thumb.active {
  border: 1.5px solid var(--pc-red);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6);
}
.pc-root .thumbs-overlay .thumb img { width: 100%; height: 100%; object-fit: cover; }
.pc-root .thumb-placeholder { width: 100%; height: 100%; background: repeating-linear-gradient(45deg,#eee,#eee 6px,#f5f5f5 6px,#f5f5f5 12px); }
.pc-root .thumb-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; background: rgba(0,0,0,0.25);
}
.pc-root .thumbs-nav {
  flex: 0 0 auto; /* стрелки фиксированной высоты — ужимаются только миниатюры */
  width: 68px; height: 26px; border-radius: 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: #282828; box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  cursor: pointer; transition: background .15s;
}
.pc-root .thumbs-nav:hover { background: #fff; }
.pc-root .thumbs-nav.up { margin-bottom: 2px; }
.pc-root .thumbs-nav.down { margin-top: 2px; }
.pc-root .thumbs-nav[disabled] { opacity: .35; cursor: default; }

.pc-root .main-img-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.88);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; color: #282828;
  transition: background .15s, transform .15s; z-index: 5;
}
.pc-root .main-img-nav:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.pc-root .main-img-nav.prev { left: 108px; }
.pc-root .main-img-nav.next { right: 16px; }
/* пины товара (NEW/BASE/скидка) — под миниатюрами, прижаты к левому краю кадра.
   Ribbon-графики (.b_pins .el_*) приходят из main.css; здесь убираем абсолютное
   позиционирование из main.css (.b_pins{position:absolute;top:10;left:15}), чтобы
   пины текли в .pc-rail под миниатюрами, и восстанавливаем масштаб (жил в goods.css). */
.pc-root .pc-rail .b_pins.pc-pins {
  position: static;
  flex: 0 0 auto; /* пины не ужимаем — лишнюю высоту забирают миниатюры */
  top: auto; left: 0; right: auto; bottom: auto; margin: 0;
  transform: scale(.7);
  transform-origin: 0 0;
  pointer-events: none;
}

/* ============================ PRODUCT INFO =============================== */
.pc-root .product-info {
  position: sticky; top: 20px; align-self: start;
  display: flex; flex-direction: column; gap: 18px;
}
.pc-root .info-group { display: flex; flex-direction: column; gap: 12px; }

.pc-root .rating-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; color: #282828; flex-wrap: wrap;
}
.pc-root .rating-row .stars { color: var(--pc-red); display: inline-flex; gap: 3px; }
.pc-root .rating-row .score { font-size: 18px; font-weight: 400; line-height: 1; }
.pc-root .reviews-link {
  background: none; border: none; padding: 0; font-size: 18px; line-height: 1; color: #282828;
  font-family: inherit; text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
}
.pc-root .reviews-link:hover { color: var(--pc-red); }

/* title-flags (Только комплектом / Только в шоу-руме) */
.pc-root .title-flags { display: inline-flex; gap: 6px; flex-wrap: wrap; margin-left: auto; align-items: center; }
.pc-root .title-flag {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px 4px 8px; border-radius: 99px;
  font-size: 12px; font-weight: 500; cursor: help; outline: none;
  border: 1px solid transparent; background: var(--pc-rose); color: #282828;
  transition: box-shadow .15s ease; white-space: nowrap; line-height: 1.2;
  font-family: 'Manrope', Arial, sans-serif;
}
.pc-root .title-flag:hover, .pc-root .title-flag:focus-visible { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.pc-root .title-flag svg { flex-shrink: 0; }
.pc-root .title-flag-tip {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #fff; color: #282828; padding: 14px 16px; border-radius: 14px;
  width: 280px; font-size: 13px; line-height: 1.45; white-space: normal;
  opacity: 0; pointer-events: none; transition: opacity .15s ease, transform .15s ease;
  z-index: 50; box-shadow: 0 12px 36px rgba(0,0,0,0.18);
  display: flex; flex-direction: column; gap: 6px; text-align: left; border: 1px solid #ECECEC;
  font-family: 'Manrope', Arial, sans-serif;
}
.pc-root .title-flag-tip::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg); width: 12px; height: 12px;
  background: #fff; border-left: 1px solid #ECECEC; border-top: 1px solid #ECECEC;
}
.pc-root .title-flag:hover .title-flag-tip,
.pc-root .title-flag:focus-visible .title-flag-tip {
  opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto;
}
.pc-root .title-flag-tip .tf-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(0,0,0,0.45); }
.pc-root .title-flag-tip .tf-text { font-size: 14px; color: #282828; line-height: 1.45; }

.pc-root .product-title {
  font-size: clamp(30px, 4vw, 48px); font-weight: 700; line-height: 1.05;
  letter-spacing: -0.5px; margin-top: -4px;
}

/* price ---------------------------------------------------------------- */
.pc-root .price-row { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.pc-root .price-current { font-size: clamp(30px, 3.2vw, 40px); font-weight: 700; line-height: 1; letter-spacing: -0.5px; }
.pc-root .price-old {
  font-size: 26px; font-weight: 700; line-height: 1; letter-spacing: -0.3px;
  color: rgba(0,0,0,0.4); position: relative; display: inline-block;
}
.pc-root .price-old::after {
  content: ''; position: absolute; left: -6px; right: -6px; top: 50%; height: 2px;
  background: var(--pc-red); transform: rotate(-10deg);
}
.pc-root .discount-tip-wrap { position: relative; display: inline-flex; align-items: center; cursor: help; align-self: flex-end; margin-bottom: 4px; }
.pc-root .discount-tip-icon {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.35); color: rgba(0,0,0,0.55);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; line-height: 1; transition: all .15s; background: #fff;
}
.pc-root .discount-tip-wrap:hover .discount-tip-icon,
.pc-root .discount-tip-icon.on { border-color: #000; color: #000; background: var(--pc-rose); }
.pc-root .discount-tip-bubble {
  position: absolute; left: 0; bottom: calc(100% + 12px);
  width: 280px; padding: 14px 16px; background: #fff; color: #282828; border-radius: 12px;
  font-size: 13px; line-height: 1.45; border: 1px solid var(--pc-line);
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
  opacity: 0; pointer-events: none; transition: opacity .15s, transform .15s;
  transform: translateY(4px); z-index: 30; display: flex; flex-direction: column; gap: 6px;
  font-family: 'Manrope', Arial, sans-serif;
}
.pc-root .discount-tip-wrap:hover .discount-tip-bubble,
.pc-root .discount-tip-bubble.on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.pc-root .discount-tip-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(0,0,0,0.5); }
.pc-root .cashback-row { font-size: 16px; color: #444; }
.pc-root .article-row { font-size: 15px; color: rgba(0,0,0,0.55); }

.pc-root .section-divider { height: 1px; background: var(--pc-line); }
.pc-root .label-row {
  font-size: 16px; letter-spacing: .6px; text-transform: uppercase; color: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: space-between;
}

/* colors --------------------------------------------------------------- */
.pc-root .colors { display: flex; gap: 12px; flex-wrap: wrap; }
.pc-root .swatch {
  width: 52px; height: 51px; border-radius: 50%; position: relative; cursor: pointer;
  transition: transform .15s; border: 2px solid transparent; background-size: cover; background-position: center;
}
.pc-root .swatch:hover { transform: scale(1.05); }
.pc-root .swatch.active { outline: 2px solid var(--pc-red); outline-offset: 3px; }
.pc-root .swatch.m_white { box-shadow: inset 0 0 0 1px var(--pc-line); }

/* fit hint (маломерность) --------------------------------------------- */
.pc-root .fit-box { padding: 16px 18px; border-radius: 14px; background: rgba(244,91,80,0.10); display: flex; gap: 14px; align-items: flex-start; }
.pc-root .fit-box.fit-uncertain { background: rgba(0,0,0,0.04); }
.pc-root .fit-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: transparent; color: var(--pc-red); border: 1.5px solid var(--pc-red);
  display: inline-flex; align-items: center; justify-content: center;
  font-style: italic; font-size: 14px; font-weight: 700; margin-top: 1px;
}
.pc-root .fit-box.fit-uncertain .fit-icon { color: #666; border-color: #aaa; }
.pc-root .fit-title { font-size: 15px; font-weight: 700; color: #282828; line-height: 1.35; }
.pc-root .fit-sub { font-size: 14px; color: rgba(0,0,0,0.55); margin-top: 4px; line-height: 1.4; }

/* §2.6, сценарии 2–4 — персональная рекомендация размера (плашка над выбором размера). */
.pc-root .fit-box.fit-personal { margin-bottom: 14px; }
.pc-root .fit-rec-link { color: var(--pc-red); font-weight: 600; cursor: pointer; text-decoration: underline; }
.pc-root .fit-rec-size {
  display: inline-block; margin: 2px 4px 0 0; padding: 2px 10px; border-radius: 8px;
  background: #fff; border: 1px solid var(--pc-red); color: var(--pc-red);
  font-weight: 600; cursor: pointer; text-decoration: none;
}
.pc-root .fit-source { font-size: 13px; color: rgba(0,0,0,0.4); margin-top: 6px; line-height: 1.4; }

/* help buttons (помочь с размером / таблица размеров) ------------------ */
.pc-root .help-duo {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch;
  width: 100%; min-height: 62px; border-radius: 100px; background: var(--pc-rose); overflow: hidden;
}
.pc-root .help-duo.single { grid-template-columns: 1fr; }
.pc-root .help-duo-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: transparent; border: none; padding: 14px 18px; color: #000;
  font-weight: 700; font-size: 15px; letter-spacing: .8px; text-transform: uppercase; transition: background .15s;
}
.pc-root .help-duo-btn:hover { background: rgba(0,0,0,0.04); }
.pc-root .help-duo-divider { width: 1px; align-self: center; height: 30px; background: rgba(0,0,0,0.18); }

/* showrooms line ------------------------------------------------------- */
.pc-root .showrooms-line {
  font-size: 17px; color: rgba(0,0,0,0.78); line-height: 1.5;
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 8px;
}
.pc-root .showrooms-line .sr-pin { display: inline-flex; align-items: center; justify-content: center; color: rgba(0,0,0,0.45); }
.pc-root .showrooms-line .sr-pin svg { width: 16px; height: 16px; }
.pc-root .showrooms-line a,
.pc-root .showrooms-line .showroom-link {
  text-decoration: underline; text-underline-offset: 3px;
  background: none; border: none; padding: 0; font: inherit; color: inherit; cursor: pointer;
}
.pc-root .showrooms-line a:hover,
.pc-root .showrooms-line .showroom-link:hover { color: var(--pc-red); }

/* customer photos stack ------------------------------------------------ */
.pc-root .photos-stack {
  display: flex; align-items: center; gap: 16px; padding: 14px 16px;
  background: #fff; border: 1px solid var(--pc-line); border-radius: 16px;
  color: #000; transition: border-color .15s, background .15s; align-self: flex-start;
}
.pc-root .photos-stack:hover { border-color: #C0987B; background: #FBF7F4; }
.pc-root .photos-stack .photo-stack { display: flex; flex-shrink: 0; }
.pc-root .photos-stack .photo-stack-item {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid #fff; margin-left: -12px;
  display: inline-flex; align-items: center; justify-content: center; position: relative;
  background-size: cover; background-position: center;
}
.pc-root .photos-stack .photo-stack-item:first-child { margin-left: 0; }
.pc-root .photos-stack .photo-stack-more { color: #fff; font-weight: 700; font-size: 14px; }
.pc-root .photos-stack .photos-cta { font-size: 17px; font-weight: 700; color: #000; line-height: 1.2; }
.pc-root .photos-stack svg { color: rgba(0,0,0,0.4); transition: color .15s, transform .15s; }
.pc-root .photos-stack:hover svg { color: #C0987B; transform: translateX(2px); }

/* video link / clients link (старые ссылки) */
.pc-root .el_dophref { display: flex; gap: 24px; flex-wrap: wrap; font-size: 16px; }
.pc-root .el_dophref a { text-decoration: underline; text-underline-offset: 3px; }
.pc-root .el_dophref a:hover { color: var(--pc-red); }

/* ============== SIZES / CART / FAVOURITE (reused widgets) ============== */
/* Виджет размеров (chart belt+cup) переиспользуется как есть, но стилизуется
   под круглые pill'ы макета. Классы — из selectOneNew/chartBra|Simple. */
.pc-root .js_size_widget .el_h { font-size: 16px; letter-spacing: .6px; text-transform: uppercase; color: rgba(0,0,0,0.7); margin-bottom: 10px; }
.pc-root .js_size_widget .js_sizes_block { display: flex; flex-wrap: wrap; gap: 10px; }
.pc-root .js_size_widget .btn_filter_size_col { position: relative; }
.pc-root .js_size_widget .btn_filter_size_col input { position: absolute; opacity: 0; pointer-events: none; }
.pc-root .js_size_widget .m_border {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 50px; height: 50px; padding: 0 12px; border-radius: 50px;
  border: 1px solid var(--pc-line); background: #fff; font-size: 15px; color: #000;
  cursor: pointer; transition: all .15s; user-select: none; margin: 0;
}
.pc-root .js_size_widget .m_border:hover { border-color: #282828; }
.pc-root .js_size_widget input:checked + .m_border {
  background: #F6C5AE; border-color: #F6C5AE; color: #fff; font-weight: 700;
}
.pc-root .js_size_widget .m_disabled,
.pc-root .js_size_widget .m_empty + .m_border,
.pc-root .js_size_widget input:disabled + .m_border,
.pc-root .js_size_widget .m_border.m_nosize,
.pc-root .js_size_widget .m_border.js_not_available {
  color: rgba(0,0,0,0.45); background: #EBE4E4; border-color: #EBE4E4;
}
/* OOS-размер кликабелен (предложит «Сообщить о поступлении») — на hover подсвечиваем красным. */
.pc-root .js_size_widget .m_border.m_nosize:hover,
.pc-root .js_size_widget .m_border.js_not_available:hover {
  border-color: var(--pc-red); color: var(--pc-red); background: #EBE4E4;
}
.pc-root .js_size_widget .js_cup_sizes_block { margin-top: 16px; }

/* ===== Зона покупки: размеры + «в корзину» + сердечко ===== */

/* Товар с размером: пилюли на всю ширину, ниже — ряд [в корзину][сердечко].
   Сердечко переносится JS внутрь .b_sizes_actions (ряда кнопок виджета размеров),
   поэтому это один flex-див в одну строку — без абсолюта. */
.pc-root .pc-size-actions { max-width: 460px; }
.pc-root .pc-size-col { width: 100%; display: flex; flex-direction: column; gap: 12px; }
.pc-root .js_size_widget .b_sizes_actions { display: flex; gap: 12px; align-items: stretch; margin-top: 12px; }
.pc-root .js_size_widget .b_sizes_actions .btn { flex: 1 1 auto; height: 60px; min-height: 60px; margin: 0 !important; }
.pc-root .b_sizes_actions .pc-fav-col { flex: 0 0 auto; display: flex; align-items: stretch; margin: 0; padding: 0; line-height: 0; }
.pc-root .b_sizes_actions .pc-fav-col .js_favourite_btn_block { display: flex; align-items: stretch; margin: 0; padding: 0; }

/* Товар без размера / заглушка: ряд [в корзину] + [сердечко] */
.pc-root .actions { display: flex; gap: 12px; align-items: stretch; max-width: 460px; }
.pc-root .actions .pc-cart-slot { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.pc-root .actions .btn-primary { flex: 1 1 auto; }
.pc-root .actions .pc-fav-col { flex: 0 0 auto; }
.pc-root .pc-buy { display: flex; flex-direction: column; gap: 12px; max-width: 460px; }

/* Основная pill-кнопка «в корзину»: CartNewWidget (.btn), виджет размеров (.js_sizes_apply), заглушка (.btn-primary) */
.pc-root .pc-cart-slot .btn,
.pc-root .js_size_widget .btn,
.pc-root .btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; background: var(--pc-red); color: #fff; min-height: 60px; height: 60px; padding: 0 24px;
  border-radius: 100px; font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  transition: background .15s, opacity .15s; border: none; line-height: 1.2;
}
.pc-root .pc-cart-slot .btn:hover,
.pc-root .js_size_widget .btn:hover,
.pc-root .btn-primary:hover { background: var(--pc-red-dark); }
.pc-root .btn-primary.inactive,
.pc-root .js_size_widget .btn.m_disabled { background: #B8B8B8; color: #fff; cursor: not-allowed; pointer-events: none; }

/* Кнопка «в корзину» виджета размеров — всегда видна (серой до выбора размера).
   .js_to_order («Перейти в корзину») НЕ трогаем — показывается только после добавления. */
/* Кнопка видна (серой) по умолчанию через базовое правило .btn выше — без
   !important, иначе JS не сможет её скрыть после добавления в корзину
   (cart scripts.js .hide()), и рядом с «Перейти в корзину» оставалась бы
   вторая кнопка «Добавить в корзину». */
.pc-root .js_size_widget .js_sizes_apply,
.pc-root .js_size_widget .js_sizes_simple_apply { display: inline-flex; }
.pc-root .js_size_widget .js_to_order,
.pc-root .pc-cart-slot .js_to_order { background: #282828; }
.pc-root .js_size_widget .js_to_order:hover { background: #111; }
.pc-root .js_size_widget .js_favourite_process_btn { background: #fff; color: #282828; border: 1px solid #B8B8B8; }
.pc-root .js_size_widget .js_favourite_process_btn:hover { border-color: var(--pc-red); color: var(--pc-red); background: #fff; }

/* ИЗБРАННОЕ — квадратная кнопка только с иконкой-сердцем, в один ряд с «в корзину».
   Для товаров с размером это ссылка .b_favourite, для без размера — .btn.m_heart. */
.pc-root .pc-fav-col .js_favourite_btn_block { display: inline-flex; }
.pc-root .pc-fav-col .b_favourite,
.pc-root .pc-fav-col .btn.m_heart {
  width: 70px; height: 60px; min-height: 60px; flex: 0 0 auto; padding: 0; margin: 0 !important;
  border: 1px solid #B8B8B8; border-radius: 100px; background-color: #fff;
  background-repeat: no-repeat; background-position: center; background-size: 22px 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23B8B8B8' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z'/%3E%3C/svg%3E");
  display: inline-block; font-size: 0; line-height: 0;
  transition: border-color .15s, background-color .15s;
}
.pc-root .pc-fav-col .b_favourite:hover,
.pc-root .pc-fav-col .btn.m_heart:hover {
  border-color: var(--pc-red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23F45B50' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z'/%3E%3C/svg%3E");
}
.pc-root .pc-fav-col .b_favourite.st_active,
.pc-root .pc-fav-col .btn.m_heart.st_active {
  border-color: var(--pc-red); background-color: rgba(244,91,80,0.10);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='%23F45B50' stroke='%23F45B50' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z'/%3E%3C/svg%3E");
}

/* Сердечко неактивно, пока не выбран размер */
.pc-root .pc-fav-col .pc-fav-btn.pc-fav-disabled { cursor: not-allowed; opacity: .45; }
.pc-root .pc-fav-col .pc-fav-btn.pc-fav-loading { opacity: .6; pointer-events: none; }

/* Тост-подсказка (например «Выберите размер, чтобы добавить в избранное») */
.toast-host {
  position: fixed; left: 50%; bottom: 32px; z-index: 100000;
  transform: translateX(-50%) translateY(12px); opacity: 0;
  transition: opacity .3s ease, transform .3s ease; pointer-events: none;
}
.toast-host.on { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast {
  display: inline-flex; align-items: center; gap: 10px; max-width: 90vw;
  background: #282828; color: #fff; font-size: 15px; line-height: 1.3;
  padding: 14px 20px; border-radius: 100px; box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.toast .check {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--pc-red, #F45B50); color: #fff; font-size: 13px;
}

.pc-root .cta-hint { font-size: 13px; color: rgba(0,0,0,0.5); padding-left: 4px; }
.pc-root .pc-extra-note { font-size: 14px; color: rgba(0,0,0,0.6); line-height: 1.5; }
.pc-root .pc-extra-note p { margin-bottom: 8px; }
.pc-root .clinic-list { overflow: hidden; }
.pc-root .show-all { font-size: 14px; color: rgba(0,0,0,0.5); text-decoration: underline; text-underline-offset: 3px; display: inline-block; margin-top: 6px; cursor: pointer; }
.pc-root .show-all:hover { color: var(--pc-red); }

/* ============================ TABS ===================================== */
.pc-root .tabs-bar {
  display: flex; margin-top: 48px; width: 100%; border-bottom: 1px solid var(--pc-line);
  gap: 56px; position: relative; flex-wrap: wrap;
}
.pc-root .tabs-bar.tabs-pill {
  background: #F1EAEA; border-radius: 999px; display: inline-flex; padding: 6px;
  width: fit-content; max-width: 100%; gap: 2px; flex-wrap: nowrap;
  overflow-x: auto; border-bottom: none; scrollbar-width: none;
}
.pc-root .tabs-bar.tabs-pill::-webkit-scrollbar { display: none; }
.pc-root .tab-btn {
  background: transparent; border: none; font-family: inherit;
  font-size: clamp(18px, 2vw, 24px); font-weight: 600; color: rgba(0,0,0,0.42);
  padding: 18px 0; cursor: pointer; white-space: nowrap; position: relative; transition: color .15s;
}
.pc-root .tab-btn:hover { color: rgba(0,0,0,0.78); }
.pc-root .tab-btn.active { color: #000; font-weight: 700; }
.pc-root .tabs-bar:not(.tabs-pill) .tab-btn.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--pc-red);
}
.pc-root .tabs-bar.tabs-pill .tab-btn {
  height: 56px; padding: 0 28px; font-size: clamp(16px,1.6vw,22px); font-weight: 500;
  color: rgba(0,0,0,0.45); border-radius: 999px; white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; transition: color .15s, background .15s;
}
.pc-root .tabs-bar.tabs-pill .tab-btn.active { background: #fff; color: #111; font-weight: 700; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }

.pc-root .tab-panel { display: none; }
.pc-root .tab-panel.active { display: block; padding-top: 12px;}
.pc-root .tab-panel.active > div { padding-left: 30px;}
.pc-root .tab-body {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--pc-col-gap);
  margin-top: 28px; min-height: 200px;
}
.pc-root .tab-body > .tab-text { grid-column: span 7; min-width: 0; }
.pc-root .tab-body > .tab-aside { grid-column: span 5; min-width: 0; }
.pc-root .tab-body p { font-size: 20px; line-height: 1.5; margin-bottom: 14px; }

.pc-root .spec-table { display: flex; flex-direction: column; }
.pc-root .spec-row {
  width: 100%; display: flex; justify-content: space-between; gap: 24px;
  font-size: 18px; padding: 12px 0 14px; border-bottom: 1px solid var(--pc-line); line-height: 1.36;
}
.pc-root .spec-row .k { color: #000; }
.pc-root .spec-row .v { text-align: right; }
.pc-root .spec-row .v a { text-decoration: underline; text-underline-offset: 3px; }
.pc-root .spec-row .v a:hover { color: var(--pc-red); }

.pc-root .support-row { margin-top: 28px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.pc-root .support-row .label { font-size: 20px; font-weight: 700; line-height: 1.4; }
.pc-root .socials { display: flex; gap: 16px; align-items: center; }
.pc-root .social { display: inline-flex; align-items: center; justify-content: center; transition: transform .15s; line-height: 0; }
.pc-root .social:hover { transform: scale(1.07); }
.pc-root .social svg { display: block; }
.pc-root .social img { display: block; width: 34px; height: 34px; object-fit: cover; }

/* exchange tab (reuse simple markup) */
.pc-root .pc-info-block { margin-bottom: 32px; }
.pc-root .pc-info-block h3 { font-size: 26px; font-weight: 700; margin-bottom: 16px; }
.pc-root .pc-bell { background: var(--pc-rose); border-radius: 16px; padding: 16px 18px; margin-bottom: 16px; font-size: 16px; }

/* ---- delivery & payment tab (redesign #31435) ----------------------- */
.pc-root .pc-block-title { font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; line-height: 1.05; margin-bottom: 28px; }

/* Удобная доставка */
.pc-root .pc-delivery {
  background: var(--pc-rose); padding: 30px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 40px;
  margin-bottom: 16px;
}
.pc-root .pc-delivery-body { flex: 1 1 auto; min-width: 0; }
.pc-root .pc-delivery-img { flex: 0 0 auto; width: clamp(220px, 24vw, 320px); }
.pc-root .pc-delivery-img img { width: 100%; height: auto; display: block; }
.pc-root .deliv-tab-img { width: 100%; padding-top: 12px; }

.pc-root .pc-del-bell {
  display: inline-flex; align-items: center; gap: 16px;
  background: #fff; padding: 8px 28px 8px 8px; margin-bottom: 28px;
  max-width: 100%;
  margin-left: -30px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}
.pc-root .pc-del-bell-ic {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--pc-red);
  display: inline-flex; align-items: center; justify-content: center;
}
.pc-root .pc-del-bell-txt { font-size: 18px; font-weight: 700; color: #000; line-height: 1.25; }

.pc-root .pc-del-help { position: relative; display: inline-flex; align-items: center; cursor: help; flex-shrink: 0; }
.pc-root .pc-del-help-ic {
  width: 20px; height: 20px; border-radius: 50%; background: var(--pc-red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; line-height: 1;
}
.pc-root .pc-del-help-bubble {
  position: absolute; left: 50%; bottom: calc(100% + 12px); transform: translateX(-50%) translateY(4px);
  width: 260px; padding: 14px 16px; background: #fff; color: #282828; border-radius: 12px;
  font-size: 13px; line-height: 1.45; border: 1px solid var(--pc-line);
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
  opacity: 0; pointer-events: none; transition: opacity .15s, transform .15s; z-index: 30;
}
.pc-root .pc-del-help:hover .pc-del-help-bubble,
.pc-root .pc-del-help:focus-visible .pc-del-help-bubble { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

.pc-root .pc-del-rows { display: grid; gap: 28px; }
.pc-root .pc-del-row { display: grid; grid-template-columns: minmax(180px, 360px) 1fr; align-items: baseline; column-gap: 24px; }
.pc-root .pc-del-name { font-size: 18px; font-weight: 700; color: #000; }
.pc-root .pc-del-price { font-size: 18px; font-weight: 700; color: #000; }
.pc-root .pc-del-note { grid-column: 1 / -1; font-size: 14px; color: rgba(0,0,0,0.55); margin-top: 4px; line-height: 1.4; }

/* Удобные способы оплаты */
.pc-root .pc-payment { background: var(--pc-rose); padding: 48px; }
.pc-root .pc-pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pc-root .pc-pay-card {
  background: #fff; border-radius: 16px; padding: 32px 28px; min-height: 200px;
  display: flex; flex-direction: column;
}
.pc-root .pc-pay-name { font-size: 20px; font-weight: 700; color: #000; margin-bottom: 16px; }
.pc-root .pc-pay-text { font-size: 15px; color: rgba(0,0,0,0.7); line-height: 1.5; }
.pc-root .pc-pay-link { display: inline-block; margin-top: auto; padding-top: 12px; color: var(--pc-red); font-weight: 700; }
.pc-root .pc-pay-link:hover { color: var(--pc-red-dark); }

@media (max-width: 900px) {
  .pc-root .pc-delivery, .pc-root .pc-payment { padding: 28px 20px; }
  .pc-root .pc-delivery { flex-direction: column-reverse; }
  .pc-root .pc-delivery-img { width: 200px; align-self: flex-end; }
  .pc-root .pc-pay-grid { grid-template-columns: 1fr; }
  .pc-root .pc-del-row { grid-template-columns: minmax(140px, 1fr) auto; }
}

.pc-root .pc-btn-line {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 8px;
  background: var(--pc-red); color: #fff; height: 56px; padding: 0 32px; border-radius: 100px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 14px;
}
.pc-root .pc-btn-line:hover { background: var(--pc-red-dark); }

/* ===================== CAROUSELS / PRODUCT CARD ======================== */
/* Карусельные лейны — розовая подложка как в макете (видео-лейн, «Для полного образа» …) */
.pc-root .section-card {
  margin-top: 48px; position: relative;
  background: var(--pc-rose); border-radius: 23px; padding: 42px 28px 28px;
}
/* Плоские лейны без подложки — напр. «Вам также может понравиться» */
.pc-root .section-card.section-card-flat {
  background: transparent; border-radius: 0; padding-left: 0; padding-right: 0;
}
.pc-root .section-card .head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px; gap: 16px;
}
/* Разделитель под заголовком — только у плоских лейнов (как в макете) */
.pc-root .section-card.section-card-flat .head {
  border-bottom: 1px solid var(--pc-line); padding-bottom: 12px;
}
.pc-root .section-card .head:has(.lane-tabs) { border-bottom: none; padding-bottom: 0; align-items: center; }
.pc-root .section-card h2 { font-size: clamp(26px,3vw,36px); font-weight: 700; line-height: 1; }
.pc-root .arrows { display: flex; gap: 12px; flex-shrink: 0; }
.pc-root .arrow-btn {
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid #282828;
  display: inline-flex; align-items: center; justify-content: center; font-size: 18px;
  background: transparent; transition: all .15s;
}
.pc-root .arrow-btn:hover { background: #282828; color: #fff; }
.pc-root .arrow-btn:disabled { opacity: .25; cursor: not-allowed; background: transparent; color: inherit; }

.pc-root .lane-tabs { display: flex; gap: 8px; background: #F1EAEA; border-radius: 999px; padding: 6px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
.pc-root .lane-tabs::-webkit-scrollbar { display: none; }
.pc-root .lane-tab {
  height: 52px; padding: 0 24px; font-size: clamp(15px,1.5vw,20px); font-weight: 500; color: rgba(0,0,0,0.45);
  border-radius: 999px; white-space: nowrap; transition: color .15s, background .15s; background: transparent;
}
.pc-root .lane-tab.active { background: #fff; color: #111; font-weight: 700; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.pc-root .lane-tab-count { font-size: 14px; color: rgba(0,0,0,0.4); margin-left: 6px; }

.pc-root .carousel-viewport { overflow: hidden; }
.pc-root .carousel {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 2 * var(--pc-col-gap)) / 3);
  gap: var(--pc-col-gap); overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: 4px;
}
.pc-root .carousel::-webkit-scrollbar { display: none; }
.pc-root .carousel.carousel-dense { grid-auto-columns: calc((100% - 4 * 18px) / 5); gap: 18px; }
.pc-root .carousel > * { scroll-snap-align: start; }

.pc-root .product-card { position: relative; cursor: pointer; transition: transform .15s; min-width: 0; }
.pc-root .product-card:hover { transform: translateY(-3px); }
.pc-root .pc-image { position: relative; aspect-ratio: 4/5.4; background: #efefef; border-radius: 4px; overflow: hidden; }
.pc-root .pc-image img { width: 100%; height: 100%; object-fit: cover; }
.pc-root .pc-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#efe3df,#f7eee9); display: flex; align-items: center; justify-content: center; color: #c1987c; font-size: 14px; }
.pc-root .pc-top { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; align-items: flex-start; }
.pc-root .pc-badge { background: rgba(244,91,80,0.2); color: #F43F3B; font-size: 13px; letter-spacing: .5px; padding: 4px 12px; border-radius: 54px; }
.pc-root .pc-like { width: 36px; height: 36px; border-radius: 50%; background: #fff; display: inline-flex; align-items: center; justify-content: center; transition: color .15s; }
.pc-root .pc-like:hover, .pc-root .pc-like.active { color: var(--pc-red); }
.pc-root .pc-image-link { display: block; height: 100%; }
/* иконки видео/360 в углу фото (как в каталоге) */
.pc-root .pc-image .pc-vid { position: absolute; left: 8px; bottom: 8px; z-index: 2; display: flex; flex-direction: column; gap: 5px; }
.pc-root .pc-image .pc-vid img { width: 30px; height: 30px; display: block; object-fit: contain; }
/* Пины в карусельных карточках (ленты «Для полного образа»/«Вам также») используют
   стандартную разметку каталога (.b_pins.m_small) и внешний вид из main.css —
   ribbon-графики BASE/NEW/скидка, position:absolute + scale(.7). Прижимаем к углу
   кадра (в main.css left:15/top:10 — на маленьких карточках даёт зазор). */
.pc-root .product-card .b_pins { top: 10px; left: 0; }
.pc-root .pc-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.pc-root .pc-name { display: block; margin-top: 14px; font-size: 22px; font-weight: 700; line-height: 1.36; }
.pc-root .carousel-dense .pc-name { font-size: 17px; margin-top: 10px; }
.pc-root .pc-rating { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 14px; font-weight: 700; color: #282828; }
.pc-root .pc-rating .stars { color: var(--pc-red); display: inline-flex; gap: 2px; }
.pc-root .pc-price { margin-top: 8px; display: flex; gap: 14px; align-items: baseline; }
.pc-root .pc-price .now { font-size: 22px; font-weight: 700; }
.pc-root .carousel-dense .pc-price .now { font-size: 16px; }
.pc-root .pc-price .was { font-size: 22px; opacity: .55; position: relative; }
.pc-root .pc-price .was::after { content: ''; position: absolute; left: -2px; right: -2px; top: 50%; height: 2px; background: var(--pc-red); transform: rotate(-8deg); }

/* избранное в мини-карточке — круглая белая кнопка-сердце (переиспользуем виджет, как в листинге) */
.pc-root .pc-like { width: 36px; height: 36px; flex: 0 0 auto; background: none; }
.pc-root .pc-like .js_favourite_btn_block { width: 36px; height: 36px; line-height: 0; }
/* гасим габариты .btn.m_heart / .m_width100 из main.css (width:100%, min-width:91px,
   height:40px, border-radius:3px, padding, margin, текст «В избранное») — рисуем свой круг с сердцем */
.pc-root .pc-like .btn.m_heart,
.pc-root .pc-like .b_favourite {
  display: block; width: 36px !important; min-width: 0 !important; height: 36px !important; padding: 0 !important; margin: 0 !important;
  border: none !important; border-radius: 50% !important; background-color: #fff !important; box-shadow: 0 2px 6px rgba(0,0,0,0.10);
  background-repeat: no-repeat; background-position: center; background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23282828' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z'/%3E%3C/svg%3E");
  font-size: 0; line-height: 0; transition: background-color .15s;
}
.pc-root .pc-like .btn.m_heart::after,
.pc-root .pc-like .btn.m_heart::before { content: none; }
.pc-root .pc-like .btn.m_heart:hover,
.pc-root .pc-like .b_favourite:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23F45B50' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z'/%3E%3C/svg%3E");
}
.pc-root .pc-like .btn.m_heart.st_active,
.pc-root .pc-like .b_favourite.st_active {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='%23F45B50' stroke='%23F45B50' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 00-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 00-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 000-7.78z'/%3E%3C/svg%3E");
}

/* наличие в шоу-румах под ценой */
.pc-root .pc-stock { margin-top: 10px; display: flex; align-items: center; gap: 4px; font-size: 13px; color: rgba(0,0,0,0.55); flex-wrap: wrap; }
.pc-root .pc-stock-pin { color: rgba(0,0,0,0.4); display: inline-flex; align-items: center; }
.pc-root .pc-stock-link {
  background: transparent; border: none; padding: 0; margin: 0; font: inherit; color: #282828;
  text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(0,0,0,0.35);
  cursor: pointer; transition: color .15s;
}
.pc-root .pc-stock-link:hover { color: var(--pc-red); text-decoration-color: currentColor; }
.pc-root .pc-stock-sep { color: rgba(0,0,0,0.4); margin-left: -2px; }
.pc-root .carousel-dense .pc-stock { font-size: 12px; margin-top: 6px; gap: 3px; }

.pc-root .dots { margin: 26px auto 0; display: flex; gap: 8px; justify-content: center; }
.pc-root .dot-pill { width: 8px; height: 8px; border-radius: 99px; background: #B8B8B8; transition: width .25s, background .15s; border: none; padding: 0; }
.pc-root .dot-pill.active { width: 40px; background: var(--pc-red); }

/* ============================ ВИДЕО-ОТЗЫВЫ (§2.10) ===================== */
.pc-root .video-lane { display: grid; grid-template-columns: repeat(var(--vl-cols, 4), 1fr); gap: var(--pc-col-gap, 20px); }
.pc-root .video-item {
  aspect-ratio: 4/5; background: #c4c4c4 center/cover no-repeat; border-radius: 16px;
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform .2s;
}
.pc-root .video-item:hover { transform: translateY(-2px); }
.pc-root .video-item .vl-preview {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: inherit; z-index: 0; background: transparent;
}
.pc-root .video-item::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(0,0,0,0.10), rgba(0,0,0,0.40));
}
.pc-root .video-item.playing::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.35) 100%);
}
.pc-root .video-item .author {
  position: absolute; top: 14px; left: 14px; display: flex; align-items: center; gap: 8px;
  z-index: 2; color: #fff; font-size: 13px; text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.pc-root .video-item .avatar {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.4) center/cover no-repeat; border: 2px solid #fff;
}
.pc-root .video-item .play {
  position: relative; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.85); display: inline-flex; align-items: center; justify-content: center;
  z-index: 1; color: #282828; padding-left: 4px; border: none; cursor: pointer; transition: opacity .2s, transform .2s;
}
.pc-root .video-item.playing .play { opacity: 0.55; transform: scale(0.92); }
.pc-root .video-item .vtag {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: var(--pc-red); color: #fff; font-size: 13px; padding: 5px 14px; border-radius: 99px; letter-spacing: 0.5px;
}
.pc-root .video-item .vprogress {
  position: absolute; left: 12px; right: 12px; bottom: 12px; height: 3px; z-index: 2;
  background: rgba(255,255,255,0.28); border-radius: 2px; overflow: hidden; pointer-events: none;
}
.pc-root .video-item .vprogress-bar {
  height: 100%; width: 0; background: #fff; transform-origin: left;
  animation: pc-vprogress-fill linear forwards;
}
@keyframes pc-vprogress-fill { from { width: 0; } to { width: 100%; } }

@media (max-width: 900px) {
  .pc-root .video-lane { --vl-cols: 3; }
}
@media (max-width: 560px) {
  .pc-root .video-lane { --vl-cols: 2; }
}

/* ---- плавающий мини-плеер видео (PiP, аналог videowise) ---- */
.pc-vfloat {
  position: fixed; left: 16px; bottom: 16px; z-index: 9998;
  width: 360px; height: 640px;
}
.pc-vfloat[hidden] { display: none; }
.pc-vfloat-card {
  position: relative; width: 100%; height: 100%;
  border-radius: 12px; overflow: hidden; background: #000;
  box-shadow: 0 12px 24px rgba(0,0,0,0.26);
  transform: translateY(24px); opacity: 0;
  transition: transform .35s cubic-bezier(0,0.18,0.153,0.946), opacity .35s ease;
}
.pc-vfloat.pc-vfloat--in .pc-vfloat-card { transform: translateY(0); opacity: 1; }
.pc-vfloat-video {
  width: 100%; height: 100%; object-fit: cover; display: block; cursor: pointer;
}
.pc-vfloat-close,
.pc-vfloat-mute {
  position: absolute; right: 10px; width: 40px; height: 40px; padding: 0;
  border: 0; border-radius: 50%; background: rgba(0,0,0,0.6); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; z-index: 3;
}
.pc-vfloat-close { top: 10px; }
.pc-vfloat-mute { top: 58px; }
.pc-vfloat-close:hover,
.pc-vfloat-mute:hover { background: rgba(0,0,0,0.78); }
.pc-vfloat-nav {
  position: absolute; right: 7px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px; z-index: 3;
}
.pc-vfloat-nav button {
  width: 40px; height: 40px; padding: 0; border: 1px solid transparent;
  border-radius: 50%; background: transparent; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}
.pc-vfloat-nav button:hover {
  background: rgba(0,0,0,0.52); border-color: rgba(255,255,255,0.2);
}
@media (max-width: 560px) {
  .pc-vfloat { width: 264px; height: 469px; left: 12px; bottom: 12px; }
}

/* ============================ REVIEWS (reused) ========================= */
.pc-root .reviews-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--pc-line); margin-bottom: 18px; flex-wrap: wrap; }
.pc-root .reviews-head .score-big { display: flex; align-items: center; gap: 18px; }
.pc-root .review-filter { display: flex; gap: 6px; align-items: center; border: 1px solid #E3E3E3; border-radius: 99px; padding: 5px; }
.pc-root .rf-chip {
  height: 42px; padding: 0 16px; border-radius: 42px; font-size: 16px;
  display: inline-flex; align-items: center; gap: 8px; transition: background .15s;
}
.pc-root .rf-chip.dark { background: #EBE4E4; color: #282828; }
.pc-root .rf-chip .dot-color { width: 14px; height: 14px; border-radius: 50%; background-size: cover; background-position: center; flex: 0 0 auto; }
/* фильтры отзывов управляются чипами (цвет + медиа), сам виджет-форму прячем */
.pc-root .js_reviews_filter { display: none; }
.pc-root .score-big .num { font-size: 44px; font-weight: 400; line-height: 1; }
.pc-root .score-big .stars { color: var(--pc-red); }
.pc-root .score-big .meta { font-size: 15px; color: rgba(0,0,0,0.6); margin-top: 4px; }

/* CTA «Написать отзыв» — для выкупивших модель клиентов (без захода в ЛК) */
.pc-root .pc-review-cta { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; padding: 11px 20px; border-radius: 99px; border: 1px solid #000; background: transparent; color: #000; font-size: 15px; line-height: 1; cursor: pointer; transition: background .15s, color .15s; }
.pc-root .pc-review-cta:hover { background: var(--pc-red); border-color: var(--pc-red); color: #fff; }
.pc-root .pc-review-cta svg { flex: 0 0 auto; }

/* --- reviews: media filters --- */
.pc-root .reviews-controls { margin: 18px 0; }
.pc-root .review-media-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.pc-root .mf-chip {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  height: 40px; padding: 0 16px; border-radius: 40px; border: 1px solid var(--pc-line);
  background: #fff; color: #282828; font-size: 15px; transition: background .15s, border-color .15s, color .15s;
}
.pc-root .mf-chip:hover { border-color: #C0987B; }
.pc-root .mf-chip.active { background: #282828; border-color: #282828; color: #fff; }

/* --- reviews: media gallery slider --- */
.pc-root .reviews-gallery-wrap { position: relative; display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.pc-root .reviews-gallery { display: flex; gap: 10px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; flex: 1; }
.pc-root .reviews-gallery::-webkit-scrollbar { display: none; }
.pc-root .reviews-gallery-item {
  position: relative; flex: 0 0 auto; width: 84px; height: 110px; border-radius: 12px; cursor: pointer;
  background: #EBE4E4 center/cover no-repeat; overflow: hidden; border: 0; padding: 0;
}
.pc-root .reviews-gallery-item .gi-count {
  position: absolute; right: 6px; bottom: 6px; padding: 2px 7px; border-radius: 20px;
  background: rgba(0,0,0,0.55); color: #fff; font-size: 12px; font-weight: 600;
}
.pc-root .reviews-gallery-item .gi-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.pc-root .reviews-gallery-item .gi-play svg {
  width: 34px; height: 34px; padding: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: #282828; box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.pc-root .reviews-gallery-nav {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--pc-line);
  background: #fff; color: #282828; display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s, opacity .15s;
}
.pc-root .reviews-gallery-nav:hover { background: #FBF7F4; }
.pc-root .reviews-gallery-nav.is-disabled { opacity: .35; cursor: default; }

/* --- reviews: cards --- */
.pc-root .reviews-cards { display: flex; flex-direction: column; }
.pc-root .review-card {
  display: flex; justify-content: space-between; gap: 24px; align-items: flex-start;
  padding: 22px 0; border-top: 1px solid var(--pc-line);
}
.pc-root .review-card.is-hidden { display: none; }
.pc-root .review-card .quote { font-size: 19px; line-height: 1.5; margin: 12px 0; max-width: 720px; }
.pc-root .review-card .quote.long { /* зарезервировано под обрезку */ }
.pc-root .review-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 16px; color: rgba(0,0,0,0.55); }
.pc-root .review-meta .author { color: #000; font-weight: 600; font-size: 17px;}
.pc-root .review-meta .color-pill { display: inline-flex; align-items: center; gap: 5px; }
.pc-root .review-meta .color-pill .dot-color { width: 10px; height: 10px; border-radius: 50%; background-size: cover; background-position: center; display: inline-block; }
.pc-root .review-photos-c { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.pc-root .review-media-tile {
  position: relative; display: block; width: 160px; aspect-ratio: 1; border-radius: 12px; cursor: pointer;
  background: #EBE4E4 center/cover no-repeat; overflow: hidden; border: 0; padding: 0;
}
.pc-root .review-media-tile .media-badge {
  position: absolute; left: 6px; bottom: 6px; display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: 20px; background: rgba(0,0,0,0.6); color: #fff; font-size: 12px; font-weight: 600;
}
.pc-root .review-media-tile .media-badge-light { background: rgba(255,255,255,0.92); color: #282828; }
.pc-root .review-media-tile .play-circle {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.pc-root .review-media-tile .play-circle svg {
  width: 38px; height: 38px; padding: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: #282828; box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.pc-root .review-all-photos {
  border: 0; background: none; cursor: pointer; font-size: 14px; color: #282828;
  text-decoration: underline; text-underline-offset: 3px;
}
.pc-root .review-all-photos:hover { color: var(--pc-red); }
.pc-root .review-media-tile.d-none { display: none; }

.pc-root .show-more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; cursor: pointer;
  height: 48px; padding: 0 24px; border-radius: 48px; border: 1px solid var(--pc-line);
  background: #fff; color: #282828; font-size: 16px; transition: background .15s, border-color .15s;
}
.pc-root .show-more:hover { border-color: #C0987B; background: #FBF7F4; }
.pc-root .reviews-empty { padding: 24px 0; color: rgba(0,0,0,0.55); font-size: 16px; }

/* --- reviews: review media modal --- */
.pc-root .review-media-modal {
  position: relative; background: #fff; border-radius: 24px; padding: 0;
  width: min(94vw, 1240px); max-height: 92vh; overflow: hidden;
}
.pc-root .review-media-modal .modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 3; width: 36px; height: 36px; border-radius: 50%;
  background: #f5f5f5; display: inline-flex; align-items: center; justify-content: center; color: #282828; border: 0; cursor: pointer;
}
.pc-root .review-media-modal .modal-close:hover { background: #e8e8e8; }
.pc-root .rmm-shell { display: grid; grid-template-columns: 1fr 380px; max-height: 92vh; }
.pc-root .rmm-stage { position: relative; background: #f7f3f1; display: flex; align-items: center; justify-content: center; min-height: 420px; overflow: hidden; }
.pc-root .rmm-canvas { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.pc-root .rmm-photo-wrap { position: relative; max-height: 92vh; }
.pc-root .rmm-photo { display: block; max-width: 100%; max-height: 92vh; object-fit: contain; }
.pc-root .rmm-video { display: block; max-width: 100%; max-height: 92vh; background: #000; }
.pc-root .rmm-size-chip { position: absolute; left: 14px; bottom: 14px; padding: 6px 12px; border-radius: 100px; background: rgba(0,0,0,0.6); color: #fff; font-size: 14px; font-weight: 600; line-height: 1; }
.pc-root .rmm-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: #282828; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.10); cursor: pointer; border: 0; z-index: 2;
}
.pc-root .rmm-nav.prev { left: 14px; }
.pc-root .rmm-nav.next { right: 14px; }
.pc-root .rmm-side { padding: 28px; overflow-y: auto; display: flex; flex-direction: column; gap: 14px; border-left: 1px solid var(--pc-line); }
.pc-root .rmm-side-head { display: flex; gap: 12px; align-items: center; }
.pc-root .rmm-avatar { width: 44px; height: 44px; border-radius: 50%; background: #F2ECEA; display: inline-flex; align-items: center; justify-content: center; color: #9a8b84; flex: 0 0 auto; }
.pc-root .rmm-side-line1 { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pc-root .rmm-author { font-weight: 600; font-size: 17px; color: #000; }
.pc-root .rmm-side-line2 { font-size: 14px; color: rgba(0,0,0,0.55); margin-top: 2px; }
.pc-root .rmm-color-row { display: flex; align-items: center; gap: 6px; font-size: 15px; color: rgba(0,0,0,0.7); }
.pc-root .rmm-color-row .dot-color { width: 10px; height: 10px; border-radius: 50%; background-size: cover; background-position: center; display: inline-block; }
.pc-root .rmm-quote { font-size: 16px; line-height: 1.5; color: #282828; }
.pc-root .rmm-thumbs { display: flex; flex-wrap: wrap; gap: 8px; }
.pc-root .rmm-thumb { width: 64px; height: 84px; border-radius: 8px; border: 1px solid #eee; background-size: cover; background-position: center; cursor: pointer; padding: 0; }
.pc-root .rmm-thumb.on { border: 2px solid var(--pc-red); }
@media (max-width: 860px) {
  .pc-root .rmm-shell { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .pc-root .rmm-side { border-left: 0; border-top: 1px solid var(--pc-line); }
  .pc-root .rmm-stage { min-height: 320px; }
}

/* ============================ LIGHTBOX (галерея) ====================== */
/* По макету: белое модальное окно, миниатюры вертикально слева, фото справа. */
.pc-root .main-img { cursor: zoom-in; }
.pc-root .pc-lightbox {
  position: fixed; inset: 0; z-index: 1000; cursor: default;
  background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center;
  animation: pcFade .2s; padding: 24px;
}
@keyframes pcFade { from { opacity: 0; } to { opacity: 1; } }
/* Просмотр фото товара — PhotoSwipe v5 (драг-зум). Тёмный фон + подпись размера
   на фото (для «фото покупательниц»). .pswp монтируется в <body>, не в .pc-root. */
.pswp { --pswp-bg: #000; }
.pswp-size-chip {
  /* left/top выставляет JS по правому нижнему углу самого фото; translate(-100%,-100%)
     сдвигает бейдж на свои размеры, чтобы этот угол лёг внутрь картинки. */
  position: absolute; z-index: 10; transform: translate(-100%, -100%);
  padding: 6px 12px; border-radius: 100px;
  background: rgba(0,0,0,0.6); color: #fff; font-size: 14px; font-weight: 600; line-height: 1;
  pointer-events: none;
}

/* ============================ BACK TO TOP ============================== */
.pc-back-to-top {
  position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; border-radius: 50%;
  background: #fff; color: #282828; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--pc-line); cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .25s, transform .25s, background .15s, color .15s, border-color .15s; z-index: 60;
}
.pc-back-to-top.on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.pc-back-to-top:hover { background: var(--pc-red); color: #fff; border-color: var(--pc-red); }

/* ============================ ADAPTIVE ================================= */
@media (max-width: 1100px) {
  .pc-root .main-img-nav.prev { left: 16px; }
  .pc-root .carousel { grid-auto-columns: calc((100% - var(--pc-col-gap)) / 2); }
  .pc-root .carousel.carousel-dense { grid-auto-columns: calc((100% - 2 * 18px) / 3); }
}
/* Планшеты сохраняют десктопную раскладку (фото слева, инфо справа, всё остальное ниже),
   просто в меньших размерах. Стек в одну колонку — только для телефонной ширины (≤767px). */
@media (max-width: 767px) {
  .pc-root .hero { grid-template-columns: 1fr; }
  .pc-root .hero > .gallery-col,
  .pc-root .hero > .product-info { grid-column: auto; }
  .pc-root .product-info { position: static; }
  .pc-root .tab-body { grid-template-columns: 1fr; }
  .pc-root .tab-body > .tab-text,
  .pc-root .tab-body > .tab-aside { grid-column: auto; }
}
/* Планшет: десктопная раскладка (фото слева, инфо справа), но правая колонка узкая.
   Уменьшаем шрифты/отступы, чтобы правая часть вписывалась в высоту фото, как на десктопе:
   название — в 2 строки, блок маломерности компактнее, кнопки помощи — в 1 строку,
   «фото покупательниц» — число не переносится. */
@media (min-width: 768px) and (max-width: 1100px) {
  .pc-root .product-info { gap: 12px; }
  .pc-root .info-group { gap: 10px; }
  .pc-root .rating-row,
  .pc-root .rating-row .score,
  .pc-root .reviews-link { font-size: 14px; }
  .pc-root .product-title { font-size: 24px; letter-spacing: -0.3px; }
  .pc-root .price-current { font-size: 28px; }
  .pc-root .price-old { font-size: 16px; }
  .pc-root .cashback-row { font-size: 13px; }
  .pc-root .label-row { font-size: 13px; }
  .pc-root .colors { gap: 10px; }
  .pc-root .swatch { width: 40px; height: 40px; }
  .pc-root .fit-box { padding: 12px 14px; gap: 10px; }
  .pc-root .fit-title { font-size: 13px; }
  .pc-root .fit-sub { font-size: 12px; }
  .pc-root .js_size_widget .m_border { min-width: 42px; height: 40px; padding: 0 10px; font-size: 13px; }
  .pc-root .pc-cart-slot .btn,
  .pc-root .js_size_widget .btn,
  .pc-root .btn-primary { min-height: 48px; height: 48px; font-size: 13px; }
  .pc-root .help-duo { min-height: 50px; }
  .pc-root .help-duo-btn { padding: 10px 8px; font-size: 11px; letter-spacing: .2px; gap: 6px; white-space: nowrap; }
  .pc-root .help-duo-btn svg { width: 15px; height: 15px; }
  .pc-root .showrooms-line { font-size: 13px; gap: 6px; }
  .pc-root .photos-stack { gap: 12px; padding: 12px 14px; }
  .pc-root .photos-stack .photo-stack-item { width: 38px; height: 38px; }
  .pc-root .photos-stack .photos-cta { font-size: 14px; white-space: nowrap; }
}
@media (max-width: 640px) {
  .pc-root { padding-left: 14px; padding-right: 14px; }
  .pc-root .hero { padding-top: 12px; gap: 20px; }
  .pc-root .thumbs-overlay { width: 54px; }
  .pc-root .thumbs-overlay .thumb { width: 54px; height: 70px; }
  .pc-root .thumbs-nav { width: 54px; }
  .pc-root .main-img-nav.prev { left: 12px; }
  .pc-root .main-img-nav.next { right: 12px; }
  .pc-root .title-flags { margin-left: 0; width: 100%; }
  .pc-root .product-title { font-size: 30px; }
  .pc-root .actions { max-width: none; }
  .pc-root .carousel { grid-auto-columns: calc((100% - var(--pc-col-gap)) / 1.4); }
  .pc-root .carousel.carousel-dense { grid-auto-columns: calc((100% - 18px) / 2); }
  .pc-root .support-row .label { font-size: 17px; }
}
