/* =================== hc-pdp-m1.css =================== */
/* hc-pdp-m1 — Editorial Premium PDP layout (variant 1):
 *   • 2-col hero (gallery 60% | info+buy 40%)
 *   • sticky tab-bar full-width under hero
 *   • tab panels open full-width with editorial typography
 *   • everything below hero is "below the fold" content sections
 * Strict isolation: only .hc-pdp-m1 / .hc-pdp-m1__*. */

.hc-pdp-m1__hero {
display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(380px, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  margin: 18px 0 28px;
  align-items: start;
}

/* ─── Gallery (left) ─── */
.hc-pdp-m1__gallery {
position: relative;
}
.hc-pdp-m1__stage {
position: relative;
  aspect-ratio: 1.05;
  background:
    radial-gradient(circle at 50% 110%, rgba(199, 155, 96, 0.18), transparent 60%),
    linear-gradient(160deg, var(--hc-paper, #ffffff) 0%, #f4e9cd 100%);
  border: 0.5px solid rgba(141, 109, 71, 0.20);
  border-radius: clamp(20px, 2vw, 28px);
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(40, 30, 15, 0.03),
    0 28px 70px -28px rgba(40, 30, 15, 0.22);
}
.hc-pdp-m1__stage svg {
width: 80%; height: 80%;
}
.hc-pdp-m1__stage-badge {
position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #8b3f32, #6f3329);
  color: var(--hc-paper, #ffffff);
  border-radius: 999px;
  font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 14px -4px rgba(111, 51, 41, 0.34);
}
.hc-pdp-m1__thumbs {
display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.hc-pdp-m1__thumb {
aspect-ratio: 1;
  background: linear-gradient(160deg, var(--hc-paper-3, #f2efe9), #e8e2d5);
  border: 0.5px solid rgba(141, 109, 71, 0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.hc-pdp-m1__thumb:hover {
transform: translateY(-2px);
}
.hc-pdp-m1__thumb.is-active {
border: 1.5px solid var(--hc-accent, #8b7355);
}

/* ─── Info + buy aside (right) ─── */
.hc-pdp-m1__aside {
display: flex; flex-direction: column; gap: 14px;
  align-self: start;
}
.hc-pdp-m1__eyebrow {
font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hc-accent-dark, #7a6548);
}
.hc-pdp-m1__title {
font-family: var(--hc-serif, "Playfair Display", Georgia, serif);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--hc-ink, #1a1714);
  margin: 0;
  max-width: 14ch;
}
.hc-pdp-m1__title em {
color: var(--hc-accent-dark, #7a6548);
  font-style: italic;
}
.hc-pdp-m1__rating {
display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--hc-ink-soft, rgba(26, 23, 20, 0.7));
}
.hc-pdp-m1__rating-stars {
color: var(--hc-gold, #d4b896);
  letter-spacing: 1px;
}

.hc-pdp-m1__buy {
background: linear-gradient(180deg, var(--hc-paper, #ffffff) 0%, rgba(251, 247, 237, 0.94) 100%);
  border: 1px solid var(--hc-gold-border, rgba(212, 184, 150, 0.42));
  border-radius: 18px;
  padding: 22px;
  position: sticky;
  top: calc(var(--hc-hdr-h, 72px) + 12px);
  box-shadow:
    0 1px 2px rgba(40, 30, 15, 0.03),
    0 18px 44px -28px rgba(40, 30, 15, 0.22);
}

/* compact SKU chip inside price card — half-width inline pill */
.hc-pdp-m1__sku-row {
display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 4px 4px 10px;
  margin: 0 0 12px;
  background: linear-gradient(135deg, rgba(212, 184, 150, 0.20), rgba(184, 154, 111, 0.08));
  border: 0.5px solid var(--hc-gold-border, rgba(212, 184, 150, 0.45));
  border-radius: 999px;
  max-width: 100%;
}
.hc-pdp-m1__sku-key {
font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hc-ink-mid, rgba(26, 23, 20, 0.55));
}
.hc-pdp-m1__sku-val {
font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--hc-ink, #1a1714);
  user-select: all;
}
.hc-pdp-m1__sku-copy {
display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  background: var(--hc-paper, #ffffff);
  border: 0.5px solid rgba(141, 109, 71, 0.22);
  border-radius: 50%;
  color: var(--hc-accent-dark, #7a6548);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}
.hc-pdp-m1__sku-copy:hover {
background: var(--hc-ink, #1a1714);
  color: var(--hc-paper, #ffffff);
  border-color: var(--hc-ink, #1a1714);
  transform: scale(1.08);
}
.hc-pdp-m1__sku-copy svg {
width: 11px; height: 11px;
}
.hc-pdp-m1__sku-copy-label {
position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.hc-pdp-m1__price-row {
display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}
.hc-pdp-m1__price {
font-family: var(--hc-serif, "Playfair Display", Georgia, serif);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--hc-ink, #1a1714);
}
.hc-pdp-m1__price-old {
font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-size: 16px;
  font-weight: 500;
  color: var(--hc-ink-mid, rgba(26, 23, 20, 0.4));
  text-decoration: line-through;
}
.hc-pdp-m1__sale-chip {
padding: 4px 10px;
  background: #8b3f32;
  color: var(--hc-paper, #ffffff);
  border-radius: 6px;
  font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hc-pdp-m1__stock {
display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0 16px;
  padding: 6px 12px;
  background: rgba(61, 107, 79, 0.10);
  border: 0.5px solid rgba(61, 107, 79, 0.28);
  border-radius: 999px;
  font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hc-success, #3d6b4f);
}
.hc-pdp-m1__ctas {
display: flex;
  flex-direction: column;
  gap: 10px;
}
.hc-pdp-m1__qty {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(141, 109, 71, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}
.hc-pdp-m1__qty-btn {
  width: 42px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--hc-ink, #1a1714);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease;
}
.hc-pdp-m1__qty-btn:hover {
  background: rgba(212, 184, 150, 0.18);
}
.hc-pdp-m1__qty-input {
  width: 100%;
  height: 44px;
  border: 0;
  border-inline: 1px solid rgba(141, 109, 71, 0.14);
  background: transparent;
  text-align: center;
  font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-size: 14px;
  font-weight: 700;
  color: var(--hc-ink, #1a1714);
  appearance: textfield;
}
.hc-pdp-m1__qty-input::-webkit-outer-spin-button,
.hc-pdp-m1__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.hc-pdp-m1__qty-input:focus {
  outline: none;
}
.hc-pdp-m1__cta-primary {
display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  background: var(--hc-ink, #1a1714);
  color: var(--hc-paper, #ffffff);
  border: 0;
  border-radius: 12px;
  font-family: var(--hc-sans, "Outfit", sans-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.hc-pdp-m1__cta-primary:hover {
background: linear-gradient(135deg, #2a2018, #3d3024);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -8px rgba(40, 30, 15, 0.36);
}
.hc-pdp-m1__cta-outline {
display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  background: transparent;
  color: var(--hc-ink, #1a1714);
  border: 1px solid rgba(26, 23, 20, 0.22);
  border-radius: 12px;
  font-family: var(--hc-sans, "Outfit", sans-serif);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.hc-pdp-m1__cta-outline:hover {
background: rgba(212, 184, 150, 0.16);
  border-color: rgba(141, 109, 71, 0.42);
}


/* ─── Extended stock strip dots/labels ─────────────────────────────── */
.hc-pdp-m1__stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
  animation: hc-pdp-m1-stock-pulse 2.4s ease-out infinite;
  flex-shrink: 0;
}
@keyframes hc-pdp-m1-stock-pulse {
  to { box-shadow: 0 0 0 10px transparent; }
}
.hc-pdp-m1__stock-label { font-weight: 700; }
.hc-pdp-m1__stock-aux {
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--hc-ink-mid, rgba(26, 23, 20, 0.55));
  text-transform: none;
}
.hc-pdp-m1__stock-aux::before {
  content: "·";
  margin: 0 6px;
  color: var(--hc-ink-mid, rgba(26, 23, 20, 0.35));
}
.hc-pdp-m1__stock[data-state="out"] {
  background: rgba(166, 116, 38, 0.10);
  border-color: rgba(166, 116, 38, 0.28);
  color: var(--hc-warn, #a67426);
}
@media (prefers-reduced-motion: reduce) {
  .hc-pdp-m1__stock-dot { animation: none; }
}

/* ─── Integrated qty + CTA (Apple-style) ───────────────────────────── */
.hc-pdp-m1__atc {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}
.hc-pdp-m1__atc-form { display: contents; }
.hc-pdp-m1__atc .hc-pdp-m1__qty { height: 50px; min-height: 50px; }
.hc-pdp-m1__atc .hc-pdp-m1__qty-btn { height: 50px; }
.hc-pdp-m1__atc .hc-pdp-m1__qty-input { height: 50px; }

/* ─── Out-of-stock CTA variant ─────────────────────────────────────── */
.hc-pdp-m1__cta-primary--request {
  background: linear-gradient(135deg, var(--hc-accent-dark, #7a6548), var(--hc-accent, #8b7355));
  gap: 10px;
}
.hc-pdp-m1__cta-primary--request:hover {
  background: linear-gradient(135deg, #6a5840, #7a6548);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -8px rgba(122, 101, 72, 0.36);
}
.hc-pdp-m1__cta-primary--request svg { width: 16px; height: 16px; }

/* ─── Icon-only action row (replaces old wide-pill .acts/.act) ─────── */
.hc-pdp-m1__icon-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 0.5px dashed rgba(141, 109, 71, 0.22);
}
.hc-pdp-m1__icon-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 4px 8px;
  background: transparent;
  border: 0;
  border-radius: 12px;
  color: var(--hc-ink-soft, rgba(26, 23, 20, 0.62));
  font-family: var(--hc-sans, "Outfit", sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.22s cubic-bezier(0.2, 0.84, 0.3, 1),
    color 0.22s cubic-bezier(0.2, 0.84, 0.3, 1),
    transform 0.22s cubic-bezier(0.2, 0.84, 0.3, 1);
}
.hc-pdp-m1__icon-btn::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 184, 150, 0.22), rgba(184, 154, 111, 0.08));
  border: 0.5px solid rgba(141, 109, 71, 0.22);
  transition:
    background 0.22s cubic-bezier(0.2, 0.84, 0.3, 1),
    border-color 0.22s cubic-bezier(0.2, 0.84, 0.3, 1),
    transform 0.32s cubic-bezier(0.2, 0.84, 0.3, 1),
    box-shadow 0.32s cubic-bezier(0.2, 0.84, 0.3, 1);
}
.hc-pdp-m1__icon-btn > svg {
  width: 18px;
  height: 18px;
  color: var(--hc-accent-dark, #7a6548);
  margin-block-start: -34px;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.2, 0.84, 0.3, 1), color 0.22s ease;
}
.hc-pdp-m1__icon-label { font-size: 10.5px; line-height: 1.2; }
.hc-pdp-m1__icon-btn:hover { color: var(--hc-ink, #1a1714); }
.hc-pdp-m1__icon-btn:hover::before {
  background: linear-gradient(135deg, rgba(212, 184, 150, 0.42), rgba(184, 154, 111, 0.20));
  border-color: var(--hc-gold-border, rgba(212, 184, 150, 0.62));
  box-shadow: 0 8px 18px -8px rgba(184, 154, 111, 0.42);
  transform: translateY(-2px);
}
.hc-pdp-m1__icon-btn:hover > svg {
  transform: translateY(-2px) scale(1.08);
  color: var(--hc-ink, #1a1714);
}
.hc-pdp-m1__icon-btn:active::before { transform: translateY(0) scale(0.96); }
.hc-pdp-m1__icon-btn:focus-visible::before {
  outline: 2px solid var(--hc-accent, #8b7355);
  outline-offset: 2px;
}
.hc-pdp-m1__icon-btn[data-active="true"] > svg { color: #c9433a; fill: #c9433a; }

/* ─── Trust strip ──────────────────────────────────────────────────── */
.hc-pdp-m1__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0 0;
  padding: 14px 16px;
  background: rgba(212, 184, 150, 0.10);
  border: 0.5px solid rgba(141, 109, 71, 0.16);
  border-radius: 12px;
  list-style: none;
}
.hc-pdp-m1__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hc-sans, "Outfit", sans-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--hc-ink-soft, rgba(26, 23, 20, 0.7));
  flex: 1 1 auto;
  white-space: nowrap;
}
.hc-pdp-m1__trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--hc-accent-dark, #7a6548);
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .hc-pdp-m1__atc { grid-template-columns: 1fr; gap: 8px; }
  .hc-pdp-m1__icon-row { gap: 4px; }
  .hc-pdp-m1__trust { flex-direction: column; gap: 8px; }
  .hc-pdp-m1__trust-item { white-space: normal; }
}

/* Per-action icon animations on hover */


@keyframes hc-pdp-m1-shake {
  0%, 100% { transform: rotate(0); }
  20%  { transform: rotate(-14deg); }
  40%  { transform: rotate(12deg); }
  60%  { transform: rotate(-8deg); }
  80%  { transform: rotate(6deg); }
}

/* ─── Sticky tab bar ─── */
.hc-pdp-m1__tabs-bar {
position: sticky;
  top: var(--hc-hdr-h, 72px);
  z-index: 50;
  margin: 0 calc(-1 * var(--hc-sp-5, 28px));
  padding: 12px clamp(20px, 2.4vw, 32px);
  background: rgba(245, 242, 236, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 0.5px solid rgba(141, 109, 71, 0.20);
  border-bottom: 0.5px solid rgba(141, 109, 71, 0.20);
  box-shadow: 0 8px 22px -16px rgba(40, 30, 15, 0.22);
}
.hc-pdp-m1__tabs {
display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 1360px;
  margin: 0 auto;
}
.hc-pdp-m1__tab {
display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--hc-paper, #ffffff);
  border: 0.5px solid rgba(141, 109, 71, 0.18);
  border-radius: 999px;
  font-family: var(--hc-sans, "Outfit", sans-serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--hc-ink-soft, rgba(26, 23, 20, 0.78));
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.hc-pdp-m1__tab:hover {
background: rgba(212, 184, 150, 0.16);
  border-color: rgba(141, 109, 71, 0.42);
  color: var(--hc-ink, #1a1714);
}
.hc-pdp-m1__tab.is-active {
background: linear-gradient(180deg, #1f1a15, #14110d);
  color: var(--hc-paper, #ffffff);
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.28);
}
.hc-pdp-m1__tab__c {
display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  background: rgba(212, 184, 150, 0.22);
  color: var(--hc-accent-dark, #7a6548);
  border-radius: 999px;
  font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}


/* ─── Tab panels (full-width content) ─── */
.hc-pdp-m1__panel {
  /* Parent .hc-pdp-m1__tabs is display:flex (flex-wrap для tab buttons),
     поэтому panel-у нужен явный flex-basis:100% чтобы занять полную строку.
     Без этого panel схлопывался до content-width = 1054px, оставляя 290px
     пустоты по бокам. Это часть source-rule, не override. */
  flex: 1 1 100%;
  width: 100%;
  padding: 36px 0 24px;
  max-width: 1360px;
  margin: 0 auto;
}
.hc-pdp-m1__panel h3 {
font-family: var(--hc-serif, "Playfair Display", Georgia, serif);
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 24px);
  margin: 24px 0 10px;
  letter-spacing: -0.005em;
}
.hc-pdp-m1__panel h3:first-child {
margin-top: 0;
}
.hc-pdp-m1__panel p {
line-height: 1.65;
  color: var(--hc-ink-soft, rgba(26, 23, 20, 0.78));
  margin: 0 0 12px;
}
.hc-pdp-m1__panel ul {
line-height: 1.7;
  color: var(--hc-ink-soft, rgba(26, 23, 20, 0.78));
  padding-left: 18px;
  margin: 0 0 16px;
}
.hc-pdp-m1__panel li {
margin: 6px 0;
}

/* spec table for «Характеристики» tab */
.hc-pdp-m1__spec-table {
width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
}
.hc-pdp-m1__spec-table tr {
border-bottom: 0.5px solid rgba(141, 109, 71, 0.14);
}
.hc-pdp-m1__spec-table tr:last-child {
border-bottom: 0;
}
.hc-pdp-m1__spec-table td {
padding: 12px 14px;
  vertical-align: top;
}
.hc-pdp-m1__spec-table td:first-child {
width: 44%;
  font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hc-ink-mid, rgba(26, 23, 20, 0.55));
}
.hc-pdp-m1__spec-table td:last-child {
font-family: var(--hc-sans, "Outfit", sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--hc-ink, #1a1714);
}

@media (max-width: 1024px) {
  .hc-pdp-m1__hero {
    grid-template-columns: 1fr;
  }
  .hc-pdp-m1__buy { position: static; top: auto; }
  .hc-pdp-m1__tabs-bar {
    margin: 0;
    border-radius: 0;
  }
}

@media (max-width: 1440px) and (min-width: 921px) {
}


.hc-pdp-m1__tab.is-active .hc-pdp-m1__tab__c {
background: rgba(255, 255, 255, 0.18);
  color: var(--hc-paper, #ffffff);
}

.hc-pdp-m1__atc-form { display: contents; }
body.page-pdp .hc-mobile-tabbar { display: none; }
.page-pdp .hc-wrap { max-width: min(1480px, calc(100vw - 48px)); }


/* ---- folded from 130-hc-pdp-specs.css ---- */
/* =================== hc-pdp-specs.css =================== */
/* hc-pdp-specs — grouped premium specification list. Specs are bucketed
 * into categories (identifiers, mechanics, dimensions, material, packaging,
 * other) and rendered as section cards with SVG icon headers. Each row is
 * a clean dt/dd pair (no chip-pills). Hover row highlight. */

.hc-pdp-specs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: clamp(14px, 1.4vw, 22px);
  margin: 0;
  width: 100%;
}

.hc-pdp-specs__group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(180deg, var(--hc-paper, #ffffff) 0%, rgba(251, 247, 237, 0.86) 100%);
  border: 0.5px solid rgba(141, 109, 71, 0.18);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.32s ease, box-shadow 0.32s ease, transform 0.32s ease;
}
.hc-pdp-specs__group:hover {
  border-color: var(--hc-gold-border, rgba(212, 184, 150, 0.55));
  box-shadow: 0 18px 36px -22px rgba(184, 154, 111, 0.32);
}

.hc-pdp-specs__group-head {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 0.5px solid rgba(141, 109, 71, 0.16);
  background: linear-gradient(135deg, rgba(212, 184, 150, 0.14), rgba(184, 154, 111, 0.04));
}

.hc-pdp-specs__group-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(212, 184, 150, 0.32), rgba(184, 154, 111, 0.14));
  border: 0.5px solid var(--hc-gold-border, rgba(212, 184, 150, 0.45));
  border-radius: 10px;
  color: var(--hc-accent-dark, #7a6548);
  transition: transform 0.42s cubic-bezier(0.2, 0.84, 0.3, 1);
}
.hc-pdp-specs__group-ico svg { width: 18px; height: 18px; }
.hc-pdp-specs__group:hover .hc-pdp-specs__group-ico {
  transform: rotate(-6deg) scale(1.08);
}

.hc-pdp-specs__group-title {
  margin: 0;
  font-family: var(--hc-serif, "Playfair Display", Georgia, serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--hc-ink, #1a1714);
}

.hc-pdp-specs__group-count {
  font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--hc-accent-dark, #7a6548);
  padding: 3px 9px;
  background: rgba(212, 184, 150, 0.22);
  border-radius: 999px;
}

.hc-pdp-specs__list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.hc-pdp-specs__row {
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) minmax(0, 1.1fr);
  align-items: baseline;
  gap: 14px;
  padding: 12px 18px;
  margin: 0;
  background: transparent;
  border-bottom: 0.5px dashed rgba(141, 109, 71, 0.14);
  transition: background 0.18s ease;
}
.hc-pdp-specs__row:last-child { border-bottom: 0; }
.hc-pdp-specs__row:hover {
  background: linear-gradient(90deg, rgba(212, 184, 150, 0.12), rgba(212, 184, 150, 0.02));
}

.hc-pdp-specs__key {
  margin: 0;
  font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hc-ink-mid, rgba(26, 23, 20, 0.55));
}

.hc-pdp-specs__val {
  margin: 0;
  font-family: var(--hc-sans, "Outfit", sans-serif);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--hc-ink, #1a1714);
  word-break: break-word;
}
.hc-pdp-specs__val--num {
  font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-feature-settings: "tnum" 1;
  letter-spacing: 0.03em;
}
.hc-pdp-specs__val--brand {
  font-family: var(--hc-serif, "Playfair Display", Georgia, serif);
  font-style: italic;
  font-size: 16px;
  color: var(--hc-accent-dark, #7a6548);
}

@media (max-width: 720px) {
  .hc-pdp-specs { grid-template-columns: 1fr; }
  .hc-pdp-specs__row { grid-template-columns: 1fr; gap: 2px; padding: 10px 16px; }
  .hc-pdp-specs__row:hover { background: rgba(212, 184, 150, 0.08); }
}

/* ---- folded from 136-hc-pdp.css ---- */
/* PDP base layout primitives. Variants own visual skin in 125/126/127. */

.hc-pdp {
  padding-top: var(--hc-sp-5);
}

.hc-pdp__main,
.hc-pdp__grid {
  display: grid;
  gap: clamp(14px, 1.3vw, 22px);
  align-items: start;
}

.page-pdp .hc-pdp__grid {
  grid-template-columns: minmax(360px, 1.05fr) minmax(360px, 1fr) minmax(320px, 0.95fr);
  margin-top: var(--hc-sp-4, 20px);
  margin-bottom: clamp(40px, 4vw, 64px);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.hc-pdp__title-col,
.hc-pdp__info,
.hc-pdp__main {
  min-width: 0;
}

.hc-pdp__title {
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.hc-pdp__related {
  margin: 32px 0 12px;
}

.hc-pdp__related-title {
  font-size: 18px;
  margin: 0 0 12px;
  font-weight: 500;
}

@media (max-width: 1440px) {
  .page-pdp .hc-pdp__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 1024px) {
  .hc-pdp__title-col,
  .hc-pdp__info {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .page-pdp .hc-pdp__grid {
    grid-template-columns: 1fr;
  }
}


/* ---- folded from 189-page-pdp.css ---- */
/* =================== page-pdp.css =================== */
.page-pdp .hc-pdp-engineer__grid a,
.page-pdp .hc-pdp-engineer__grid button {
  min-height: 76px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--sf-line);
  background: rgba(255, 255, 255, 0.96);
  display: grid;
  gap: 2px;
  text-align: left;
}

.page-pdp .hc-pdp-engineer__grid b {
  font-size: 13px;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  font-weight: 500;
  color: var(--sf-ink, var(--hc-ink, #1a1714));
}

.page-pdp .hc-pdp-engineer__grid span,
.page-pdp .hc-pdp-engineer__grid b {
  display: block;
  white-space: normal;
  overflow-wrap: anywhere;
}

.page-pdp .pdp-anchor-nav a {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(26, 23, 20, 0.62);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.page-pdp .pdp-anchor-nav a:hover {
  color: var(--sf-ink, var(--hc-ink, #1a1714));
  border-bottom-color: rgba(180, 151, 115, 0.45);
}
.page-pdp .pdp-trust-strip__item b {
  font-family: var(--hc-serif, 'Playfair Display', Georgia, serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--sf-ink, var(--hc-ink, #1a1714));
  line-height: 1.25;
}
.page-pdp .pdp-trust-strip__item span {
  font-size: 12px;
  color: rgba(26, 23, 20, 0.60);
  line-height: 1.45;
}

/* folded from 198-pdp-anchor-nav.css */
.page-pdp .pdp-anchor-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  padding: 8px 0;
  margin: 0 0 22px;
  border-bottom: 1px solid rgba(180, 151, 115, 0.22);
  position: sticky;
  top: var(--hc-hdr-h, 72px);
  z-index: 8;
  background: rgba(248, 246, 243, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}
.page-pdp .pdp-anchor-nav a.is-active,
.page-pdp .pdp-anchor-nav a:target {
  color: var(--sf-ink, var(--hc-ink, #1a1714));
  border-bottom-color: var(--hc-accent, #8b7355);
}

/* folded from 199-pdp-cta-row.css (page-scoped part only) */
.page-pdp .pdp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
}

/* folded from 203-pdp-sec-title.css */
.page-pdp .pdp-sec-title {
  max-width: 16ch;
  margin-top: var(--hc-sp-1);
}

/* folded from 202-pdp-sec-block.css */
.page-pdp .pdp-sec-block { margin-top: var(--hc-sp-5); }
.page-pdp .pdp-sec-block--spacious { margin-top: var(--hc-sp-7); }

.page-pdp .hc-pdp__grid > .pdp-anchor-nav { margin-bottom: 16px; }
.page-pdp .pdp-trust-strip { margin-top: 24px; }
.page-pdp .hc-pdp-m1__desc { margin-top: 12px; }
.page-pdp .hc-pdp-m1__why { margin-top: 16px; }
.page-pdp .hc-pdp-m1__why + .pdp-sec-block { margin-top: 20px; }

@media (max-width: 1024px) {
  .page-pdp .hc-pdp__grid > .pdp-anchor-nav { margin-bottom: 12px; }
}

/* folded from 204-pdp-trust-strip.css */
.page-pdp .pdp-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 24px;
  margin: 32px 0 24px;
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.95), rgba(248, 244, 237, 0.86));
  border: 1px solid rgba(180, 151, 115, 0.22);
  border-radius: 18px;
}
@media (max-width: 768px)  {
  .page-pdp .pdp-trust-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-pdp .pdp-anchor-nav a {
    padding: 10px 12px;
    font-size: 12px;
  }
}
.page-pdp .pdp-trust-strip__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hc-pdp-sticky-dock {
  position: fixed;
  right: 24px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 252, 247, 0.96);
  border: 0.5px solid rgba(141, 109, 71, 0.24);
  border-radius: 14px;
  box-shadow: 0 18px 44px -28px rgba(40, 30, 15, 0.34);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.hc-pdp-sticky-dock.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hc-pdp-sticky-dock__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hc-pdp-sticky-dock__sku {
  font: 600 10px/1.1 var(--hc-mono, "JetBrains Mono", monospace);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(26, 23, 20, 0.56);
}
.hc-pdp-sticky-dock__price {
  font: 700 16px/1.2 var(--hc-sans, "Outfit", sans-serif);
  color: var(--hc-ink, #1a1714);
}
.hc-pdp-sticky-dock__cta {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: 0;
  background: #15120f;
  color: #fff;
  font: 600 14px/1 var(--hc-sans, "Outfit", sans-serif);
  cursor: pointer;
}
@media (max-width: 1024px) {
  .hc-pdp-sticky-dock { display: none; }
}

/* ---- folded from 118-hc-pdp-bc-signals.css ---- */
.hc-pdp-bc-signals {display: flex; flex-wrap: wrap; align-items: center; gap: var(--hc-sp-2); margin-bottom: var(--hc-sp-3)}
.hc-pdp-bc-signals__dot {color: var(--hc-accent)}
.hc-pdp-bc-signals__badges {display: flex; flex-wrap: wrap; gap: 6px}


/* ─── Sprint 12.short: sticky buy-panel stability ─── */
.hc-pdp-m1__buy {
  /* improve sticky on long scroll: smooth + reasonable top offset */
  scroll-margin-top: 100px;
  will-change: transform;
}
@media (min-width: 921px) {
  .hc-pdp-m1__buy {
    /* ensure card doesn't overflow viewport vertically */
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}


/* ─── Sprint13.P2: PDP mobile responsive ─── */
@media (max-width: 720px) {
  .hc-pdp-m1__hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hc-pdp-m1__aside {
    padding: 16px;
  }
  .hc-pdp-m1__title {
    font-size: clamp(22px, 6vw, 30px);
  }
  /* atc: qty + cta stack vertically on phone */
  .hc-pdp-m1__atc {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hc-pdp-m1__cta-primary {
    width: 100%;
    justify-content: center;
  }
  .hc-pdp-m1__icon-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }
  .hc-pdp-m1__icon-btn::before {
    width: 36px;
    height: 36px;
  }
  .hc-pdp-m1__icon-label {
    font-size: 10px;
  }
  /* Tab-bar horizontal scroll for many tabs */
  .hc-pdp-m1__tabs-bar {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }
  .hc-pdp-m1__tabs-bar::-webkit-scrollbar { display: none; }
}


/* ─── Sprint14.3: PDP specs full-width 2col grid ─── */
/* Tab "Характеристики" body — make full-width grid 2-col so both sides are used */
.hc-pdp-specs,
.hc-pdp-m1__specs,
[class*="pdp"][class*="specs-body"],
[id*="specs"][role="tabpanel"],
[id*="characteristics"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 920px) {
  .hc-pdp-specs, .hc-pdp-m1__specs,
  [class*="pdp"][class*="specs-body"],
  [id*="specs"][role="tabpanel"] {
    grid-template-columns: 1fr;
  }
}
.hc-pdp-specs__group {
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(247, 240, 225, 0.42));
  border: 0.5px solid rgba(141, 109, 71, 0.14);
  border-radius: 14px;
  padding: 16px;
}
.hc-pdp-specs__group-h {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 0.5px dashed rgba(141, 109, 71, 0.22);
}
.hc-pdp-specs__group-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hc-gold, #d4b896), var(--hc-gold-dark, #b89a6f));
  display: grid;
  place-items: center;
  color: var(--hc-ink, #1a1714);
}
.hc-pdp-specs__row,
[class*="pdp-specs"][class*="row"] {
  display: grid;
  grid-template-columns: minmax(140px, 0.5fr) 1fr;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 0.5px solid rgba(141, 109, 71, 0.10);
}
.hc-pdp-specs__row:last-child { border-bottom: none; }
.hc-pdp-specs__label {
  font-family: var(--hc-mono, monospace);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--hc-ink-soft, rgba(26, 23, 20, 0.55));
}
.hc-pdp-specs__value {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--hc-ink, #1a1714);
}
