

/* Start:/local/templates/pennington-2.0/css/style.css?1783790143206224*/
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
  --g1: #E92E34;
  --g2: #E31E24;
  --g3: #C1181E;
  --g-deep: #A3161B;
  --g-ink: #11151a;
  --g-soft: #FBE9E8;
  --g-soft2: #FDF2F1;
  --o1: #2b6fdb;
  --o2: #1f5bb8;
  --o-soft: #E4F1F8;
  --star: #F5A623;
  --seal: #A3161B;
  --surface: #FFFFFF;
  --surface-2: #f7f8fa;
  --paper: #fafbfc;
  --paper2: #f4f6f8;
  --well: #EEF1F3;
  --page: linear-gradient(180deg, #FFFFFF 0%, #fafbfc 100%);
  --ink: #11151a;
  --ink-soft: #41505a;
  --ink-faint: #9aa3ab;
  --border: #E4E8EB;
  --border-strong: #cdd4da;
  --swoosh: linear-gradient(150deg, #E92E34, #C1181E);
  --swoosh-h: linear-gradient(150deg, #ff3d43, #E31E24);
  --success: #1f8a5b;
  --success-bg: #E9F6EC;
  --warning: #C98A1E;
  --warning-bg: #FBF1DD;
  --danger: #E31E24;
  --danger-bg: #FBE9E8;
  --info: #2b6fdb;
  --info-bg: #E4F1F8;
  --sh-sm: 0 1px 3px rgba(17,21,26,.05), 0 4px 12px rgba(17,21,26,.05);
  --sh-md: 0 4px 12px rgba(17,21,26,.06), 0 14px 32px rgba(17,21,26,.08);
  --sh-lg: 0 10px 24px rgba(17,21,26,.08), 0 30px 60px rgba(17,21,26,.12);
  --sh-xl: 0 18px 40px rgba(17,21,26,.12), 0 44px 80px rgba(17,21,26,.16);
  --font-base: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-cjk: 'Manrope', sans-serif;
  --r-sm: 9px;
  --r-md: 12px;
  --r-lg: 14px;
  --r-xl: 18px;
  --r-pill: 22px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --z-header: 200;
  --z-overlay: 900;
  --z-drawer: 910;
  --z-modal: 1010;
  --z-toast: 1100;
  --container: 1280px;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--page);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Sticky footer: подвал всегда прижат к низу даже при коротком контенте */
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

body > main {
  flex: 1 0 auto;
}

body > .site-footer {
  flex-shrink: 0;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 800;
  line-height: 1.15;
  color: inherit;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

img, svg, video {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--g1);
  outline-offset: 2px;
}

::selection {
  background: var(--g-soft);
  color: var(--g3);
}

.hs-grad {
  background: var(--swoosh) !important;
  color: #fff;
  transition: filter 0.25s var(--ease), transform 0.15s var(--spring), box-shadow 0.25s var(--ease);
}

.hs-grad:hover {
  filter: brightness(1.05) saturate(1.07);
}

.hs-grad:active {
  transform: scale(0.97);
}

.text-gradient {
  background: var(--swoosh);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.seal {
  display: inline-grid;
  place-items: center;
  font-family: var(--font-cjk);
  color: #fff;
  background: var(--seal);
  transform: rotate(-4deg);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

:target {
  scroll-margin-top: 96px;
}

.slider-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: var(--border-strong);
  cursor: pointer;
  padding: 0;
  transition: width 0.25s var(--ease), background 0.25s var(--ease);
}

.slider-dot::after {
  content: "";
  position: absolute;
  inset: -16px -8px;
}

.slider-dot.active {
  width: 26px;
  background: var(--g1);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  max-width: 960px;
}

@media screen and (max-width: 560px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.section {
  padding-block: 64px;
}

@media screen and (max-width: 900px) {
  .section {
    padding-block: 48px;
  }
}
@media screen and (max-width: 760px) {
  .section {
    padding-block: 36px;
  }
}
.section-sm {
  padding-block: 40px;
}

.section-head {
  margin-bottom: 32px;
}

@media screen and (max-width: 760px) {
  .section-head {
    margin-bottom: 22px;
  }
}
.section-title {
  font-size: 38px;
  letter-spacing: -0.02em;
}

@media screen and (max-width: 900px) {
  .section-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 760px) {
  .section-title {
    font-size: 25px;
  }
}
.section-subtitle {
  margin-top: 10px;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media screen and (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 900px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }
}
h1, .h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h2, .h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h3, .h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h4, .h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

h5, .h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

h6, .h6 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.display-1 {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

@media screen and (max-width: 900px) {
  h1, .h1 {
    font-size: 44px;
  }
  h2, .h2 {
    font-size: 30px;
  }
  h3, .h3 {
    font-size: 25px;
  }
  .display-1 {
    font-size: 54px;
  }
}
@media screen and (max-width: 760px) {
  h1, .h1 {
    font-size: 34px;
  }
  h2, .h2 {
    font-size: 26px;
  }
  h3, .h3 {
    font-size: 22px;
  }
  .display-1 {
    font-size: 40px;
  }
}
.lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
}

.caption {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-faint);
}

.link {
  color: var(--g2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-strong);
}

.link:hover {
  text-decoration-color: var(--g1);
}

.blockquote {
  margin: 0;
  padding: 14px 20px;
  border-left: 3px solid var(--g1);
  background: var(--g-soft);
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  color: var(--ink-soft);
  font-style: italic;
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list-check li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-soft);
}

.list-check svg {
  flex: none;
  margin-top: 2px;
  color: var(--g2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g2);
}

.brush-word {
  position: relative;
  white-space: nowrap;
}

.brush-word .brush-word-text {
  background: var(--swoosh);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.brush-word .brush-word-line {
  position: absolute;
  left: -4px;
  bottom: -10px;
  width: 104%;
  height: 20px;
}

.brush-word .brush-word-line path {
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: hs-draw 1.2s var(--ease) 0.4s forwards;
}

@keyframes hs-draw {
  to {
    stroke-dashoffset: 0;
  }
}
.article {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.article h2 {
  font-size: 26px;
  margin: 32px 0 14px;
  color: var(--ink);
}

.article h3 {
  font-size: 21px;
  margin: 26px 0 12px;
  color: var(--ink);
}

.article p {
  margin: 0 0 16px;
}

.article ul {
  margin: 0 0 16px;
}

.article img {
  border-radius: var(--r-lg);
  margin: 8px 0 20px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 15px 28px;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.25s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--spring), box-shadow 0.25s var(--ease);
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle closest-side, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  background: radial-gradient(circle closest-side, color-mix(in srgb, currentColor 52%, transparent), transparent 74%);
  pointer-events: none;
  opacity: 0.9;
  animation: btn-ripple 1s linear forwards;
  z-index: 0;
}

.btn > *:not(.btn-ripple) {
  position: relative;
  z-index: 1;
}

[data-rippling] > *:not(.btn-ripple) {
  position: relative;
  z-index: 1;
}

@keyframes btn-ripple {
  from {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.9;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
.btn svg {
  flex: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--swoosh);
  color: #fff;
  box-shadow: 0 14px 30px rgba(47, 140, 40, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.05) saturate(1.07);
}

.btn-primary:active {
  transform: scale(0.96);
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  border: 1.5px solid var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--g1);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0) scale(0.97);
}

.btn-soft {
  background: var(--g-soft);
  color: var(--g2);
  font-weight: 600;
}

.btn-soft:hover {
  background: #DCEFDD;
  transform: translateY(-2px);
}

.btn-soft:active {
  transform: translateY(0) scale(0.97);
}

.btn-link {
  background: transparent;
  color: var(--g2);
  font-weight: 600;
  padding: 15px 12px;
  box-shadow: none;
}

.btn-sm {
  font-size: 13px;
  padding: 9px 16px;
  gap: 8px;
}

.btn-lg {
  font-size: 17px;
  padding: 17px 34px;
}

.btn-icon {
  width: 50px;
  height: 50px;
  padding: 0;
  gap: 0;
  border-radius: 13px;
  display: grid;
  place-items: center;
}

.btn-icon.btn-sm {
  width: 48px;
  height: 48px;
}

.btn-block {
  width: 100%;
}

.btn:disabled,
.btn.disabled {
  background: var(--well);
  color: var(--ink-faint);
  border: none;
  box-shadow: none;
  filter: none;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.btn-arrow svg {
  transition: transform 0.25s var(--ease);
}

.btn-arrow:hover svg {
  transform: translateX(6px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  padding: 5px 11px;
  border-radius: 8px;
}

.badge-sale {
  background: var(--g-soft);
  color: var(--g2);
}

.badge-hit {
  background: var(--g2);
  color: #fff;
}

.badge-new {
  background: var(--swoosh);
  color: #fff;
}

.badge-gift {
  background: var(--o-soft);
  color: var(--o2);
  border-radius: var(--r-pill);
}

.badge-status {
  border-radius: var(--r-pill);
  font-weight: 600;
  padding: 6px 12px;
}

.badge-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.badge-in-stock {
  background: var(--success-bg);
  color: var(--success);
}

.badge-out-stock {
  background: var(--danger-bg);
  color: var(--danger);
}

.seal {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(200, 72, 46, 0.3);
}

.seal-sm {
  width: 36px;
  height: 36px;
  font-size: 19px;
}

.seal-lg {
  width: 48px;
  height: 48px;
  font-size: 24px;
  border-radius: 11px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--g-soft);
  color: var(--g2);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--r-pill);
}

.chip .chip-close {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  color: var(--g2);
  display: grid;
  place-items: center;
  padding: 0;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-control {
  width: 100%;
  border: 1.5px solid var(--border-strong);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control::placeholder {
  color: var(--ink-faint);
}

.form-control:focus {
  border-color: var(--g1);
  box-shadow: 0 0 0 4px rgba(47, 168, 79, 0.14);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-pill);
  padding: 5px 5px 5px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-box.is-focus {
  border-color: var(--g1);
  box-shadow: 0 0 0 4px rgba(47, 168, 79, 0.14);
}

.search-box .search-icon {
  color: var(--ink-faint);
  flex: none;
}

.search-box .search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 15px;
}

.form-select {
  width: 100%;
  border: 1.5px solid var(--border-strong);
  border-radius: 12px;
  padding: 13px 40px 13px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-color: var(--surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A988F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-select:focus {
  border-color: var(--g1);
  box-shadow: 0 0 0 4px rgba(47, 168, 79, 0.14);
}

.form-switch {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  width: 52px;
  height: 30px;
  border-radius: var(--r-pill);
  padding: 3px;
  display: flex;
  justify-content: flex-start;
  background: var(--border-strong);
  transition: background 0.25s;
}

.form-switch .switch-knob {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s var(--ease);
}

.form-switch.is-on {
  background: var(--g2);
}

.form-switch.is-on .switch-knob {
  transform: translateX(22px);
}

.form-check {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
}

.form-check .check-box {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  display: grid;
  place-items: center;
  flex: none;
  transition: background 0.2s, border-color 0.2s;
}

.form-check .check-box svg {
  opacity: 0;
  transition: opacity 0.2s;
}

.form-check.is-checked .check-box {
  background: var(--g2);
  border-color: var(--g2);
}

.form-check.is-checked .check-box svg {
  opacity: 1;
}

.size-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-option {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  min-width: 54px;
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink);
  transition: all 0.2s;
}

.size-option.active {
  border-color: var(--g1);
  background: var(--g-soft);
  color: var(--g2);
}

.color-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.color-option {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(20, 30, 20, 0.12);
  transition: transform 0.2s var(--spring), box-shadow 0.2s;
}

.color-option.active {
  box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--g2);
  transform: scale(1.06);
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
}

.qty-stepper .qty-btn {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  width: 42px;
  height: 42px;
  background: var(--surface);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.qty-stepper .qty-btn:hover {
  background: var(--well);
}

.qty-stepper .qty-value {
  min-width: 46px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.16s var(--spring);
}

.qty-stepper-lg .qty-btn {
  width: 48px;
  height: 52px;
}

/* Скелетон загрузки формы (ajax-подгрузка в модалку) */
@keyframes hs-skeleton {
  0% {
    background-position: 150% 0;
  }
  100% {
    background-position: -150% 0;
  }
}
.skeleton {
  background: var(--well) linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.65) 50%, rgba(255, 255, 255, 0) 100%) no-repeat;
  background-size: 200% 100%;
  animation: hs-skeleton 1.4s ease-in-out infinite;
  border-radius: 10px;
}

.form-skeleton {
  padding: 4px 0;
}

.form-skeleton-row {
  margin-bottom: 18px;
}

.form-skeleton .sk-label {
  display: block;
  height: 12px;
  width: 38%;
  margin-bottom: 9px;
  border-radius: 6px;
}

.form-skeleton .sk-input {
  display: block;
  height: 48px;
}

.form-skeleton-btn {
  display: block;
  height: 50px;
  margin-top: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .skeleton {
    animation: none;
  }
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--sh-sm);
}

.card-body {
  padding: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.product-card-media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--well);
  display: grid;
  place-items: center;
  padding: 18px;
}

.product-card-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Слои картинки catalog.item (штатные span'ы). Обёртка <a> заполняет всю медиа-область
   (position:absolute) — иначе два span'а (основное + альтернативное фото) идут потоком,
   складываются в 8/3 и растягивают карточку. z-index ниже бейджей/кнопки избранного,
   т.к. в разметке <a> идёт последним и иначе перекрыл бы их. */
.product-item-image-wrapper {
  position: absolute;
  inset: 18px; /* поле внутри медиа (абсолют не наследует padding) */
  /* !important — в шаблоне на <a> инлайном стоит width:100%; при absolute это ломает
     right-смещение (обёртка тянется на всю ширину от left:18px → фото уезжает вправо).
     Ширину/высоту задаёт inset. */
  width: auto !important;
  height: auto !important;
  display: block;
  z-index: 1;
  background: #fff;
}

.product-card-media .product-item-image-original,
.product-card-media .product-item-image-alternative {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto; /* перебиваем инлайновый aspect-ratio:4/3 из шаблона */
  /* !important — в разметке catalog.item инлайном стоит background-size:cover (обрезает
     и искажает кадрирование); перебиваем на contain, чтобы пропорции фото сохранялись. */
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat;
  /* Белая подложка у КАЖДОГО фото: у товара с 2 фото (прозрачные PNG) верхнее
     полностью перекрывает нижнее — картинки не «налезают» друг на друга. */
  background-color: #fff;
  transition: opacity 0.35s ease;
}

/* Показана одна картинка; альтернативная проявляется при наведении на карточку. */
.product-card-media .product-item-image-alternative {
  opacity: 0;
}

.product-card:hover .product-card-media .product-item-image-alternative {
  opacity: 1;
}

/* Бейджи и «в избранное» — поверх фото. */
.product-card-badges,
.product-card-fav {
  z-index: 2;
}

.product-card-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.product-card-badges .badge {
  padding: 4px 9px;
  font-size: 12px;
}

.product-card-fav {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--ink-faint);
  z-index: 2;
  transition: color 0.2s, background 0.2s;
}

.product-card-fav:hover {
  color: var(--o2);
}

.product-card-fav.is-active {
  color: var(--o2);
  background: var(--o-soft);
}

.product-card-fav.is-active svg {
  fill: currentColor;
}

.product-card-oos-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  background: rgba(238, 241, 243, 0.55);
}

.product-card-oos-overlay .badge-out-stock {
  background: rgba(17, 21, 26, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: var(--r-md);
}

.product-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.product-card-cat {
  font-size: 12px;
  color: var(--g2);
  font-weight: 600;
}

/* Выбор SKU в карточке не показываем — его делает модалка кнопки «В корзину» */
.product-card-sku {
  display: none;
}

.product-card-title {
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.35;
}

.product-card-price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-card-price {
  font-weight: 800;
  font-size: 20px;
}

.product-card-oldprice {
  font-size: 13px;
  color: var(--ink-faint);
  text-decoration: line-through;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px 22px;
  text-decoration: none;
  box-shadow: var(--sh-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
}

.category-card:hover .category-card-arrow {
  background: var(--swoosh);
  color: #fff;
  border-color: transparent;
}

.category-card:hover .category-card-ring img {
  transform: scale(1.08) rotate(3deg);
}

.category-card-ring {
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: var(--swoosh);
  padding: 3px;
  box-shadow: 0 12px 28px rgba(47, 140, 40, 0.2);
}

.category-card-ring .category-card-ring-inner {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--well);
  overflow: hidden;
}

.category-card-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.category-card-name {
  font-weight: 700;
  font-size: 17px;
}

.category-card-count {
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 4px;
}

.category-card-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--g2);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.review-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--sh-sm);
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--g1), var(--g3));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  flex: none;
}

.review-name {
  font-weight: 700;
  font-size: 16px;
}

.review-meta {
  font-size: 13px;
  color: var(--ink-faint);
}

.review-text {
  margin: 12px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-foot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--g2);
  font-weight: 600;
}

.alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid transparent;
}

.alert svg {
  flex: none;
}

.alert .alert-title {
  font-weight: 700;
  font-size: 14px;
}

.alert .alert-text {
  font-size: 13.5px;
  color: var(--ink-soft);
}

.alert-success {
  background: var(--success-bg);
  border-color: #CDEBD6;
}

.alert-success svg {
  stroke: var(--success);
}

.alert-success .alert-title {
  color: var(--success);
}

.alert-warning {
  background: var(--warning-bg);
  border-color: #F2E2BE;
}

.alert-warning svg {
  stroke: var(--warning);
}

.alert-warning .alert-title {
  color: var(--warning);
}

.alert-danger {
  background: var(--danger-bg);
  border-color: #F3CFCD;
}

.alert-danger svg {
  stroke: var(--danger);
}

.alert-danger .alert-title {
  color: var(--danger);
}

.alert-info-soft {
  background: var(--success-bg);
  border-color: #CDEBD6;
  color: var(--g3);
}

.tabs-nav {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 18px;
  color: var(--ink-soft);
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.tab-btn:hover {
  color: var(--ink);
}

.tab-btn.active {
  color: var(--g2);
  border-bottom-color: var(--g2);
}

.tab-pane {
  display: none;
  padding-top: 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.tab-pane.active {
  display: block;
}

.accordion-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
}

.accordion-item + .accordion-item {
  margin-top: 12px;
}

.accordion-header {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.accordion-icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--g-soft);
  color: var(--g2);
  display: grid;
  place-items: center;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.accordion-body p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.accordion-item.is-open .accordion-icon {
  background: var(--g2);
  color: #fff;
  transform: rotate(180deg);
}

.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-faint);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 18px;
}

.breadcrumb::-webkit-scrollbar {
  display: none;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  white-space: nowrap;
}

.breadcrumb-item a {
  color: var(--ink-faint);
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb-item a:hover {
  color: var(--g2);
}

.breadcrumb-item::before {
  content: "/";
  color: var(--ink-faint);
}

.breadcrumb-item:first-child::before {
  content: none;
}

.breadcrumb-item.active {
  color: var(--ink);
  font-weight: 700;
}

.pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.page-btn {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  display: grid;
  place-items: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.page-btn:hover {
  border-color: var(--g1);
  color: var(--g2);
}

.page-btn.active {
  background: var(--swoosh);
  color: #fff;
  border-color: transparent;
}

.page-btn.page-nav {
  color: var(--ink-soft);
}

.page-ellipsis {
  color: var(--ink-faint);
  padding: 0 4px;
}

.rating {
  color: var(--star);
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}

.rating-lg {
  font-size: 15px;
  letter-spacing: 2px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--well);
  padding: 7px 14px;
  border-radius: var(--r-pill);
}

.rating-badge b {
  font-size: 14px;
}

.rating-badge .rating-count {
  font-size: 13px;
  color: var(--ink-faint);
}

/* ============================================================
   Раздвигающийся спойлер для длинного текста ([data-spoiler]).
   JS (app.js) вешает .is-clamped, если текст выше клампа, и .is-open по клику.
   Фон затухания = var(--surface) (блок «О компании» на белом).
   ============================================================ */
.text-spoiler-body {
  position: relative;
  overflow: hidden;
}

/* переход включаем классом .is-ready (после первичного клампа) — иначе текст «схлопнется» на загрузке */
.text-spoiler.is-ready .text-spoiler-body {
  transition: max-height 0.42s var(--ease);
}

.text-spoiler.is-clamped:not(.is-open) .text-spoiler-body {
  max-height: 200px;
}

.text-spoiler.is-clamped:not(.is-open) .text-spoiler-body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  background: linear-gradient(rgba(255, 255, 255, 0), var(--surface));
  pointer-events: none;
}

.text-spoiler-toggle {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--g2);
  font-weight: 700;
  font-size: 15px;
}

.text-spoiler-toggle:hover {
  color: var(--g1);
}

.text-spoiler-toggle svg {
  transition: transform 0.2s var(--ease);
}

.text-spoiler.is-open .text-spoiler-toggle svg {
  transform: rotate(180deg);
}

.site-header {
  position: relative;
  z-index: var(--z-header);
  background: rgba(252, 251, 247, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

/* Компактная шапка: полная уезжает в потоке со страницы, а компактная «приезжает» сверху.
   position:fixed не меняет высоту документа → нет дребезга (JS резервирует место паддингом body). */
.site-header.is-compact {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  box-shadow: 0 8px 30px rgba(20, 30, 20, 0.1);
  animation: hs-header-drop 0.35s var(--ease);
}

@keyframes hs-header-drop {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.site-header.is-compact .header-topbar {
  height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border: none;
  pointer-events: none;
}

.header-mobile-bar {
  display: none;
}

.header-mobile-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.burger {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--g-soft);
  color: var(--g2);
  display: grid;
  place-items: center;
}

.header-topbar {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  transition: height 0.3s var(--ease), opacity 0.25s var(--ease);
}

.header-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

.header-topbar.is-hidden {
  height: 0;
  opacity: 0;
}

.topbar-info {
  display: flex;
  gap: 22px;
  align-items: center;
}

.topbar-info-item {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.topbar-info-item svg {
  stroke: var(--g2);
}

.topbar-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-nav a:hover {
  color: var(--g2);
}

.header-main {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: padding 0.3s var(--ease);
}

.site-header.is-compact .header-main {
  padding-top: 8px;
  padding-bottom: 8px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}

.header-logo img {
  height: 64px;
  width: auto;
  transition: height 0.3s var(--ease);
}

.site-header.is-compact .header-logo img {
  height: 44px;
}

.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-logo-text .header-logo-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.header-logo-text .header-logo-sub {
  font-size: 13px;
  color: var(--ink-faint);
}

.header-search {
  flex: 1;
  max-width: 560px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  flex: none;
}

.header-action {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--ink-soft);
  font-size: 11.5px;
  font-weight: 600;
}

.header-action:hover {
  color: var(--g2);
}

.header-action-icon {
  position: relative;
}

.header-action-count {
  position: absolute;
  top: -7px;
  right: -9px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--o2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--spring);
}

.header-action-count.is-bump {
  transform: scale(1.5);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 11px;
}

.header-phone .header-phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--g-soft);
  display: grid;
  place-items: center;
  color: var(--g2);
  flex: none;
}

.header-phone .header-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.header-phone .header-phone-num {
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.15s var(--ease);
}

.header-phone .header-phone-num:hover {
  color: var(--g2);
}

.header-phone .header-phone-label {
  font-size: 11.5px;
  color: var(--g2);
  font-weight: 600;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s var(--ease);
}

.header-phone .header-phone-label:hover {
  color: var(--g1);
  text-decoration: underline;
}

.header-nav {
  border-top: 1px solid var(--border);
}

.header-nav .container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 22px;
  border: none;
  border-radius: var(--r-pill);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(47, 140, 40, 0.26);
}

.nav-link {
  padding: 11px 16px;
  border-radius: var(--r-pill);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--g-soft);
  color: var(--g2);
}

.nav-link-sale {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--o2);
  font-weight: 700;
}

.nav-link-sale .nav-sale-mark {
  background: var(--o2);
  color: #fff;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: var(--r-pill);
}

.nav-fav {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--g2);
  font-weight: 600;
  font-size: 14px;
}

.nav-catalog {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 560px;
  max-width: calc(100vw - 48px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--sh-xl);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 50;
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-col .mega-col-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--g2);
  margin-bottom: 8px;
}

.mega-col a {
  display: block;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  transition: background 0.15s, color 0.15s;
}

.mega-col a:hover {
  background: var(--g-soft);
  color: var(--g2);
}

@media (max-width: 1100px) {
  .header-main {
    gap: 16px;
  }
  .header-actions {
    gap: 14px;
  }
  .header-action span:not(.header-action-icon) {
    display: none;
  }
  .header-phone-text {
    display: none;
  }
}
@media screen and (max-width: 760px) {
  .header-mobile-bar {
    display: block;
  }
  .header-topbar,
  .header-main,
  .header-nav {
    display: none;
  }
}
#pgh-nav a:focus-visible,
#pgh-nav span[role=button]:focus-visible,
#pgh-nav input:focus-visible {
  outline: 2px solid #ff5a5f;
  outline-offset: 2px;
  border-radius: var(--r-md);
}

/* В поисковом overlay красная обводка не нужна: сам инпут — уже активный элемент
   (бар развёрнут), а ✕ получает деликатную светлую обводку. */
.pgh-searchbar .search-input:focus-visible {
  outline: none;
}

.pgh-search-close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}

#pgh-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-header);
  width: min(var(--container), 100% - 32px);
  display: flex;
  flex-direction: column;
  border-radius: var(--r-xl);
  background: rgba(17, 21, 26, 0.9);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 44px rgba(13, 16, 20, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: box-shadow 0.3s var(--ease);
}

#pgh-nav.is-compact {
  box-shadow: 0 16px 48px rgba(13, 16, 20, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.pgh-spacer {
  height: 120px;
}

/* На страницах с полноэкранным hero (главная) шапка — плавающая полупрозрачная
   капсула поверх изображения, спейсер не нужен: hero должен начинаться от y=0. */
.pgh-spacer-none {
  height: 0 !important;
}

@media (max-width: 1000px) {
  .pgh-spacer {
    height: 84px;
  }
}
/* ---- utility bar ------------------------------------------ */
.pgh-util {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  overflow: hidden;
  max-height: 40px;
  opacity: 1;
  padding: 0 20px;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

#pgh-nav.is-compact .pgh-util {
  max-height: 0;
  opacity: 0;
}

.pgh-rep {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.pgh-rep-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g2);
}

@media (max-width: 1180px) {
  .pgh-rep {
    display: none !important;
  }
}
@media (max-width: 760px) {
  #pgh-nav .pgh-util {
    display: none;
  }
}
.pgh-util-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.pgh-util-link {
  display: inline-flex;
  align-items: center;
  height: 40px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.15s;
}

.pgh-util-link:hover {
  color: #fff;
}

/* ---- main bar ----------------------------------------------- */
.pgh-mainbar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 11px 14px 11px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pgh-logolink {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.pgh-logo {
  height: 40px;
  width: auto;
  transition: height 0.28s ease;
  filter: drop-shadow(0 2px 9px rgba(0, 0, 0, 0.4));
}

#pgh-nav.is-compact .pgh-logo {
  height: 30px;
}

@media (max-width: 1000px) {
  #pgh-nav.is-compact .pgh-logo {
    height: 40px;
  }
}
.pgh-navlinks {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}

@media (max-width: 1000px) {
  .pgh-navlinks {
    display: none !important;
  }
}
.pgh-catwrap {
  position: relative;
  display: flex;
}

.pgh-catbtn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  text-decoration: none;
  padding: 8px 13px;
  border-radius: var(--r-md);
  transition: background 0.2s, color 0.2s;
  color: rgba(255, 255, 255, 0.82);
}

.pgh-catbtn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.pgh-mega {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 12px;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.pgh-catwrap:hover .pgh-mega,
.pgh-mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.pgh-megapanel {
  width: 560px;
  max-width: 78vw;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: 0 26px 60px rgba(13, 16, 20, 0.32);
  overflow: hidden;
}

/* классы, которые ждёт components/bitrix/menu/main_nav/template.php */
.pgh-catgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pgh-catitem {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  text-decoration: none;
  border-bottom: 1px solid #f0f2f4;
}

.pgh-catitem:hover {
  background: var(--surface-2);
}

.pgh-caticon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: var(--r-md);
  color: #fff;
  background: var(--swoosh);
  box-shadow: 0 6px 14px rgba(227, 30, 36, 0.3);
}

.pgh-catinfo {
  min-width: 0;
}

.pgh-catname {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.pgh-catdesc {
  display: block;
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 1px;
}

.pgh-navitem {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  text-decoration: none;
  padding: 8px 13px;
  border-radius: var(--r-md);
  transition: background 0.2s, color 0.2s;
  color: rgba(255, 255, 255, 0.82);
}

.pgh-navitem:hover,
.pgh-navitem.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.pgh-morewrap {
  position: relative;
  display: none;
}

.pgh-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 36px;
  border-radius: var(--r-md);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: background 0.2s;
}

.pgh-more:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.pgh-moremenu {
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 10px;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.pgh-morewrap:hover .pgh-moremenu,
.pgh-morewrap.open .pgh-moremenu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.pgh-moremenu-inner {
  min-width: 200px;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 54px rgba(13, 16, 20, 0.3);
  overflow: hidden;
  padding: 6px;
}

.pgh-more-item {
  display: none;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
}

.pgh-more-item:hover {
  background: var(--surface-2);
  color: var(--g2);
}

.pgh-spacerflex {
  flex: 1 1 auto;
}

.pgh-phone {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.pgh-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  text-align: right;
}

.pgh-phone-num {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

.pgh-phone-cb {
  color: #ff7a7e;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .pgh-phone {
    display: none !important;
  }
}
.pgh-searchtoggle,
.pgh-fav,
.pgh-login,
.pgh-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  flex: 0 0 auto;
  text-decoration: none;
  transition: background 0.15s;
}

.pgh-searchtoggle:hover,
.pgh-fav:hover,
.pgh-login:hover,
.pgh-burger:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* счётчик избранного в шапке */
.pgh-fav {
  position: relative;
}

.pgh-fav-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--g2);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px var(--pgh-bg, #11151a);
}

.pgh-login {
  gap: 8px;
  width: auto;
  padding: 0 16px;
  font-size: 13.5px;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .pgh-searchtoggle {
    display: none !important;
  }
}
@media (max-width: 820px) {
  .pgh-login {
    display: none !important;
  }
  .pgh-fav {
    display: none !important;
  }
}
.pgh-burger {
  display: none;
}

@media (max-width: 1000px) {
  .pgh-burger {
    display: flex !important;
  }
}
.pgh-cartbtn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  padding: 0 16px 0 14px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(233, 46, 52, 0.92), rgba(193, 24, 30, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 8px 22px rgba(227, 30, 36, 0.34);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  flex: 0 0 auto;
  transition: filter 0.15s;
}

.pgh-cartbtn:hover {
  filter: brightness(1.05);
}

@media (max-width: 680px) {
  .pgh-cartsum {
    display: none !important;
  }
}
/* ---- поисковая раскрывающаяся панель ------------------------ */
.pgh-searchbar {
  position: absolute;
  top: 8px;
  bottom: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: var(--r-lg);
  background: rgba(11, 14, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  z-index: 6;
  width: 0;
  opacity: 0;
  pointer-events: none;
  padding: 0;
  transition: width 0.42s cubic-bezier(0.6, 0.04, 0.2, 1), opacity 0.3s ease, padding 0.42s ease;
}

.pgh-searchbar.is-focus,
.pgh-searchbar:focus-within {
  width: calc(100% - 80px);
  opacity: 1;
  pointer-events: auto;
  padding: 0 8px 0 16px;
  overflow: visible; /* чтобы выпадашка подсказок (title-search-result) не резалась баром */
}

.pgh-searchbar .search-input,
.pgh-searchbar input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-base);
  font-size: 15px;
}

.pgh-searchbar .search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* поисковая форма search.title внутри overlay — прозрачная, на всю ширину */
.pgh-searchbar .header-search-inner {
  flex: 1;
  min-width: 0;
}

.pgh-searchbar .pgh-searchform {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
}

.pgh-searchbar .search-icon {
  color: rgba(255, 255, 255, 0.6);
  flex: none;
}

/* ✕ закрытия */
.pgh-search-close {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s;
}

.pgh-search-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* автоподсказки внутри overlay — светлая ДС-выпадашка под баром */
.pgh-searchbar .search-suggest {
  top: calc(100% + 10px);
}

/* ---- мобильный drawer (доп. к общим .drawer стилям) --------- */
.drawer.pgh-mobiledrawer {
  background: var(--ink);
  font-family: var(--font-base);
}

.pgh-drawer-topline {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pgh-drawer-logo {
  display: inline-flex;
  padding: 7px 9px;
  background: var(--g2);
  border-radius: var(--r-md);
}

.pgh-drawer-logo img {
  height: 22px;
  display: block;
  filter: brightness(0) invert(1);
}

.pgh-mobiledrawer .drawer-close {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.pgh-mobiledrawer .drawer-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.pgh-drawer-body {
  padding: 14px;
}

.pgh-drawer-search {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 16px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 12px;
}

.pgh-drawer-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-base);
  font-size: 14px;
}

.pgh-drawer-account {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.pgh-drawer-account .pgh-drawer-login {
  margin-bottom: 0;
}

.pgh-drawer-fav {
  position: relative;
}

.pgh-drawer-fav-count {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--g2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  margin-left: 2px;
}

.pgh-drawer-login {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 16px;
  margin-bottom: 12px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.pgh-drawer-login svg {
  flex: none;
  color: var(--g2);
}

.pgh-drawer-login:hover {
  border-color: var(--g2);
  background: rgba(255, 255, 255, 0.1);
}

.pgh-drawer-navitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-radius: var(--r-md);
  color: #dfe4e9;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pgh-drawer-navitem:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pgh-drawer-navitem span {
  color: #6c7884;
}

.pgh-drawer-utils {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pgh-drawer-utillink {
  padding: 10px 14px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  border-radius: var(--r-sm);
  text-decoration: none;
}

.pgh-drawer-utillink:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.pgh-drawer-contact {
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.05);
}

.pgh-drawer-phone {
  color: #fff;
  font-weight: 800;
  font-size: 17px;
}

.pgh-drawer-cb {
  color: #ff7a7e;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 2px;
  cursor: pointer;
}

.pgh-drawer-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-top: 8px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 56px 0 0;
  background: linear-gradient(135deg, var(--g-ink), var(--g-deep) 80%);
  color: #fff;
}

.footer-watermark {
  position: absolute;
  left: 36%;
  top: 10px;
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 240px;
  line-height: 0.8;
  color: rgba(141, 198, 63, 0.045);
  pointer-events: none;
  user-select: none;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo {
  background: #fff;
  border-radius: 12px;
  padding: 6px 8px;
  display: inline-flex;
}

.footer-logo img {
  height: 36px;
}

.footer-about {
  margin: 18px 0 0;
  max-width: 38ch;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(234, 243, 237, 0.7);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background 0.2s;
}

.footer-socials a:hover {
  background: var(--g1);
}

.footer-col .footer-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
}

.footer-col .footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  color: rgba(234, 243, 237, 0.72);
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-phone {
  font-weight: 800;
  font-size: 22px;
  color: #fff;
}

.footer-contacts {
  font-size: 14px;
  color: rgba(234, 243, 237, 0.72);
  margin-top: 10px;
  line-height: 1.7;
}

.footer-bottom {
  position: relative;
  margin: 36px auto 0;
  max-width: 1280px;
  padding: 22px 24px;
  border-top: 1px solid rgba(141, 198, 63, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(234, 243, 237, 0.5);
}

@media screen and (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media screen and (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.pgf-footer {
  font-family: var(--font-base);
  background: var(--ink);
  color: #fff;
  /* Sticky footer: body уже flex-колонка (min-height:100vh, см. _base.scss) —
     margin-top:auto прижимает подвал к низу окна, даже когда контента страницы мало. */
  flex-shrink: 0;
  margin-top: auto;
}

.pgf-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 54px 22px 32px;
}

.pgf-cols {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 40px;
}

.pgf-col-brand {
  min-width: 0;
}

.pgf-logo {
  display: inline-flex;
  padding: 10px 13px;
  background: var(--g2);
  border-radius: var(--r-md);
  margin-bottom: 18px;
}

.pgf-logo-img {
  height: 28px;
  display: block;
}

.pgf-about {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 290px;
  margin: 0 0 16px;
}

.pgf-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.pgf-contact-phone {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.pgf-contact-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.pgf-contact-meta a {
  color: inherit;
  text-decoration: none;
}

.pgf-contact-meta a:hover {
  color: #fff;
}

.pgf-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pgf-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.pgf-social svg {
  width: 20px;
  height: 20px;
  display: block;
}

.pgf-social:hover {
  border-color: var(--brand, var(--g2));
  color: var(--brand, #fff);
  background: rgba(255, 255, 255, 0.1);
}

.pgf-col-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #fff;
}

.pgf-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pgf-link {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s;
}

.pgf-link:hover {
  color: var(--g2);
}

/* классы, которые ждёт components/bitrix/menu/footer_links/template.php */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--g2);
}

.pgf-dev {
  margin-top: 22px;
}

.pgf-dev-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.pgf-dev-link {
  display: inline-flex;
  opacity: 0.92;
  transition: transform 0.15s, opacity 0.15s;
}

.pgf-dev-link:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.pgf-bottomline {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.pgf-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.pgf-legal {
  display: flex;
  gap: 20px;
}

.pgf-legal-link {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.pgf-legal-link:hover {
  color: #fff;
}

@media (max-width: 880px) {
  .pgf-cols {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }
}
@media (max-width: 520px) {
  .pgf-cols {
    grid-template-columns: 1fr;
  }
  .pgf-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(8, 19, 15, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  height: 100%;
  z-index: var(--z-drawer);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease);
}

.drawer-left {
  left: 0;
  width: 320px;
  max-width: 85vw;
  transform: translateX(-100%);
  box-shadow: 20px 0 60px rgba(8, 19, 15, 0.18);
}

.drawer-right {
  right: 0;
  width: 400px;
  max-width: 92vw;
  transform: translateX(100%);
  box-shadow: -20px 0 60px rgba(8, 19, 15, 0.18);
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}

.drawer-header h5 {
  margin: 0;
}

.drawer-close {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--well);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
}

.drawer-nav {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
}

.drawer-nav a {
  padding: 14px;
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: 15px;
}

.drawer-nav a:hover {
  background: var(--g-soft);
}

.drawer-nav .drawer-nav-main {
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 22px;
}

.drawer-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--border);
}

.cart-mini-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cart-mini-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--well);
  display: grid;
  place-items: center;
  flex: none;
}

.cart-mini-img img {
  max-width: 80%;
  max-height: 80%;
  mix-blend-mode: multiply;
}

.cart-mini-info {
  flex: 1;
  min-width: 0;
}

.cart-mini-name {
  font-weight: 600;
  font-size: 14px;
}

.cart-mini-meta {
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 2px;
}

.cart-mini-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.cart-mini-price-old {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-faint);
  text-decoration: line-through;
}

.cart-mini-price-now {
  font-weight: 700;
  font-size: 14px;
}

.cart-mini-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 8px;
}

.cart-mini-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--well);
  color: var(--ink-faint);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.cart-mini-empty-title {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
}

.cart-mini-empty-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 20px;
}

.cart-mini-continue {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.cart-mini-continue:hover {
  color: var(--g2);
}

.cart-mini-remove {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  color: var(--ink-faint);
  display: grid;
  place-items: center;
}

.cart-mini-remove:hover {
  color: var(--o2);
}

.cart-mini-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.cart-mini-total b {
  font-size: 22px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px;
  background: rgba(8, 19, 15, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--sh-xl);
  padding: 28px;
  transform: scale(0.94);
  transition: transform 0.35s var(--spring);
}

.modal.is-open .modal-dialog {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.modal-header-floating {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  z-index: 2;
}

.modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
}

.modal-close {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--well);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
}

.modal-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.modal-centered {
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 19, 15, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: grid;
  place-items: center;
}

.toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-160%);
  z-index: var(--z-toast);
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--sh-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  transition: transform 0.4s var(--spring);
}

.toast.is-show {
  transform: translateX(-50%) translateY(0);
}

.toast .toast-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--g1);
  display: grid;
  place-items: center;
  flex: none;
}

.toast .toast-title {
  font-weight: 700;
  font-size: 14px;
}

.toast .toast-text {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 1px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1005;
  max-width: 360px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  padding: 20px;
  transform: translateY(180%);
  transition: transform 0.4s var(--spring);
}

.cookie-banner.is-show {
  transform: translateY(0);
}

.cookie-banner .cookie-title {
  font-weight: 700;
  font-size: 15px;
}

.cookie-banner .cookie-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 8px 0 14px;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 760px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}
.pgh-preloader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: rgba(11, 14, 18, 0.42);
  -webkit-backdrop-filter: blur(2px) saturate(120%);
  backdrop-filter: blur(2px) saturate(120%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.pgh-preloader.is-on {
  opacity: 1;
  visibility: visible;
}

.pgh-preloader-svg {
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.35));
}

.pgh-pl-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 3;
}

.pgh-pl-skater {
  fill: none;
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-dasharray: 9 91;
  filter: drop-shadow(0 0 5px rgba(227, 30, 36, 0.55));
}

.pgh-preloader-cap {
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.82);
}

@media (prefers-reduced-motion: reduce) {
  .pgh-preloader-svg {
    animation: pghPlPulse 1.6s ease-in-out infinite;
  }
  @keyframes pghPlPulse {
    0%, 100% {
      opacity: 0.5;
    }
    50% {
      opacity: 1;
    }
  }
}
.search-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--sh-lg);
  overflow: hidden;
  z-index: 20;
  display: none;
}

.search-suggest.is-open {
  display: block;
}

.suggest-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
}

.suggest-item:hover {
  background: var(--g-soft);
}

.suggest-item .suggest-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--well);
  flex: none;
}

.suggest-item .suggest-name {
  font-size: 14px;
  font-weight: 600;
}

.suggest-item .suggest-art {
  font-size: 12px;
  color: var(--ink-faint);
}

.suggest-item .suggest-price {
  margin-left: auto;
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
}

.suggest-all {
  display: block;
  padding: 12px 16px;
  text-align: center;
  color: var(--g2);
  font-weight: 600;
  font-size: 14px;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: radial-gradient(900px 480px at 86% 10%, #F3EEDD, transparent 58%), linear-gradient(180deg, #FBF8F0, #F6F1E5);
}

.hero-viewport {
  overflow: hidden;
}

.hero-track {
  display: flex;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
}

.hero-slide-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 72px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin: 0;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 26px 0 0;
  max-width: 46ch;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-scene {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--g1), var(--g2), var(--g3), var(--g1));
  opacity: 0.16;
  filter: blur(8px);
}

.hero-disc {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 30px 70px rgba(20, 40, 25, 0.16), inset 0 0 0 1px var(--border);
}

.hero-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1.5px dashed rgba(14, 122, 56, 0.22);
}

.hero-product {
  position: relative;
  z-index: 3;
  width: 270px;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(7, 62, 44, 0.2);
  animation: hs-bob 6s ease-in-out infinite;
}

.hero-leaf {
  position: absolute;
  z-index: 4;
  width: 44px;
}

.hero-leaf-1 {
  top: 8%;
  left: 6%;
  --r: -20deg;
  transform: rotate(-20deg);
  animation: hs-float 7s ease-in-out infinite;
}

.hero-leaf-2 {
  bottom: 12%;
  right: 4%;
  width: 36px;
  --r: 150deg;
  transform: rotate(150deg);
  animation: hs-float-b 8s ease-in-out infinite 0.8s;
}

.hero-price-tag {
  position: absolute;
  bottom: 6%;
  left: 0;
  z-index: 5;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 14px 34px rgba(20, 40, 25, 0.18);
}

.hero-price-tag .hero-price-now {
  font-weight: 800;
  font-size: 19px;
  color: var(--o2);
}

.hero-price-tag .hero-price-old {
  font-size: 12px;
  color: var(--ink-faint);
  text-decoration: line-through;
}

.hero-seal {
  position: absolute;
  top: 4%;
  right: 6%;
  z-index: 5;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--seal);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 28px;
  transform: rotate(6deg);
  box-shadow: 0 10px 24px rgba(200, 72, 46, 0.34);
}

.hero-nav-btn {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  z-index: 8;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  color: var(--g2);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--sh-md);
}

.hero-nav-btn:hover {
  background: #fff;
}

.hero-nav-btn.hero-prev {
  left: 24px;
}

.hero-nav-btn.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  gap: 8px;
}

@keyframes hs-float {
  0%, 100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }
  50% {
    transform: translateY(-15px) rotate(var(--r, 0deg));
  }
}
@keyframes hs-float-b {
  0%, 100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }
  50% {
    transform: translateY(13px) rotate(var(--r, 0deg));
  }
}
@keyframes hs-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
@keyframes hs-glow {
  0%, 100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}
.hero-slide .brush-word-line path {
  animation: none;
  stroke-dashoffset: 340;
}

.hero-slide.is-active .brush-word-line path {
  animation: hs-draw 1.1s var(--ease) 0.35s forwards;
}

@media screen and (max-width: 1024px) {
  .hero-slide-inner {
    grid-template-columns: 1fr;
  }
  .hero-scene {
    display: none;
  }
}
@media screen and (max-width: 760px) {
  .hero-title {
    font-size: 40px;
  }
  .hero-slide-inner {
    padding: 36px 18px 56px;
  }
  .hero-nav-btn {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-product, .hero-leaf {
    animation: none;
  }
  .hero-slide .brush-word-line path {
    stroke-dashoffset: 0;
    animation: none;
  }
}
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--g2);
  text-transform: uppercase;
}

.home-stats {
  position: relative;
  z-index: 10;
  max-width: 1080px;
  margin: 16px auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--sh-lg);
  padding: 22px 30px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.home-stats .stat {
  text-align: center;
}

.home-stats .stat-num {
  font-weight: 800;
  font-size: 28px;
  color: var(--g2);
}

.home-stats .stat-label {
  font-size: 13px;
  color: var(--ink-faint);
}

.home-stats .stat-divider {
  width: 1px;
  background: var(--border-strong);
}

.categories-panel {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 44px 40px;
  background: radial-gradient(680px 340px at 90% -10%, rgba(247, 164, 30, 0.14), transparent 60%), radial-gradient(680px 360px at 4% 110%, rgba(47, 168, 79, 0.13), transparent 60%), linear-gradient(180deg, #FFFFFF 0%, #F6F2E7 100%);
  box-shadow: var(--sh-md);
}

.categories-panel .categories-panel-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--swoosh);
}

.categories-panel .categories-panel-watermark {
  position: absolute;
  right: 18px;
  bottom: -50px;
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 210px;
  line-height: 0.8;
  color: rgba(14, 122, 56, 0.05);
  pointer-events: none;
  user-select: none;
}

.benefits {
  margin-top: 72px;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(800px 420px at 84% 14%, rgba(227, 30, 36, 0.14), transparent 58%), linear-gradient(135deg, var(--g-ink) 0%, var(--g-deep) 54%, #08090b 100%);
}

.benefits-watermark {
  position: absolute;
  right: 40px;
  top: -50px;
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 300px;
  line-height: 0.8;
  color: rgba(141, 198, 63, 0.06);
  pointer-events: none;
  user-select: none;
}

.benefits-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--o1);
}

.benefits-eyebrow::before, .benefits-eyebrow::after {
  content: "";
  width: 34px;
  height: 1.5px;
  background: var(--swoosh);
}

.benefits-title {
  font-size: 34px;
  text-align: center;
  margin: 0 0 44px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}

.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.benefit .benefit-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--g1), var(--g3));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 0 0 8px rgba(141, 198, 63, 0.07), 0 14px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
}

.benefit:hover .benefit-icon {
  transform: translateY(-8px) scale(1.07);
  box-shadow: 0 0 0 8px rgba(141, 198, 63, 0.12), 0 22px 40px rgba(0, 0, 0, 0.4);
}

.benefit .benefit-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(234, 243, 237, 0.86);
  max-width: 20ch;
}

.home-about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: top;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 20px;
  box-shadow: var(--sh-sm);
}

.home-about .home-about-media {
  position: relative;
}

.home-about .home-about-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 22px;
  background: var(--well);
}

.home-about .home-about-sticker {
  position: absolute;
  right: -14px;
  bottom: -14px;
  background: var(--swoosh);
  color: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--sh-lg);
}

.home-about .home-about-sticker .home-about-sticker-num {
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
}

.home-about .home-about-sticker .home-about-sticker-label {
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 2px;
}

.home-about .home-about-body {
  padding: 24px 32px 24px 8px;
}

.home-about .home-about-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.home-about .home-about-stat-num {
  font-weight: 800;
  font-size: 30px;
  color: var(--g2);
}

.home-about .home-about-stat-label {
  font-size: 13px;
  color: var(--ink-faint);
}

.reviews-scroller {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 2px 16px;
  scroll-behavior: smooth;
}

.reviews-scroller::-webkit-scrollbar {
  display: none;
}

.reviews-scroller .review-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 300px;
}

.products-scroller {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 2px 16px;
  scroll-behavior: smooth;
}

.products-scroller::-webkit-scrollbar {
  display: none;
}

.products-scroller-item {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 260px;
  display: flex;
}

.products-scroller-item .product-card {
  width: 100%;
}

.reviews-rating-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  box-shadow: var(--sh-sm);
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--swoosh);
  border-radius: 26px;
  padding: 42px 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.promo-banner .promo-watermark {
  position: absolute;
  right: 30px;
  top: -30px;
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 200px;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.promo-banner .promo-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.newsletter {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--g-ink), var(--g-deep));
  border-radius: 26px;
  padding: 40px 44px;
  color: #fff;
}

.newsletter .newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 300px;
  max-width: 480px;
}

.newsletter .newsletter-input {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(141, 198, 63, 0.3);
  border-radius: var(--r-pill);
  padding: 4px 6px 4px 18px;
}

.newsletter .newsletter-input input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: #fff;
}

.newsletter .newsletter-input input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--sh-sm);
}

.trust-card .trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--g-soft);
  color: var(--g2);
  display: grid;
  place-items: center;
  flex: none;
}

.trust-card .trust-title {
  font-weight: 700;
  font-size: 14.5px;
}

.trust-card .trust-sub {
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-top: 2px;
}

.support-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--sh-xl);
  padding: 14px 18px;
  max-width: 300px;
}

.support-widget.is-hidden {
  display: none;
}

.support-widget .support-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--g-soft);
  color: var(--g2);
  display: grid;
  place-items: center;
  flex: none;
}

@media screen and (max-width: 760px) {
  .support-widget {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .home-about {
    grid-template-columns: 1fr;
  }
  .faq-wrap {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-scroller .review-card {
    flex-basis: calc((100% - 22px) / 2);
  }
  .products-scroller-item {
    flex-basis: calc((100% - 22px) / 2.4);
  }
}
@media screen and (max-width: 760px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-scroller .review-card {
    flex-basis: 86%;
  }
  .products-scroller-item {
    flex-basis: 78%;
    min-width: 0;
  }
  .categories-panel {
    padding: 28px 20px;
  }
  .promo-banner, .newsletter {
    padding: 28px 24px;
  }
}
@media screen and (max-width: 560px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .trust-row {
    grid-template-columns: 1fr;
  }
}
.home-hero-pgh {
  position: relative;
  min-height: 740px;
  height: 100vh;
  background: var(--g-ink);
}

.home-hero-pgh-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-hero-pgh-track {
  position: relative;
  height: 100%;
}

.home-hero-pgh-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.1s ease;
}

@media screen and (max-width: 760px) {
  .home-hero-pgh-slide {
    background-image: var(--hero-bg-m, var(--hero-bg));
  }
}
.home-hero-pgh-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.home-hero-pgh-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 9, 12, 0.94) 0%, rgba(7, 9, 12, 0.78) 28%, rgba(7, 9, 12, 0.35) 58%, rgba(7, 9, 12, 0.15) 100%);
}

.home-hero-pgh-slide--right::before {
  background: linear-gradient(90deg, rgba(7, 9, 12, 0.15) 0%, rgba(7, 9, 12, 0.35) 42%, rgba(7, 9, 12, 0.78) 72%, rgba(7, 9, 12, 0.94) 100%);
}

.home-hero-pgh-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.home-hero-pgh-slide--right .home-hero-pgh-inner {
  justify-content: flex-end;
}

.home-hero-pgh-content {
  max-width: 560px;
  color: #fff;
}

.home-hero-pgh-slide--right .home-hero-pgh-content {
  text-align: right;
}

.home-hero-pgh-slide--right .home-hero-pgh-eyebrow,
.home-hero-pgh-slide--right .home-hero-pgh-cta {
  justify-content: flex-end;
}

@keyframes pghHeroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.home-hero-pgh-anim {
  opacity: 0;
}

.home-hero-pgh-slide.is-active .home-hero-pgh-anim {
  animation: pghHeroReveal 0.6s both;
}

.home-hero-pgh-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.home-hero-pgh-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--g2);
  flex: none;
}

.home-hero-pgh-title {
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -2px;
  margin: 0;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.home-hero-pgh-title span {
  font-weight: 800;
}

.home-hero-pgh-text {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  margin: 26px 0 0;
  max-width: 460px;
}

.home-hero-pgh-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.home-hero-pgh-dots {
  position: absolute;
  bottom: 34px;
  left: 0;
  right: 0;
  z-index: 8;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.home-hero-pgh-nav {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.home-hero-pgh-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.home-hero-pgh-prev {
  left: 24px;
}

.home-hero-pgh-next {
  right: 24px;
}

@media screen and (max-width: 760px) {
  .home-hero-pgh-nav {
    display: none;
  }
  .home-hero-pgh-inner,
  .home-hero-pgh-slide--right .home-hero-pgh-inner {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 88px;
  }
  .home-hero-pgh-content,
  .home-hero-pgh-slide--right .home-hero-pgh-content {
    max-width: none;
    text-align: left;
  }
  .home-hero-pgh-slide::before,
  .home-hero-pgh-slide--right::before {
    background: linear-gradient(180deg, rgba(7, 9, 12, 0.95) 0%, rgba(7, 9, 12, 0.82) 30%, rgba(7, 9, 12, 0.34) 52%, rgba(7, 9, 12, 0.18) 68%, rgba(7, 9, 12, 0.58) 100%);
  }
  .home-hero-pgh-eyebrow {
    margin-bottom: 16px;
    font-size: 11.5px;
    letter-spacing: 2px;
  }
  .home-hero-pgh-title {
    font-size: clamp(34px, 11vw, 46px);
  }
  .home-hero-pgh-text {
    font-size: 15px;
    margin-top: 16px;
    max-width: none;
  }
  .home-hero-pgh-cta {
    margin-top: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-width: 320px;
  }
  .home-hero-pgh-cta .btn {
    justify-content: center;
  }
}
.home-dock-pgh {
  position: absolute;
  left: 50%;
  bottom: -52px;
  transform: translateX(-50%);
  z-index: 30;
  width: min(1180px, 100% - 32px);
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.home-dock-pgh-item {
  flex: 1 1 0;
  min-width: 150px;
  max-width: 220px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--sh-lg), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-dock-pgh-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.4);
}

.home-dock-pgh-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 13px;
  color: #fff;
  background: var(--swoosh);
  box-shadow: 0 9px 20px rgba(227, 30, 36, 0.4);
}

.home-dock-pgh-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  min-width: 0;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

@media screen and (max-width: 560px) {
  .home-dock-pgh {
    gap: 8px;
  }
  .home-dock-pgh-item {
    padding: 11px;
    gap: 9px;
    min-width: 140px;
    border-radius: 16px;
  }
  .home-dock-pgh-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .home-dock-pgh-icon svg {
    width: 18px;
    height: 18px;
  }
  .home-dock-pgh-label {
    font-size: 11.5px;
  }
}
.home-usp-pgh-lead {
  font-size: 14.5px;
  color: var(--ink-faint);
  max-width: 340px;
  margin: 0;
  line-height: 1.55;
}

.home-usp-pgh-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.home-usp-pgh-card {
  position: relative;
  padding: 26px 22px 28px;
}

.home-usp-pgh-rule {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 30px;
  background: var(--swoosh);
  border-radius: 3px;
  transition: width 0.4s var(--spring);
}

.home-usp-pgh-card:hover .home-usp-pgh-rule {
  width: 100%;
}

.home-usp-pgh-num {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 0.8;
  color: rgba(17, 21, 26, 0.07);
  transition: color 0.35s ease;
}

.home-usp-pgh-card:hover .home-usp-pgh-num {
  color: rgba(227, 30, 36, 0.16);
}

.home-usp-pgh-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  color: var(--g2);
  background: var(--g-soft);
  border: 1px solid rgba(227, 30, 36, 0.14);
  margin: 20px 0 14px;
}

.home-usp-pgh-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.34;
  color: var(--ink);
}

@media screen and (max-width: 1100px) {
  .home-usp-pgh-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 34px;
  }
}
@media screen and (max-width: 600px) {
  .home-usp-pgh-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home-cats-pgh {
  position: relative;
  margin-top: 46px;
  padding: 78px 0;
  background: var(--g-ink);
  overflow: hidden;
}

.home-cats-pgh-eyebrow {
  color: #ff5a5f !important;
}

.home-cats-pgh-title {
  color: #fff;
}

.home-bento-pgh {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(150px, 1fr);
  gap: 16px;
}

.home-bento-pgh > .home-cat-tile-pgh {
  grid-column: var(--gc, auto);
  grid-row: var(--gr, auto);
}

.home-cat-tile-pgh {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 20px;
  padding: 22px;
  text-decoration: none;
  cursor: pointer;
  min-height: 190px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.home-cat-tile-pgh:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 30, 36, 0.5);
  box-shadow: 0 22px 44px -16px rgba(227, 30, 36, 0.4);
}

.home-cat-tile-pgh--hero {
  min-height: 300px;
  padding: 0;
}

.home-cat-tile-pgh-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(227, 30, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

@media screen and (max-width: 760px) {
  .home-cat-tile-pgh-badge {
    display: none !important;
  }
}
.home-cat-tile-pgh-body {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  display: block;
}

.home-cat-tile-pgh-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: #fff;
  background: var(--swoosh);
  box-shadow: 0 12px 26px rgba(227, 30, 36, 0.45);
  margin-bottom: 16px;
}

.home-cat-tile-pgh-icon--sm {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 18px;
}

.home-cat-tile-pgh-name {
  display: block;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #fff;
  line-height: 1.02;
}

.home-cat-tile-pgh-name--sm {
  font-size: 17px;
  letter-spacing: -0.2px;
}

.home-cat-tile-pgh-desc {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 7px;
}

.home-cat-tile-pgh-desc--sm {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
}

.home-cat-tile-pgh-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.home-cat-tile-pgh-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 16px;
  color: #ff5a5f;
}

@media screen and (max-width: 1080px) {
  .home-bento-pgh {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-bento-pgh > .home-cat-tile-pgh {
    grid-column: auto;
    grid-row: auto;
  }
  .home-cat-tile-pgh--hero {
    grid-column: span 2;
    grid-row: span 2;
  }
}
@media screen and (max-width: 820px) {
  .home-bento-pgh {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-cat-tile-pgh--hero {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 230px;
  }
}
@media screen and (max-width: 480px) {
  .home-bento-pgh {
    grid-template-columns: 1fr;
  }
  .home-cat-tile-pgh--hero {
    grid-column: span 1;
  }
}
.home-about-pgh {
  position: relative;
  padding: 72px 0;
  background: #0d1014;
  color: #fff;
  overflow: hidden;
}

.home-about-pgh-eyebrow {
  color: #ff5a5f !important;
}

.home-about-pgh-title {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  margin: 0;
  max-width: 880px;
}

.home-about-pgh-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
  max-width: 820px;
}

.home-about-pgh-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}

.home-about-pgh-text-strong {
  color: rgba(255, 255, 255, 0.86) !important;
  font-weight: 600;
  margin-top: 6px !important;
}

.home-about-pgh-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
  max-width: 920px;
}

.home-about-pgh-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.home-about-pgh-check {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--swoosh);
  color: #fff;
  box-shadow: 0 8px 18px rgba(227, 30, 36, 0.36);
}

@media screen and (max-width: 600px) {
  .home-about-pgh-grid {
    grid-template-columns: 1fr;
  }
}
.home-tech-pgh {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-tech-pgh-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -1.5px;
  line-height: 1.02;
  margin: 16px 0 0;
}

.home-tech-pgh-title span {
  font-weight: 800;
}

.home-tech-pgh-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 22px 0 30px;
  max-width: 430px;
}

.home-tech-pgh-card {
  position: relative;
  padding: 34px;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

.home-tech-pgh-hrc {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.home-tech-pgh-hrc span {
  font-size: 84px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 0.85;
}

.home-tech-pgh-hrc em {
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  color: var(--g2);
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.home-tech-pgh-hrc-label {
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 6px;
}

.home-tech-pgh-specs {
  margin-top: 24px;
  border-top: 1px solid var(--well);
}

.home-tech-pgh-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--well);
  font-size: 13.5px;
}

.home-tech-pgh-spec-row span:first-child {
  color: var(--ink-faint);
}

.home-tech-pgh-spec-row span:last-child {
  font-weight: 700;
}

@media screen and (max-width: 900px) {
  .home-tech-pgh {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.home-trust-pgh-head {
  text-align: center;
  margin-bottom: 28px;
}

.home-trust-pgh-title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.6px;
  margin: 6px 0 0;
}

.home-trust-pgh-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.home-trust-pgh-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--sh-lg);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}

.home-trust-pgh-counterfeit {
  max-width: 640px;
  margin: 0 auto;
}

.home-cta-pgh {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 48px 52px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.home-cta-pgh-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.8px;
  margin: 0 0 8px;
}

.home-cta-pgh-text p {
  font-size: 15.5px;
  color: var(--ink-faint);
  margin: 0;
}

.home-cta-pgh-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.home-cta-pgh-phone {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.catalog-head .catalog-head-count {
  font-size: 14px;
  color: var(--ink-faint);
}

.catalog-head .catalog-head-count b {
  color: var(--ink);
}

.catalog-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.catalog-chips .catalog-chip-count {
  color: var(--ink-faint);
  font-weight: 500;
}

@media screen and (max-width: 900px) {
  .catalog-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    margin-inline: -20px;
    padding-inline: 20px;
  }
  .catalog-chips::-webkit-scrollbar {
    display: none;
  }
  .catalog-chips .chip {
    flex: none;
  }
}
.catalog-layout {
  display: grid;
  grid-template-columns: 264px 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

@media screen and (max-width: 900px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }
}
.catalog-sidebar {
  position: sticky;
  top: 160px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--sh-sm);
}

@media screen and (max-width: 900px) {
  .catalog-sidebar {
    position: static;
    top: auto;
  }
}
.catalog-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.catalog-sidebar-title {
  font-weight: 800;
  font-size: 18px;
  margin: 0;
}

.catalog-reset {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  color: var(--g2);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.catalog-reset:hover {
  background: var(--g-soft);
}

.filter-group {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 18px;
}

.filter-group:first-of-type {
  margin-top: 0;
}

.filter-group-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

.filter-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-checks .form-check {
  font-size: 14px;
  color: var(--ink-soft);
}

.price-slider {
  position: relative;
  height: 4px;
  background: var(--well);
  border-radius: var(--r-pill);
  margin-top: 16px;
}

.price-slider .price-slider-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  background: var(--swoosh);
  border-radius: var(--r-pill);
}

.price-slider .price-slider-knob {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--g1);
  transform: translate(-50%, -50%);
  box-shadow: var(--sh-sm);
}

.catalog-content {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--sh-sm);
  margin-bottom: 22px;
}

/* Кнопка «Фильтры» — открывает мобильный drawer. На десктопе скрыта
   (там фильтр всегда виден в сайдбаре). */
.catalog-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  appearance: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 9px 14px;
}

.catalog-filter-toggle:hover {
  border-color: var(--ink-faint);
}

@media screen and (max-width: 900px) {
  .catalog-filter-toggle {
    display: inline-flex;
  }
}
.catalog-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.catalog-sort .catalog-sort-label {
  font-size: 13.5px;
  color: var(--ink-faint);
  flex: none;
}

.catalog-sort .catalog-sort-select {
  width: auto;
  min-width: 200px;
  padding-block: 9px;
}

.catalog-view {
  display: flex;
  gap: 6px;
  flex: none;
}

.catalog-view .catalog-view-btn {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink-faint);
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.catalog-view .catalog-view-btn:hover {
  color: var(--g2);
  border-color: var(--g1);
}

.catalog-view .catalog-view-btn.active {
  background: var(--g-soft);
  color: var(--g2);
  border-color: transparent;
}

[data-products].is-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

[data-products].is-list .product-card {
  flex-direction: row;
  align-items: stretch;
}

[data-products].is-list .product-card-media {
  flex: 0 0 240px;
  aspect-ratio: auto;
}

[data-products].is-list .product-card-body {
  flex: 1;
}

[data-products].is-list .product-card.is-hidden {
  display: none;
}

@media screen and (max-width: 760px) {
  [data-products].is-list .product-card {
    flex-direction: column;
  }
  [data-products].is-list .product-card-media {
    flex-basis: auto;
    aspect-ratio: 4/3;
  }
}
.catalog-showmore {
  text-align: center;
  margin-top: 30px;
}

.catalog-cell {
  display: contents;
}

@media (prefers-reduced-motion: no-preference) {
  .catalog-grid .catalog-cell .product-card {
    animation: hs-card-in 0.5s var(--ease) backwards;
  }
  .catalog-grid .catalog-cell:nth-child(1) .product-card {
    animation-delay: 0ms;
  }
  .catalog-grid .catalog-cell:nth-child(2) .product-card {
    animation-delay: 55ms;
  }
  .catalog-grid .catalog-cell:nth-child(3) .product-card {
    animation-delay: 110ms;
  }
  .catalog-grid .catalog-cell:nth-child(4) .product-card {
    animation-delay: 165ms;
  }
  .catalog-grid .catalog-cell:nth-child(5) .product-card {
    animation-delay: 220ms;
  }
  .catalog-grid .catalog-cell:nth-child(6) .product-card {
    animation-delay: 275ms;
  }
  .catalog-grid .catalog-cell:nth-child(7) .product-card {
    animation-delay: 330ms;
  }
  .catalog-grid .catalog-cell:nth-child(8) .product-card {
    animation-delay: 385ms;
  }
  .catalog-grid .catalog-cell:nth-child(9) .product-card {
    animation-delay: 440ms;
  }
  .catalog-grid .catalog-cell:nth-child(10) .product-card {
    animation-delay: 495ms;
  }
  .catalog-grid .catalog-cell:nth-child(11) .product-card {
    animation-delay: 550ms;
  }
  .catalog-grid .catalog-cell:nth-child(12) .product-card {
    animation-delay: 605ms;
  }
}
.catalog-more-btn {
  grid-column: 1/-1;
  justify-self: center;
  margin-top: 6px;
}

.catalog-more-btn.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.catalog-pagination {
  justify-content: center;
  margin-top: 30px;
}

@keyframes hs-card-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.card-appear {
  animation: hs-card-in 0.5s var(--ease) both;
}

@media (prefers-reduced-motion: reduce) {
  .card-appear {
    animation: none;
  }
}
@media screen and (max-width: 900px) {
  [data-products] {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 560px) {
  [data-products] {
    grid-template-columns: 1fr;
  }
  .catalog-toolbar {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 12px;
  }
  .catalog-filter-toggle {
    flex: none;
  }
  .catalog-sort {
    flex: 1;
    min-width: 0;
  }
  .catalog-sort .catalog-sort-label {
    display: none;
  }
  .catalog-sort .catalog-sort-select {
    min-width: 0;
    width: 100%;
    flex: 1;
  }
  .catalog-view {
    display: none;
  }
}
/* ===== Корень каталога: полноширинные баннеры разделов + подразделы внутри ===== */
.catroot {
  padding-block: 8px 40px;
}

/* Блоки — по 2 в ряд (на узких экранах в одну колонку) */
.catroot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

@media screen and (max-width: 760px) {
  .catroot-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* Полноширинная тёмная карточка-баннер с картинкой */
.catroot-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 30px 34px;
  min-height: 236px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  /* ступенчатое появление; fill backwards — чтобы после анимации transform был свой (для ховера) */
  animation: catroot-in 0.6s var(--ease) backwards;
  animation-delay: var(--catd, 0ms);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

/* эффект наведения — как на плитках главной: подъём + красная рамка + красное свечение */
.catroot-card:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 30, 36, 0.5);
  box-shadow: 0 24px 48px -18px rgba(227, 30, 36, 0.45);
}

@keyframes catroot-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .catroot-card {
    animation: none;
  }
  .catroot-card:hover {
    transform: none;
  }
}
/* Контент прижат влево, читается поверх горизонтального градиента */
.catroot-card-inner {
  position: relative;
  width: 100%;
  max-width: 640px;
}

.catroot-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  color: #fff;
  background: var(--swoosh);
  box-shadow: 0 12px 26px rgba(227, 30, 36, 0.45);
}

.catroot-card-name {
  display: block;
  margin-top: 14px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.05;
  color: #fff;
  text-decoration: none;
}

.catroot-card-name:hover {
  color: #fff;
}

.catroot-card-desc {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.catroot-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.catroot-card-link span {
  transition: transform 0.2s ease;
}

.catroot-card-link:hover span {
  transform: translateX(4px);
}

/* Подразделы — чипами ВНУТРИ баннера, поверх картинки (полупрозрачные) */
.catroot-subs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.catroot-sub {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(2px);
  transition: background 0.15s, border-color 0.15s;
}

.catroot-sub:hover {
  background: var(--g2);
  border-color: var(--g2);
  color: #fff;
}

@media screen and (max-width: 620px) {
  .catroot-card {
    padding: 24px 22px;
  }
  .catroot-card-name {
    font-size: 24px;
  }
}
.pdp {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-areas: "gallery title" "gallery info";
  column-gap: 40px;
  row-gap: 12px;
  align-items: start;
  margin-top: 24px;
}

.pdp > .pdp-title {
  grid-area: title;
  min-width: 0;
  overflow-wrap: anywhere;
}

.pdp > .pdp-gallery {
  grid-area: gallery;
  min-width: 0;
}

.pdp > .pdp-info {
  grid-area: info;
  min-width: 0;
}

.pdp-info > *:first-child {
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  .pdp {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "title" "gallery" "info";
    row-gap: 20px;
  }
}
.pdp-gallery {
  display: flex;
  gap: 16px;
}

@media screen and (max-width: 1024px) {
  .pdp-gallery {
    flex-direction: column-reverse;
  }
}
.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: none;
}

@media screen and (max-width: 1024px) {
  .pdp-thumbs-group:not([style*="display: none"]) {
    display: flex !important;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .pdp-thumbs-group .pdp-thumb {
    flex: none;
  }
}
.pdp-thumb {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  width: 78px;
  height: 78px;
  border-radius: 14px;
  background: var(--well);
  border: 2px solid var(--border);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 8px;
  transition: border-color 0.2s;
}

.pdp-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.pdp-thumb:hover {
  border-color: var(--border-strong);
}

.pdp-thumb.active {
  border-color: var(--g1);
}

@media screen and (max-width: 560px) {
  .pdp-thumb {
    width: 64px;
    height: 64px;
  }
}
.pdp-stage {
  flex: 1;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  padding: 36px;
  overflow: hidden;
}

@media screen and (max-width: 560px) {
  .pdp-stage {
    padding: 18px;
  }
}
.pdp-main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  cursor: zoom-in;
}

.pdp-badges {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.pdp-fav {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  z-index: 6;
}

.pdp-stage .product-item-detail-slider-image img,
.pdp-stage .pdp-main-img {
  cursor: zoom-in;
}

.pdp-zoom {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  box-shadow: var(--sh-sm);
  transition: color 0.2s, background 0.2s;
}

.pdp-zoom:hover {
  color: var(--g2);
  background: var(--g-soft);
}

.pdp-title {
  font-weight: 800;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

@media screen and (max-width: 900px) {
  .pdp-title {
    font-size: 28px;
  }
}
.pdp-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.pdp-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pdp-rating b {
  font-size: 14px;
}

.pdp-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.pdp-price-now {
  font-weight: 800;
  font-size: 40px;
  color: var(--ink);
}

.pdp-price-old {
  font-size: 20px;
  color: var(--ink-faint);
  text-decoration: line-through;
}

.pdp-block {
  margin-top: 24px;
}

.pdp-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.pdp-block-label {
  font-weight: 700;
  font-size: 14px;
}

.pdp-color-name {
  color: var(--ink-soft);
  font-weight: 500;
}

.pdp-size-link {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  color: var(--g2);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.size-table {
  margin-top: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  font-size: 13.5px;
}

.size-table[hidden] {
  display: none;
}

.size-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.size-table-row span {
  padding: 10px 16px;
}

.size-table-row span:last-child {
  color: var(--ink-soft);
}

.size-table-row + .size-table-row {
  border-top: 1px solid var(--border);
}

.size-table-head {
  background: var(--g-soft);
  font-weight: 700;
  color: var(--g2);
}

.size-table-head span:last-child {
  color: var(--g2);
}

.pdp-buy {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  align-items: stretch;
  flex-wrap: wrap;
}

.pdp-cart-btn {
  flex: 1;
  min-width: 200px;
}

.pdp-quick-btn {
  margin-top: 12px;
}

.pdp-trust {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media screen and (max-width: 560px) {
  .pdp-trust {
    grid-template-columns: 1fr;
  }
}
.pdp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 10px;
}

.pdp-trust-item svg {
  flex: none;
}

.pdp-trust-item span {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}

@media screen and (max-width: 560px) {
  .pdp-trust-item {
    flex-direction: row;
    text-align: left;
  }
}
.pdp-counterfeit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  padding: 16px 18px;
  background: var(--swoosh);
  border-radius: var(--r-md);
  color: #fff;
}

.pdp-counterfeit-icon {
  flex: none;
  margin-top: 1px;
}

.pdp-counterfeit-title {
  font-size: 13.5px;
  font-weight: 800;
}

.pdp-counterfeit-desc {
  font-size: 12.5px;
  opacity: 0.92;
  line-height: 1.45;
  margin-top: 3px;
}

.pdp-tabs {
  margin-top: 48px;
  padding: 0 30px 28px;
}

.pdp-tabs .tabs-nav {
  margin: 0 -30px;
  padding: 0 18px;
}

@media screen and (max-width: 760px) {
  .pdp-tabs {
    padding: 0 18px 22px;
  }
  .pdp-tabs .tabs-nav {
    margin: 0 -18px;
    padding: 0 8px;
  }
  .pdp-tabs .tab-btn {
    flex: 1;
    padding: 11px 4px;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
  }
}
.pdp-tabs .tab-pane table {
  width: 100%;
  max-width: 100%;
  float: none;
  border-collapse: collapse;
}
.pdp-tabs .tab-pane td,
.pdp-tabs .tab-pane th {
  padding: 0;
  vertical-align: top;
  text-align: left;
}
.pdp-tabs .tab-pane img {
  max-width: 100%;
  height: auto;
}
.pdp-tabs .tab-pane p {
  margin: 0 0 12px;
}
.pdp-tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

.pdp-specs {
  margin: 0;
}

.pdp-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.pdp-spec-row dt {
  color: var(--ink-faint);
}

.pdp-spec-row dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

.pdp-indications {
  margin: 0;
  padding-left: 20px;
  line-height: 1.8;
}

.pdp-indications li {
  padding-left: 4px;
}

@media screen and (max-width: 900px) {
  .section-sm .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 560px) {
  .section-sm .grid-4 {
    grid-template-columns: 1fr;
  }
}
.cart-title {
  margin: 0 0 26px;
}

@media screen and (max-width: 760px) {
  .cart-title {
    margin-bottom: 18px;
  }
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

@media screen and (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-row {
  display: grid;
  grid-template-columns: 96px 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px;
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.2s var(--ease), border-color 0.2s;
}

.cart-row:hover {
  box-shadow: var(--sh-md);
}

.cart-row .cart-row-media {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  background: var(--well);
  display: grid;
  place-items: center;
  padding: 10px;
}

.cart-row .cart-row-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.cart-row .cart-row-info {
  min-width: 0;
}

.cart-row .cart-row-name {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
}

.cart-row .cart-row-name:hover {
  color: var(--g2);
}

.cart-row .cart-row-opts {
  margin-top: 5px;
  font-size: 13px;
  color: var(--ink-faint);
}

.cart-row .cart-row-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
}

.cart-row .cart-row-price-now {
  font-weight: 800;
  font-size: 17px;
}

.cart-row .cart-row-price-old {
  font-size: 13px;
  color: var(--ink-faint);
  text-decoration: line-through;
}

.cart-row .cart-row-qty {
  display: flex;
  align-items: center;
}

.cart-row .cart-row-sum {
  min-width: 96px;
  text-align: right;
  font-weight: 800;
  font-size: 18px;
  white-space: nowrap;
}

.cart-row .cart-row-remove {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  color: var(--ink-faint);
  padding: 6px;
  display: grid;
  place-items: center;
  transition: color 0.2s;
}

.cart-row .cart-row-remove:hover {
  color: var(--o2);
}

@media screen and (max-width: 900px) {
  .cart-row {
    grid-template-columns: 88px 1fr auto;
    grid-template-areas: "media info remove" "media qty  sum";
    row-gap: 14px;
    column-gap: 16px;
  }
  .cart-row .cart-row-media {
    grid-area: media;
    align-self: start;
  }
  .cart-row .cart-row-info {
    grid-area: info;
  }
  .cart-row .cart-row-qty {
    grid-area: qty;
  }
  .cart-row .cart-row-sum {
    grid-area: sum;
    align-self: center;
  }
  .cart-row .cart-row-remove {
    grid-area: remove;
    align-self: start;
  }
}
@media screen and (max-width: 560px) {
  .cart-row {
    grid-template-columns: 72px 1fr;
    grid-template-areas: "media info";
    row-gap: 12px;
  }
  .cart-row .cart-row-media {
    width: 72px;
    height: 72px;
  }
  .cart-row .cart-row-remove {
    grid-area: info;
    align-self: start;
    justify-self: end;
  }
  /* количество и сумма — отдельной строкой на всю ширину: счётчик слева, сумма справа
     (в узкую 72px-колонку степпер не влезал и вылезал за карточку) */
  .cart-row .cart-row-qty {
    grid-column: 1/-1;
    grid-row: 2;
    justify-self: start;
    align-self: center;
  }
  .cart-row .cart-row-sum {
    grid-column: 1/-1;
    grid-row: 2;
    justify-self: end;
    align-self: center;
    text-align: right;
  }
}
.cart-continue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--g2);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.cart-continue:hover {
  color: var(--g1);
}

.cart-continue svg {
  transition: transform 0.2s var(--ease);
}

.cart-continue:hover svg {
  transform: translateX(-3px);
}

.cart-summary {
  position: sticky;
  top: 160px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px;
  box-shadow: var(--sh-md);
}

@media screen and (max-width: 900px) {
  .cart-summary {
    position: static;
    top: auto;
  }
}
.cart-summary-title {
  margin: 0 0 18px;
  font-weight: 800;
  font-size: 20px;
}

.cart-summary-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.cart-summary-line.cart-summary-line-discount {
  color: var(--o2);
}

.cart-summary-line.cart-summary-line-coupon {
  color: var(--g2);
}

.cart-summary-line.cart-summary-line-free {
  color: var(--g2);
}

.cart-coupon {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.cart-coupon .cart-coupon-input {
  flex: 1;
}

.cart-coupon .cart-coupon-btn {
  flex: none;
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-weight: 700;
  font-size: 16px;
}

.cart-summary-total .cart-summary-total-sum {
  font-weight: 800;
  font-size: 28px;
}

.cart-checkout-btn {
  margin-top: 16px;
}

.cart-summary-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-faint);
}

.cart-empty {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 64px 24px;
  text-align: center;
  box-shadow: var(--sh-sm);
}

.cart-empty .cart-empty-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--g-soft);
  color: var(--g2);
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.cart-empty .cart-empty-title {
  margin: 22px 0 0;
  font-weight: 800;
  font-size: 26px;
}

.cart-empty .cart-empty-text {
  margin: 10px 0 22px;
  color: var(--ink-soft);
}

@media screen and (max-width: 760px) {
  .cart-empty {
    padding: 44px 18px;
  }
}
.checkout-title {
  margin: 0 0 8px;
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.checkout-step {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.checkout-step::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--border-strong);
  margin-left: 10px;
  order: 2;
}

.checkout-step:last-child::after {
  content: none;
}

.checkout-step .checkout-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--well);
  color: var(--ink-faint);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  flex: none;
}

.checkout-step .checkout-step-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-faint);
}

.checkout-step.active .checkout-step-num {
  background: var(--swoosh);
  color: #fff;
}

.checkout-step.active .checkout-step-label {
  color: var(--ink);
}

.checkout-step.active::after {
  background: var(--g1);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

@media screen and (max-width: 1024px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--sh-sm);
}

@media screen and (max-width: 760px) {
  .checkout-block {
    padding: 20px;
  }
}
.checkout-block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-weight: 800;
  font-size: 20px;
}

.checkout-block-title .checkout-block-num {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--g-soft);
  color: var(--g2);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  flex: none;
}

.checkout-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.checkout-grid-2 .form-group {
  margin-bottom: 0;
}

@media screen and (max-width: 760px) {
  .checkout-grid-2 {
    grid-template-columns: 1fr;
  }
}
.delivery-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.delivery-card {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color 0.2s, background 0.2s;
}

.delivery-card .delivery-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  display: grid;
  place-items: center;
  flex: none;
  transition: border-color 0.2s;
}

.delivery-card .delivery-radio::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--g2);
  transform: scale(0);
  transition: transform 0.2s var(--spring);
}

.delivery-card .delivery-card-info {
  flex: 1;
  min-width: 0;
}

.delivery-card .delivery-card-name {
  font-weight: 700;
  font-size: 15px;
}

.delivery-card .delivery-card-note {
  margin-top: 2px;
  font-size: 13px;
  color: var(--ink-faint);
}

.delivery-card .delivery-card-price {
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.delivery-card .delivery-card-price.delivery-card-price-free {
  color: var(--g2);
}

.delivery-card.active {
  border-color: var(--g1);
  background: var(--g-soft);
}

.delivery-card.active .delivery-radio {
  border-color: var(--g2);
}

.delivery-card.active .delivery-radio::after {
  transform: scale(1);
}

.payment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media screen and (max-width: 760px) {
  .payment-list {
    grid-template-columns: 1fr;
  }
}
.payment-card {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  border-radius: 14px;
  padding: 15px 16px;
  transition: border-color 0.2s, background 0.2s;
}

.payment-card .payment-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  display: grid;
  place-items: center;
  flex: none;
  transition: border-color 0.2s;
}

.payment-card .payment-radio::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--g2);
  transform: scale(0);
  transition: transform 0.2s var(--spring);
}

.payment-card .payment-icon {
  color: var(--g2);
  flex: none;
  display: flex;
}

.payment-card .payment-card-name {
  font-weight: 600;
  font-size: 14px;
}

.payment-card.active {
  border-color: var(--g1);
  background: var(--g-soft);
}

.payment-card.active .payment-radio {
  border-color: var(--g2);
}

.payment-card.active .payment-radio::after {
  transform: scale(1);
}

.checkout-summary {
  position: sticky;
  top: 120px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px;
  box-shadow: var(--sh-md);
}

@media screen and (max-width: 1024px) {
  .checkout-summary {
    position: static;
    top: auto;
  }
}
#bx-soa-total-mobile {
  display: none;
}

@media screen and (max-width: 1024px) {
  #bx-soa-total {
    display: none;
  }
  #bx-soa-total-mobile {
    display: block;
    margin-top: 18px;
  }
}
.checkout-summary-title {
  margin: 0 0 16px;
  font-weight: 800;
  font-size: 20px;
}

.checkout-order-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 230px;
  overflow: auto;
  padding-right: 4px;
}

@media screen and (max-width: 1024px) {
  .checkout-order-items {
    max-height: none;
  }
}
.checkout-order-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-order-item .checkout-order-img {
  width: 52px;
  height: 52px;
  border-radius: 11px;
  background: var(--well);
  display: grid;
  place-items: center;
  flex: none;
}

.checkout-order-item .checkout-order-img img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.checkout-order-item .checkout-order-info {
  flex: 1;
  min-width: 0;
}

.checkout-order-item .checkout-order-name {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
}

.checkout-order-item .checkout-order-qty {
  margin-top: 2px;
  font-size: 12px;
  color: var(--ink-faint);
}

.checkout-order-item .checkout-order-sum {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.checkout-summary-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.checkout-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.checkout-summary-line.checkout-summary-line-discount {
  color: var(--o2);
}

.checkout-summary-delivery {
  color: var(--g2);
}

.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-weight: 700;
  font-size: 16px;
}

.checkout-summary-total .checkout-summary-total-sum {
  font-weight: 800;
  font-size: 28px;
}

.checkout-consent {
  align-items: flex-start;
  margin-top: 18px;
}

.checkout-consent .checkout-consent-text {
  font-size: 12.5px;
  color: var(--ink-soft);
}

.checkout-place-btn {
  margin-top: 16px;
}

.checkout-summary-note {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-faint);
}

#bx-soa-total {
  position: sticky;
  top: 90px;
  background: none;
  border: 0;
  padding: 0;
  box-shadow: none;
}

@media screen and (max-width: 1024px) {
  #bx-soa-total {
    position: static;
  }
}
.bx-soa-cart-total-ghost {
  display: none !important;
}

.bx-soa-cart-total {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  padding: 22px !important;
  box-shadow: 0 12px 34px rgba(17, 21, 26, 0.07);
}

.bx-soa-cart-total-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
}

.bx-soa-cart-total-line .bx-soa-cart-t {
  color: var(--ink-soft);
}

.bx-soa-cart-total-line .bx-soa-cart-d {
  font-weight: 700;
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
}

.bx-soa-cart-total-line .bx-price-old {
  display: inline-block;
  color: var(--ink-faint);
  font-weight: 500;
  font-size: 12px;
  text-decoration: line-through;
}

.bx-soa-cart-total-line.bx-soa-cart-total-line-total {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--well);
}

.bx-soa-cart-total-line-total .bx-soa-cart-t {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.bx-soa-cart-total-line-total .bx-soa-cart-d {
  font-size: 26px !important;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--g2);
}

.bx-soa-cart-total-button-container {
  margin-top: 16px;
}

.bx-soa-cart-total-button-container .btn-primary,
.checkout-place-btn.btn-primary {
  width: 100%;
  height: 54px;
  border-radius: 14px;
  font-size: 15.5px;
  font-weight: 700;
}

.bx-soa-pp-company,
.bx-soa-pp-company-selected {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 13px;
  background: var(--surface);
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}

.bx-soa-pp-company:hover {
  border-color: var(--ink-faint);
}

.bx-soa-pp-company.bx-selected,
.bx-soa-pp-company-selected {
  border-color: var(--g2);
  background: rgba(227, 30, 36, 0.04);
}

.bx-soa-pp-company img,
.bx-soa-pp-company-selected img {
  height: 22px !important;
  width: auto;
  flex: none;
}

.bx-soa-pp-company strong,
.bx-soa-pp-company-selected strong,
.bx-soa-pp-company .bx-soa-pp-company-smalltitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.bx-soa-pp-price,
.bx-soa-pp-company .bx-soa-pp-price {
  margin-left: auto;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.bx-soa-section-content input[type=text],
.bx-soa-section-content input[type=email],
.bx-soa-section-content input[type=tel],
.bx-soa-section-content input[type=password],
.bx-soa-section-content select,
.bx-soa-section-content textarea,
.bx-soa-customer input[type=text],
.bx-soa-location-input {
  width: 100%;
  min-height: 46px;
  padding: 0 15px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--surface);
  outline: none;
  transition: border-color 0.15s var(--ease);
}

.bx-soa-section-content textarea {
  min-height: 84px;
  padding: 12px 15px;
  resize: vertical;
}

.bx-soa-section-content input:focus,
.bx-soa-section-content select:focus,
.bx-soa-section-content textarea:focus {
  border-color: var(--g2);
}

#bx-soa-region .bx-sls .bx-ui-sls-input-block.form-control {
  height: 46px;
  min-height: 46px;
  padding: 0 40px !important;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: none;
  background: var(--surface);
  transition: border-color 0.15s var(--ease);
}

#bx-soa-region .bx-sls .bx-ui-sls-input-block.form-control:focus-within {
  border-color: var(--g2);
}

#bx-soa-region .bx-sls .bx-ui-sls-container {
  height: 44px;
}

#bx-soa-region .bx-sls .bx-ui-sls-fake,
#bx-soa-region .bx-sls .bx-ui-sls-route,
#bx-soa-region .bx-sls .dropdown-field {
  height: 44px !important;
  line-height: 44px !important;
  top: 0 !important;
  font-family: inherit !important;
  font-size: 14px !important;
  color: var(--ink) !important;
  background: transparent !important;
  box-shadow: none !important;
}

#bx-soa-region .bx-sls .bx-ui-sls-route {
  color: var(--ink-faint) !important;
}

#bx-soa-region .bx-sls .dropdown-icon {
  top: 50% !important;
  margin-top: 0 !important;
  transform: translateY(-50%);
  left: 13px !important;
}

#bx-soa-region .bx-sls .bx-ui-sls-clear {
  top: 50% !important;
  margin-top: -8px !important;
  right: 13px !important;
}

#bx-soa-region .bx-sls .dropdown-fade2white {
  display: none !important;
}

#bx-soa-region .bx-sls .bx-ui-sls-pane {
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--sh-lg);
  margin-top: 6px;
  background: var(--surface);
}

.page-title {
  margin-top: 14px;
  font-size: 54px;
}

@media screen and (max-width: 900px) {
  .page-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 760px) {
  .page-title {
    font-size: 34px;
  }
}
.page-intro {
  margin: 16px 0;
  max-width: 64ch;
  font-size: 18px;
  color: var(--ink-soft);
}

.block-title {
  margin-top: 48px;
  margin-bottom: 20px;
}

.map-placeholder {
  margin-top: 16px;
  height: 240px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--g-soft), #E8F3DF);
  display: grid;
  place-items: center;
  color: var(--g2);
  box-shadow: var(--sh-sm);
}

.map-placeholder.map-placeholder-sm {
  height: 120px;
  border-radius: var(--r-md);
  margin-top: 12px;
}

.map-placeholder .map-placeholder-inner {
  text-align: center;
  width: 100%;
  height: 100%;
}
.map-placeholder .map-placeholder-inner #footer_map {
  width: 100%;
  height: 100%;
}

.map-placeholder .map-placeholder-label {
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 36px;
}

.about-hero .about-hero-media {
  position: relative;
}

.about-hero .about-hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
  background: var(--well);
  box-shadow: var(--sh-md);
}

.about-hero .about-hero-sticker {
  position: absolute;
  right: -12px;
  bottom: -12px;
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--sh-lg);
}

.about-hero .about-hero-sticker-num {
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
}

.about-hero .about-hero-sticker-label {
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 2px;
}

.about-hero .about-hero-body h2 {
  font-size: 28px;
  margin: 0 0 14px;
}

.about-hero .about-hero-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.about-hero .about-hero-body p:last-child {
  margin-bottom: 0;
}

.kpi-grid {
  margin-top: 40px;
}

.kpi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.kpi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.kpi-card .kpi-card-num {
  font-weight: 800;
  font-size: 32px;
  color: var(--g2);
  line-height: 1.1;
}

.kpi-card .kpi-card-label {
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 4px;
}

.principle-card {
  border-radius: var(--r-xl);
}

.principle-card .card-body {
  padding: 26px;
}

.principle-card .principle-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: var(--g-soft);
  color: var(--g2);
  display: grid;
  place-items: center;
}

.principle-card .principle-title {
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0 6px;
}

.principle-card .principle-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--g-deep), var(--g-ink));
  border-radius: var(--r-xl);
  padding: 40px 44px;
  color: #fff;
}

.cta-banner.cta-banner-sm {
  padding: 36px 40px;
}

.cta-banner .cta-banner-watermark {
  position: absolute;
  right: 30px;
  top: -30px;
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 180px;
  line-height: 0.8;
  color: rgba(141, 198, 63, 0.08);
  pointer-events: none;
  user-select: none;
}

.cta-banner .cta-banner-body {
  position: relative;
}

.cta-banner .cta-banner-title {
  font-size: 28px;
  margin: 0;
}

.cta-banner .cta-banner-text {
  margin: 8px 0 0;
  opacity: 0.82;
  font-size: 15px;
}

.cta-banner .btn {
  position: relative;
}

.page-doc {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  margin-top: 36px;
  align-items: start;
}

.delivery-method {
  border-radius: var(--r-lg);
}

.delivery-method .card-body {
  padding: 22px;
}

.delivery-method .delivery-method-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--g-soft);
  color: var(--g2);
  display: grid;
  place-items: center;
}

.delivery-method .delivery-method-title {
  font-weight: 700;
  font-size: 16px;
  margin-top: 14px;
}

.delivery-method .delivery-method-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 6px;
  line-height: 1.5;
}

.delivery-method .delivery-method-price {
  margin-top: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--g2);
}

.delivery-method .delivery-method-price.delivery-method-price-muted {
  color: var(--ink);
}

.tariff-table {
  border-radius: var(--r-lg);
  overflow: hidden;
  font-size: 14.5px;
}

.tariff-table .tariff-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
}

.tariff-table .tariff-row span {
  padding: 14px 18px;
}

.tariff-table .tariff-row + .tariff-row {
  border-top: 1px solid var(--border);
}

.tariff-table .tariff-head {
  background: var(--g-soft);
  font-weight: 700;
  color: var(--g2);
  border-top: none;
}

.tariff-table .tariff-term {
  color: var(--ink-soft);
}

.tariff-table .tariff-free {
  font-weight: 700;
  color: var(--g2);
}

.tariff-table .tariff-cost {
  font-weight: 600;
}

.pay-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pay-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--sh-sm);
}

.pay-tag svg {
  flex: none;
  color: var(--g2);
}

.page-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aside-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--g-deep), var(--g-ink));
  color: #fff;
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--sh-md);
}

.aside-cta .aside-cta-watermark {
  position: absolute;
  right: -10px;
  top: -20px;
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 130px;
  line-height: 0.8;
  color: rgba(141, 198, 63, 0.08);
  pointer-events: none;
  user-select: none;
}

.aside-cta .aside-cta-body {
  position: relative;
}

.aside-cta .aside-cta-title {
  font-weight: 800;
  font-size: 19px;
}

.aside-cta .aside-cta-text {
  font-size: 13.5px;
  color: rgba(234, 243, 237, 0.78);
  margin: 8px 0 0;
  line-height: 1.5;
}

.aside-cta .aside-cta-phone {
  display: block;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  margin-top: 16px;
}

.aside-cta .aside-cta-hours {
  font-size: 12.5px;
  color: rgba(234, 243, 237, 0.6);
}

.aside-pickup {
  border-radius: var(--r-xl);
}

.aside-pickup .card-body {
  padding: 22px;
}

.aside-pickup .aside-pickup-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
}

.aside-pickup .aside-pickup-head svg {
  color: var(--g2);
  flex: none;
}

.aside-pickup .aside-pickup-addr {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 10px 0 0;
  line-height: 1.6;
}

.steps-grid {
  margin-top: 36px;
}

.step-card {
  border-radius: var(--r-xl);
}

.step-card .card-body {
  padding: 26px;
}

.step-card .step-num {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
}

.step-card .step-title {
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0 6px;
}

.step-card .step-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.info-cols {
  margin-top: 24px;
}

.info-col {
  border-radius: var(--r-xl);
}

.info-col .card-body {
  padding: 26px;
}

.info-col .info-col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px;
}

.info-col .info-col-title svg {
  color: var(--g2);
  flex: none;
}

.info-col .info-col-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

.info-cols + .cta-banner {
  margin-top: 24px;
}

.contacts-layout {
  gap: 28px;
  align-items: start;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-card {
  border-radius: var(--r-lg);
}

.contact-card.contact-card-wide {
  grid-column: 1/-1;
}

.contact-card .card-body {
  padding: 22px;
}

.contact-card .contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--g-soft);
  color: var(--g2);
  display: grid;
  place-items: center;
}

.contact-card .contact-label {
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-top: 12px;
}

.contact-card .contact-value {
  display: block;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  margin-top: 3px;
  color: var(--ink);
}

.contact-card .contact-value.contact-value-md {
  font-weight: 700;
  font-size: 16px;
}

.contact-card .contact-value-sub {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
  margin-top: 2px;
}

.contacts-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--g-soft);
  color: var(--g2);
  display: grid;
  place-items: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--spring);
}

.social-btn:hover {
  background: var(--g1);
  color: #fff;
  transform: translateY(-2px);
}

.contact-form-card {
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}

.contact-form-card .card-body {
  padding: 30px;
}

.contact-form-card .contact-form-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 6px;
}

.contact-form-card .contact-form-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

.contact-form-card .contact-form-legal {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--ink-faint);
  line-height: 1.6;
}

@media screen and (max-width: 900px) {
  .page-doc {
    grid-template-columns: 1fr;
  }
  .page-aside {
    position: static;
  }
  .about-hero {
    grid-template-columns: 1fr;
  }
  .contacts-layout {
    grid-template-columns: 1fr;
  }
  .cta-banner, .cta-banner.cta-banner-sm {
    padding: 32px 28px;
  }
}
@media screen and (max-width: 760px) {
  .kpi-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 560px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  .contact-card.contact-card-wide {
    grid-column: auto;
  }
  .tariff-table {
    font-size: 13px;
  }
  .tariff-table .tariff-row span {
    padding: 12px 12px;
  }
  .cta-banner {
    padding: 28px 22px;
  }
  .contact-form-card .card-body {
    padding: 24px;
  }
}
.delivery-methods-row-pgh {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

@media screen and (max-width: 880px) {
  .delivery-methods-row-pgh {
    grid-template-columns: 1fr;
  }
}
.tk-grid-pgh {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.tk-badge-pgh {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-weight: 800;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.3px;
  background: var(--surface);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.tk-badge-pgh:hover {
  border-color: var(--g2);
  color: var(--g2);
}

.co-hero-pgh {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: linear-gradient(120deg, var(--ink), #1d2731);
  color: #fff;
  margin-bottom: 30px;
}

.co-hero-pgh::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -30px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.32), transparent 62%);
}

.co-hero-pgh-body {
  position: relative;
  max-width: 620px;
  padding: 48px 44px;
}

.co-hero-pgh-body h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.05;
  margin: 16px 0 0;
  color: #fff;
}

.co-hero-pgh-body p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin: 16px 0 0;
}

.co-audience-row-pgh {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.co-doc-pgh {
  grid-template-columns: 1.1fr 1fr;
}

.benefit-row-pgh {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px;
}

.benefit-check-pgh {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: var(--success-bg);
  color: var(--success);
}

.benefit-title-pgh {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.benefit-text-pgh {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: 3px;
}

.dealers-grid-pgh {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dealer-card-pgh {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dealer-card-pgh-media {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1d2731, var(--ink));
}

.dealer-card-pgh-code {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  color: rgba(255, 255, 255, 0.16);
}

.dealer-card-pgh-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--g2);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.dealer-card-pgh-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dealer-card-pgh-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--ink);
}

.dealer-card-pgh-flag {
  font-size: 20px;
}

.dealer-card-pgh-city {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.dealer-card-pgh-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.dealer-card-pgh-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.dealer-card-pgh-email {
  font-size: 13px;
  color: var(--ink-soft);
}

.dealer-card-pgh-site {
  font-size: 13px;
  font-weight: 700;
  color: var(--g2);
  cursor: pointer;
}

.dealer-cta-pgh {
  background: var(--swoosh);
  border-radius: var(--r-xl);
  padding: 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
}

.dealer-cta-pgh-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

.dealer-cta-pgh-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-top: 8px;
}

.dealer-cta-pgh-text {
  font-size: 13.5px;
  opacity: 0.9;
  line-height: 1.5;
  margin: 12px 0 18px;
}

.btn-light-pgh {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: 46px;
  padding: 0 22px;
  border-radius: var(--r-lg);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s var(--spring);
}

.btn-light-pgh:hover {
  transform: translateY(-2px);
}

.gallery-head-pgh {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.gallery-tabs-nav-pgh {
  border-bottom: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 5px;
  gap: 4px;
}

.ga-grid-pgh {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 200px;
  gap: 14px;
}

.ga-tall-pgh {
  grid-row: span 2;
}

.ga-wide-pgh {
  grid-column: span 2;
}

.ga-tile-pgh {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--r-lg);
  cursor: pointer;
  background-size: cover;
  background-position: center;
  box-shadow: var(--sh-sm);
  text-decoration: none;
  transition: filter 0.2s var(--ease);
}

.ga-tile-pgh:hover {
  filter: brightness(1.05);
}

.ga-tile-pgh-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 16, 20, 0.72));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 14px 12px;
}

.ga-tile-pgh-title {
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
}

.ga-tile-pgh-tag {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11.5px;
  margin-top: 2px;
}

.gv-grid-pgh {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.gv-card-pgh {
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s var(--ease);
}

.gv-card-pgh:hover {
  box-shadow: var(--sh-lg);
}

.gv-card-pgh-poster {
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1d2731, var(--ink));
}

.gv-card-pgh-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(227, 30, 36, 0.92);
  box-shadow: 0 10px 26px rgba(227, 30, 36, 0.45);
}

.gv-card-pgh-dur {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 3px 8px;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.gv-card-pgh-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.gv-card-pgh-tag {
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-top: 4px;
}

@keyframes pghOkPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  60% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes pghOkRing {
  from {
    transform: scale(0.4);
    opacity: 0.5;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
.success-pgh {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 22px 20px;
  text-align: center;
}

.success-pgh-icon {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 26px;
}

.success-pgh-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--success-bg);
  animation: pghOkRing 1.6s ease-out infinite;
}

.success-pgh-icon-circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  box-shadow: var(--sh-lg);
  animation: pghOkPop 0.5s ease both;
}

.success-pgh-order {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-faint);
}

.success-pgh-order-num {
  font-weight: 800;
  color: var(--ink);
}

.success-pgh-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  text-align: left;
}

.success-pgh-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.error-404-links-pgh {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.error-404-links-pgh-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}

.error-404-links-pgh-list {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-404-links-pgh-item {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 18px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.error-404-links-pgh-item:hover {
  border-color: var(--g2);
  color: var(--g2);
}

@media screen and (max-width: 980px) {
  .co-audience-row-pgh {
    grid-template-columns: 1fr 1fr;
  }
  .dealers-grid-pgh {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 900px) {
  .ga-grid-pgh {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .co-doc-pgh {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 640px) {
  .success-pgh-steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .dealers-grid-pgh {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 480px) {
  .co-audience-row-pgh {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 480px) {
  .ga-grid-pgh {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .ga-wide-pgh,
  .ga-tall-pgh {
    grid-column: auto;
    grid-row: auto;
  }
}
.ct-page {
  padding-bottom: 40px;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

@media screen and (max-width: 880px) {
  .ct-grid {
    grid-template-columns: 1fr;
  }
}
.ct-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media screen and (max-width: 520px) {
  .ct-cards {
    grid-template-columns: 1fr;
  }
}
.ct-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(17, 21, 26, 0.04);
}

.ct-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--g2);
  background: rgba(227, 30, 36, 0.08);
  border: 1px solid rgba(227, 30, 36, 0.14);
  margin-bottom: 14px;
}

.ct-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.ct-card-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 5px;
  line-height: 1.35;
}

.ct-card-sub {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.ct-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.ct-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--brand, var(--ink-soft));
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}

.ct-social:hover {
  background: var(--brand, var(--g2));
  border-color: var(--brand, var(--g2));
  color: #fff;
  transform: translateY(-2px);
}

.ct-social svg {
  display: block;
}

.ct-form-card {
  margin-top: 18px;
  border-radius: 18px;
}

.ct-form-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 0 0 16px;
}

.ct-side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 8px 24px rgba(17, 21, 26, 0.05);
}

.ct-side-title {
  font-size: 15px;
  font-weight: 700;
}

.ct-side-sub {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.ct-hours-card {
  margin-top: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}

.ct-hours-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}

.ct-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--well);
  font-size: 13.5px;
}

.ct-hours-row span {
  color: var(--ink-soft);
}

.ct-hours-row b {
  font-weight: 700;
}

.ct-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #1f8a5b;
}

.ct-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1f8a5b;
}

.co-page {
  padding-bottom: 40px;
}

.co-hero {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(120deg, #11151a, #1d2731);
  color: #fff;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
}

.co-hero-body {
  position: relative;
  flex: 1 1 420px;
  padding: 48px 44px;
}

.co-hero-glow {
  position: absolute;
  top: -60px;
  right: -30px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.32), transparent 62%);
  pointer-events: none;
}

.co-hero-inner {
  position: relative;
  max-width: 560px;
}

.co-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.co-hero-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.02;
  margin: 0;
  color: #fff;
}

.co-hero-text {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin: 16px 0 0;
}

.co-hero-img {
  flex: 1 1 340px;
  min-height: 260px;
  background-size: cover;
  background-position: center;
}

.co-h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
}

.co-aud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 34px;
}

@media screen and (max-width: 980px) {
  .co-aud {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .co-aud {
    grid-template-columns: 1fr;
  }
}
.co-aud-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(17, 21, 26, 0.04);
}

.co-aud-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(150deg, #e92e34, #c1181e);
  box-shadow: 0 10px 22px rgba(227, 30, 36, 0.3);
  margin-bottom: 14px;
}

.co-aud-title {
  font-size: 16px;
  font-weight: 700;
}

.co-aud-text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: 6px;
}

.co-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: start;
}

@media screen and (max-width: 880px) {
  .co-grid {
    grid-template-columns: 1fr;
  }
}
.co-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.co-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.co-benefit-check {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(31, 138, 91, 0.12);
  color: #1f8a5b;
}

.co-benefit-title {
  font-size: 15px;
  font-weight: 700;
}

.co-benefit-text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: 3px;
}

.co-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(17, 21, 26, 0.06);
}

.co-form-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 0 0 6px;
}

.co-form-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

.dl-page {
  padding-bottom: 40px;
}

.dl-h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 36px 0 16px;
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media screen and (max-width: 880px) {
  .dl-grid {
    grid-template-columns: 1fr;
  }
}
.dl-opt {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(17, 21, 26, 0.04);
}

.dl-opt-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(150deg, #e92e34, #c1181e);
  box-shadow: 0 10px 22px rgba(227, 30, 36, 0.32);
  margin-bottom: 16px;
}

.dl-opt-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.dl-opt-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 8px;
}

.dl-opt-price {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--well);
  font-size: 13px;
  font-weight: 700;
  color: var(--g2);
}

.dl-tk-card {
  margin-top: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.dl-tk-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 4px;
}

.dl-tk-sub {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

.dl-tk {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.dl-tk-item {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.3px;
  transition: border-color 0.15s, color 0.15s;
}

.dl-tk-item:hover {
  border-color: var(--g2);
  color: var(--g2);
}

.dl-pay-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dl-pay-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--ink);
}

.dl-pay-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--g2);
}

.dl-pay {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media screen and (max-width: 880px) {
  .dl-pay {
    grid-template-columns: 1fr;
  }
}
.dl-pay-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.dl-pay-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  color: var(--g2);
  background: rgba(227, 30, 36, 0.08);
  border: 1px solid rgba(227, 30, 36, 0.14);
  margin-bottom: 14px;
}

.dl-pay-title {
  font-size: 16px;
  font-weight: 700;
}

.dl-pay-text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: 6px;
}

.dl-faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 8px 10px;
}

.dl-faq-item {
  border-bottom: 1px solid var(--well);
}

.dl-faq-item:last-child {
  border-bottom: none;
}

.dl-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 16px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.dl-faq-q::-webkit-details-marker {
  display: none;
}

.dl-faq-chev {
  flex: none;
  color: var(--ink-faint);
  transition: transform 0.2s, color 0.2s;
}

.dl-faq-item[open] .dl-faq-chev {
  transform: rotate(180deg);
  color: var(--g2);
}

.dl-faq-a {
  padding: 0 16px 18px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 760px;
}

.dr-page {
  padding-bottom: 40px;
}

.dr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media screen and (max-width: 980px) {
  .dr-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .dr-grid {
    grid-template-columns: 1fr;
  }
}
.dr-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(17, 21, 26, 0.04);
  display: flex;
  flex-direction: column;
}

.dr-card-head {
  position: relative;
  height: 120px;
  background: linear-gradient(135deg, #1d2731, #11151a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dr-card-code {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  color: rgba(255, 255, 255, 0.16);
}

.dr-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--g2);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.dr-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dr-card-country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.dr-card-flag {
  font-size: 20px;
}

.dr-card-city {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.dr-card-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--well);
}

.dr-card-phone {
  font-size: 14px;
  font-weight: 700;
}

.dr-card-email {
  font-size: 13px;
  color: var(--ink-soft);
}

.dr-card-site {
  font-size: 13px;
  font-weight: 700;
  color: var(--g2);
  text-decoration: none;
}

.dr-card-site:hover {
  text-decoration: underline;
}

.dr-cta {
  background: linear-gradient(150deg, #e92e34, #a3161b);
  border-radius: 18px;
  padding: 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
}

.dr-cta-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

.dr-cta-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-top: 8px;
}

.dr-cta-text {
  font-size: 13.5px;
  opacity: 0.9;
  line-height: 1.5;
  margin: 12px 0 18px;
}

.dr-cta-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: 46px;
  padding: 0 22px;
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s;
}

.dr-cta-btn:hover {
  transform: translateY(-2px);
}

.ga-page {
  padding-bottom: 40px;
}

.ga-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.ga-tabs {
  display: flex;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 5px;
}

.ga-tabs .tab-btn {
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  padding: 9px 18px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
  transition: background 0.15s, color 0.15s;
}

.ga-tabs .tab-btn.active {
  background: var(--ink);
  color: #fff;
}

.ga-page > .tab-pane {
  display: none;
}

.ga-page > .tab-pane.active {
  display: block;
}

.ga-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: row dense;
  gap: 14px;
}

.ga-wide {
  grid-column: span 2;
}

.ga-tall {
  grid-row: span 2;
}

@media screen and (max-width: 900px) {
  .ga-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .ga-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .ga-wide, .ga-tall {
    grid-column: auto;
    grid-row: auto;
  }
}
.ga-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 24px rgba(17, 21, 26, 0.06);
  text-decoration: none;
  transition: filter 0.2s;
}

.ga-item:hover {
  filter: brightness(1.05);
}

.ga-item-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 16, 20, 0.72));
}

.ga-item-cap {
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 12px;
}

.ga-item-title {
  display: block;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
}

.ga-item-tag {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11.5px;
  margin-top: 2px;
}

.ga-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.ga-video {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(17, 21, 26, 0.04);
  transition: box-shadow 0.2s;
}

.ga-video:hover {
  box-shadow: 0 16px 36px rgba(17, 21, 26, 0.12);
}

.ga-video-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  background-color: #11151a;
  background-size: cover;
  background-position: center;
}

.ga-video-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(227, 30, 36, 0.92);
  box-shadow: 0 10px 26px rgba(227, 30, 36, 0.45);
}

.ga-video-dur {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 3px 8px;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.ga-video-body {
  display: block;
  padding: 16px;
}

.ga-video-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.ga-video-tag {
  display: block;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.ga-empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--ink-faint);
  font-size: 14px;
}

.ga-pager {
  margin-top: 22px;
}

.news-page-title {
  font-weight: 800;
  font-size: 54px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0;
}

@media screen and (max-width: 900px) {
  .news-page-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 560px) {
  .news-page-title {
    font-size: 32px;
  }
}
.news-date {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--g2);
}

.news-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--g2);
  font-weight: 600;
  font-size: 13.5px;
}

.news-more svg {
  transition: transform 0.25s var(--ease);
}

.news-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.news-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.news-featured:hover .news-more svg {
  transform: translateX(4px);
}

@media screen and (max-width: 900px) {
  .news-featured {
    grid-template-columns: 1fr;
  }
}
.news-featured-media {
  aspect-ratio: 16/10;
  background: var(--well);
  overflow: hidden;
}

.news-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-featured-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 560px) {
  .news-featured-body {
    padding: 22px;
  }
}
.news-featured-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
}

.news-featured-meta .badge {
  border-radius: var(--r-pill);
}

.news-featured-title {
  font-weight: 800;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 14px 0 10px;
}

.news-featured-anons {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.news-card:hover .news-more svg {
  transform: translateX(4px);
}

.news-card-media {
  aspect-ratio: 16/10;
  background: var(--well);
  overflow: hidden;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  margin: 8px 0 0;
  color: var(--ink);
}

.news-card-anons {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 8px 0 0;
}

.news-detail {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

@media screen and (max-width: 900px) {
  .news-detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.news-detail-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--g2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.news-detail-meta .badge {
  border-radius: var(--r-pill);
}

.news-detail-title {
  font-weight: 800;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
}

@media screen and (max-width: 900px) {
  .news-detail-title {
    font-size: 34px;
  }
}
@media screen and (max-width: 560px) {
  .news-detail-title {
    font-size: 28px;
  }
}
.news-detail-cover {
  margin-top: 24px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--well);
  aspect-ratio: 16/9;
}

.news-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail-main .article {
  margin-top: 28px;
}

.news-detail-aside {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (max-width: 900px) {
  .news-detail-aside {
    position: static;
  }
}
.news-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--g-ink), var(--g-deep));
  box-shadow: var(--sh-lg);
}

.news-cta-watermark {
  position: absolute;
  right: -10px;
  top: -20px;
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 130px;
  line-height: 0.8;
  color: rgba(141, 198, 63, 0.08);
  pointer-events: none;
}

.news-cta-inner {
  position: relative;
}

.news-cta-title {
  font-weight: 800;
  font-size: 18px;
}

.news-cta-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(234, 243, 237, 0.78);
  margin: 8px 0 0;
}

.news-cta-phone {
  display: block;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  margin-top: 14px;
}

.news-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.news-share-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-faint);
}

.news-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--g-soft);
  color: var(--g2);
  display: grid;
  place-items: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.news-share-btn:hover {
  background: var(--g1);
  color: #fff;
}

.news-also-title {
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 52px 0 20px;
}

@media screen and (max-width: 560px) {
  .news-also-title {
    font-size: 24px;
    margin-top: 40px;
  }
}
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

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

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

.flex-1 {
  flex: 1 1 0 !important;
}

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

.align-items-start {
  align-items: flex-start !important;
}

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

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

.justify-content-end {
  justify-content: flex-end !important;
}

.gap-1 {
  gap: 6px !important;
}

.gap-2 {
  gap: 10px !important;
}

.gap-3 {
  gap: 16px !important;
}

.gap-4 {
  gap: 24px !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-muted {
  color: var(--ink-soft) !important;
}

.text-faint {
  color: var(--ink-faint) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-accent {
  color: var(--o2) !important;
}

.text-brand {
  color: var(--g2) !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-2 {
  margin-top: 8px !important;
}

.mt-3 {
  margin-top: 16px !important;
}

.mt-4 {
  margin-top: 24px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.mb-3 {
  margin-bottom: 16px !important;
}

.mb-4 {
  margin-bottom: 24px !important;
}

.w-100 {
  width: 100% !important;
}

.d-mobile {
  display: none !important;
}

@media screen and (max-width: 760px) {
  .d-desktop {
    display: none !important;
  }
  .d-mobile {
    display: block !important;
  }
  .d-mobile-flex {
    display: flex !important;
  }
}
/* ============================================================
   Личный кабинет (account) — по дизайну «Личный кабинет.dc.html»
   ============================================================ */
.account-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.account-content {
  min-width: 0;
}

.account-side {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Карточка пользователя */
.account-user {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--sh-sm);
  text-align: center;
}

.account-user-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--g1), var(--g3));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 24px;
  margin: 0 auto;
}

.account-user-name {
  font-weight: 800;
  font-size: 18px;
  margin-top: 14px;
  word-break: break-word;
}

.account-user-sub {
  font-size: 13.5px;
  color: var(--ink-faint);
  margin-top: 3px;
  word-break: break-word;
}

/* Навигация кабинета */
.account-nav {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 10px;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.account-nav-item {
  display: flex;
  align-items: center;
  gap: 13px;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  text-align: left;
  padding: 13px 15px;
  border-radius: 13px;
  background: transparent;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.account-nav-item:hover {
  background: var(--well);
}

.account-nav-item.is-active {
  background: var(--g-soft);
  color: var(--g2);
}

.account-nav-ico {
  display: grid;
  place-items: center;
  color: var(--ink-faint);
  flex: none;
}

.account-nav-item.is-active .account-nav-ico {
  color: var(--g2);
}

.account-nav-label {
  flex: 1;
}

.account-nav-badge {
  background: var(--o2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.account-nav-exit {
  border-top: 1px solid var(--border);
  margin-top: 7px;
  color: var(--danger);
}

.account-nav-exit .account-nav-ico {
  color: var(--danger);
}

/* Заголовки контента */
.account-title {
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

.account-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.account-head .account-title {
  margin: 0;
}

.account-head-count {
  font-size: 14px;
  color: var(--ink-faint);
}

.account-head-count b {
  color: var(--ink);
}

/* Карточка-секция */
.account-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--sh-sm);
}

.account-card + .account-card {
  margin-top: 18px;
}

.account-card-title {
  font-weight: 800;
  font-size: 19px;
  margin: 0 0 20px;
}

.account-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.account-card-head .account-card-title {
  margin: 0;
}

/* Формы */
.account-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.account-field {
  display: block;
}

.account-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 7px;
}

.account-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* Фильтры заказов */
.account-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.account-filter {
  border: 1.5px solid var(--border-strong);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 17px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  text-decoration: none;
  transition: all 0.18s var(--ease);
}

.account-filter:hover {
  border-color: var(--g2);
  color: var(--g2);
}

.account-filter.is-active {
  background: var(--g2);
  color: #fff;
  border-color: var(--g2);
}

/* Список заказов */
.account-orders {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--sh-sm);
  overflow: hidden;
}

.order-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}

.order-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.order-card-num {
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
}

.order-card-num a {
  color: inherit;
  text-decoration: none;
}

.order-card-num a:hover {
  color: var(--g2);
}

.order-card-date {
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 2px;
}

.order-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 999px;
}

.order-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.order-status-done {
  background: var(--success-bg);
  color: var(--success);
}

.order-status-work {
  background: var(--info-bg);
  color: var(--info);
}

.order-status-pay {
  background: var(--warning-bg);
  color: var(--warning);
}

.order-status-cancelled {
  background: var(--danger-bg);
  color: var(--danger);
}

.order-card-total {
  text-align: right;
}

.order-card-total-label {
  font-size: 12.5px;
  color: var(--ink-faint);
}

.order-card-total-sum {
  font-weight: 800;
  font-size: 19px;
  white-space: nowrap;
}

.order-card-items {
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.order-item-img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--well);
  display: grid;
  place-items: center;
  padding: 7px;
  flex: none;
}

.order-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.order-item-info {
  flex: 1;
  min-width: 0;
}

.order-item-name {
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.3;
}

.order-item-name a {
  color: inherit;
  text-decoration: none;
}

.order-item-name a:hover {
  color: var(--g2);
}

.order-item-meta {
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 2px;
}

.order-item-price {
  font-weight: 700;
  font-size: 14.5px;
  white-space: nowrap;
}

.order-card-foot {
  padding: 14px 22px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}

.order-card-link {
  margin-left: auto;
  font-size: 13.5px;
  color: var(--ink-faint);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.order-card-link:hover {
  color: var(--g2);
}

/* Адреса */
.account-addr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.account-addr {
  border: 1.5px solid var(--border-strong);
  border-radius: 16px;
  padding: 18px;
  position: relative;
  background: var(--surface);
}

.account-addr.is-primary {
  border-color: var(--g1);
  background: var(--g-soft);
}

.account-addr-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--g2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

/* Уведомления-тоглы */
.account-notif {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--border);
}

.account-notif:first-child {
  border-top: none;
}

.account-notif-title {
  font-weight: 600;
  font-size: 15px;
}

.account-notif-desc {
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 2px;
}

/* Пустое состояние кабинета */
.account-empty {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--sh-sm);
  padding: 60px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.account-empty-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--g-soft);
  display: grid;
  place-items: center;
  color: var(--g2);
}

.account-empty-title {
  font-weight: 800;
  font-size: 21px;
  margin: 20px 0 0;
}

.account-empty-text {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 8px 0 0;
  max-width: 42ch;
}

/* Адаптив */
@media screen and (max-width: 880px) {
  .account-layout {
    grid-template-columns: 1fr;
  }
  .account-side {
    position: static;
  }
}
@media screen and (max-width: 620px) {
  .account-form-grid, .account-addr-grid {
    grid-template-columns: 1fr;
  }
  .order-card-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/* Витрина кабинета (/personal/) */
.account-dashboard .account-card-title {
  font-size: 24px;
}

.account-dashboard p {
  color: var(--ink-soft);
  margin: 0 0 22px;
}

.account-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.account-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s var(--spring);
}

.account-tile:hover {
  border-color: var(--g1);
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}

.account-tile-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--g-soft);
  color: var(--g2);
  display: grid;
  place-items: center;
  flex: none;
}

@media screen and (max-width: 560px) {
  .account-tiles {
    grid-template-columns: 1fr;
  }
}
.au-page {
  padding-bottom: 60px;
}

.au-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: stretch;
}

@media (max-width: 860px) {
  .au-wrap {
    grid-template-columns: 1fr;
  }
  .au-aside {
    display: none !important;
  }
}
.au-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 34px rgba(17, 21, 26, 0.06);
}

@media (max-width: 560px) {
  .au-card {
    padding: 22px;
  }
}
.au-tabs {
  display: flex;
  gap: 6px;
  background: var(--well);
  border-radius: 13px;
  padding: 5px;
  margin-bottom: 24px;
}

.au-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s var(--ease), background 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.au-tab.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(17, 21, 26, 0.08);
}

.au-tab:not(.is-active):hover {
  color: var(--ink);
}

.auth-form-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 6px;
  color: var(--ink);
}

.auth-form-sub {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 22px;
}

.auth-fields {
  display: block;
}

.au-card .auth-field {
  display: block;
  margin-bottom: 14px;
}

.au-card .auth-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #41505a;
  margin-bottom: 7px;
}

.au-card .form-control,
.au-card .bx-auth-input,
.au-card input[type=text],
.au-card input[type=password],
.au-card input[type=email],
.au-card input[type=tel] {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--surface);
  outline: none;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.au-card .form-control:focus,
.au-card .bx-auth-input:focus,
.au-card input[type=text]:focus,
.au-card input[type=password]:focus,
.au-card input[type=email]:focus,
.au-card input[type=tel]:focus {
  border-color: var(--g2);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.au-card input::placeholder {
  color: var(--ink-faint);
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-size: 13px;
  color: #41505a;
  user-select: none;
}

.auth-check input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  flex: none;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1.5px solid #cdd4da;
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
  position: relative;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease);
}

.auth-check input[type=checkbox]:checked {
  background: var(--g2);
  border-color: var(--g2);
}

.auth-check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2.5px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2.4px 2.4px 0;
  transform: rotate(45deg);
}

.auth-link {
  color: var(--g2);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-secure-note {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--ink-faint);
}

.au-card .auth-submit,
.au-card .bx-registration-table input[type=submit] {
  width: 100%;
  height: 52px;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 2px;
}

.auth-divider {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-faint);
  margin: 20px 0 14px;
}

.au-card .alert-danger {
  background: rgba(227, 30, 36, 0.07);
  border: 1px solid rgba(227, 30, 36, 0.2);
  color: var(--g-deep);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 13px;
}

.au-card .bx-registration-table {
  width: 100%;
  border-collapse: collapse;
}

.au-card .bx-registration-table thead {
  display: none;
}

.au-card .bx-registration-table tbody,
.au-card .bx-registration-table tfoot,
.au-card .bx-registration-table tr,
.au-card .bx-registration-table td {
  display: block;
  width: 100%;
}

.au-card .bx-registration-table td:first-child {
  font-size: 12.5px;
  font-weight: 600;
  color: #41505a;
  padding: 0 0 7px;
}

.au-card .bx-registration-table td:last-child {
  padding: 0 0 14px;
}

.au-card .bx-registration-table tr td:only-child {
  padding-bottom: 14px;
}

.au-card .bx-registration-table tfoot td:first-child {
  display: none;
}

.au-card .bx-registration-table input[type=submit] {
  border: none;
  background: var(--swoosh);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 10px 24px rgba(227, 30, 36, 0.34);
  color: #fff;
  cursor: pointer;
}

.au-card .bx-registration-table input[type=submit]:hover {
  filter: brightness(1.05);
}

.au-card .starrequired {
  color: var(--g2);
  margin-right: 3px;
}

.au-card .bx-auth {
  margin: 0;
}

.au-card .bx-registration-table img {
  max-width: 100%;
  border-radius: 10px;
}

.au-aside {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(150deg, #1d2731, #0e1116);
  color: #fff;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.au-aside-glow {
  position: absolute;
  top: -50px;
  right: -30px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.32), transparent 62%);
  pointer-events: none;
}

.au-aside-top {
  position: relative;
}

.au-aside-logo {
  display: inline-flex;
  padding: 8px 11px;
  background: var(--g2);
  border-radius: 11px;
  margin-bottom: 20px;
}

.au-aside-logo img {
  height: 24px;
  display: block;
  filter: brightness(0) invert(1);
}

.au-aside-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.1;
}

.au-aside-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 14px 0 0;
}

.au-perks {
  position: relative;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.au-perks li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
}

.au-perk-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  flex: none;
  color: #fff;
}

/* ============ Страница 404 ============ */
.error-404 {
  padding: 64px 32px;
}

.error-404-code {
  font-weight: 800;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--swoosh);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.error-404-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

@media screen and (max-width: 560px) {
  .error-404-code {
    font-size: 64px;
  }
  .error-404-actions .btn {
    width: 100%;
  }
}
.btn--glass,
.btn-primary--glass,
.btn-secondary--glass {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  backdrop-filter: blur(14px) saturate(170%);
}

/* Диагональный блик-преломление */
.btn--glass::before,
.btn-primary--glass::before,
.btn-secondary--glass::before {
  content: "";
  position: absolute;
  top: -70%;
  left: -25%;
  width: 55%;
  height: 200%;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 70%);
  transform: rotate(9deg);
  pointer-events: none;
}

.btn--glass:hover,
.btn-primary--glass:hover,
.btn-secondary--glass:hover {
  transform: translateY(-2px);
}

.btn--glass:active,
.btn-primary--glass:active,
.btn-secondary--glass:active {
  transform: translateY(0) scale(0.97);
}

/* Прозрачное стекло (тёмный текст) — база и .btn-secondary--glass */
.btn--glass,
.btn-secondary--glass {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.14));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), inset 0 -3px 9px rgba(255, 255, 255, 0.28), 0 12px 30px rgba(17, 21, 26, 0.22);
}

.btn--glass:hover,
.btn-secondary--glass:hover {
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.95), inset 0 -3px 10px rgba(255, 255, 255, 0.34), 0 18px 40px rgba(17, 21, 26, 0.3);
}

/* Фирменный градиент-стекло — главный CTA (белый текст) */
.btn-primary--glass {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 52%), var(--swoosh-h);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  backdrop-filter: blur(10px) saturate(160%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.85), inset 0 -3px 9px rgba(163, 22, 27, 0.2), 0 12px 30px rgba(227, 30, 36, 0.34);
  text-shadow: 0 1px 2px rgba(163, 22, 27, 0.3);
}

.btn-primary--glass:hover {
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.95), inset 0 -3px 10px rgba(163, 22, 27, 0.24), 0 18px 42px rgba(227, 30, 36, 0.42);
}

/* Стеклянная иконочная (круглая): "btn btn-icon btn--glass" или + цветной вариант.
   .btn-icon задаёт квадрат; делаем круг и убираем лишний паддинг. */
.btn-icon.btn--glass,
.btn-icon.btn-primary--glass,
.btn-icon.btn-secondary--glass {
  border-radius: 50%;
}

/*# sourceMappingURL=style.css.map */

/* End */


/* Start:/local/templates/pennington-2.0/components/bitrix/search.title/.default/style.css?17837658433715*/
/* ============================================================
   Pennington 2.0 — выпадашка автоподсказок поиска (search.title) на ДС.
   Плавающий контейнер div.title-search-result создаёт JCTitleSearch
   (script.js компонента) — кладёт его в <body> и сам задаёт position/top/
   left/width инлайном. Здесь — только внешний вид по дизайн-системе.
   ============================================================ */

.header-search-inner { position: relative; }

div.title-search-result {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	box-shadow: var(--sh-lg);
	overflow: hidden;
	z-index: 1300;
	margin-top: 8px;
}

table.title-search-result { width: 100%; border-collapse: collapse; border: none; }
table.title-search-result tr { display: block; }
table.title-search-result th { display: none; }
table.title-search-result td { display: block; padding: 0; background: transparent; white-space: normal; }
table.title-search-result th.title-search-separator,
table.title-search-result td.title-search-separator { display: none; }

/* Товарная подсказка: миниатюра + название */
table.title-search-result td.title-search-item a {
	display: flex; align-items: center; gap: 12px; padding: 10px 16px;
	text-decoration: none; color: var(--ink); border-top: 1px solid var(--border);
}
table.title-search-result td.title-search-item img,
table.title-search-result td.title-search-item .ts-thumb {
	width: 42px; height: 42px; object-fit: contain; border-radius: 9px;
	background: var(--well); padding: 5px; flex: none; vertical-align: middle;
}
table.title-search-result td.title-search-item a b { color: inherit; font-weight: 700; }

/* ДС: блок «название + артикул» (растягивается) и цена справа */
.title-search-result .ts-info { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.title-search-result .ts-name { font-weight: 700; color: var(--ink); line-height: 1.25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.title-search-result .ts-art { font-size: 12.5px; color: var(--ink-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.title-search-result .ts-price { flex: none; margin-left: 10px; font-weight: 800; font-size: 15px; color: var(--ink); white-space: nowrap; }

/* «Ещё» / «Смотреть все результаты» */
table.title-search-result td.title-search-more a,
table.title-search-result td.title-search-all a {
	display: block; padding: 12px 16px; text-align: center; font-size: 14px; font-weight: 600;
	color: var(--g2); text-decoration: none; border-top: 1px solid var(--border);
}
table.title-search-result td.title-search-all a { display: flex; align-items: center; justify-content: center; gap: 7px; }
.title-search-result .ts-all-arrow { flex: none; }

/* Подсветка выбранной строки (клавиатура ↑↓ / ховер — классы ставит JCTitleSearch) */
table.title-search-result tr.title-search-selected td.title-search-item a,
table.title-search-result tr.title-search-selected td.title-search-more a,
table.title-search-result tr.title-search-selected td.title-search-all a,
table.title-search-result td.title-search-item a:hover,
table.title-search-result td.title-search-more a:hover,
table.title-search-result td.title-search-all a:hover { background: var(--g-soft); }

/* Штатный «фейдер» правого края не нужен */
div.title-search-fader { display: none !important; }

/* End */


/* Start:/local/components/luxar/product.buy/templates/.default/style.css?17828915556350*/
/* luxar:product.buy — модалка единого компонента покупки (поверх ДС .modal) */
.pbuy-modal .modal-dialog { max-width: 460px; max-height: calc(100vh - 40px); overflow-y: auto; overflow-x: hidden; }
.pbuy-title { font-weight: 700; font-size: 16px; }
.pbuy-sub { color: var(--ink-soft); font-size: 14px; margin-bottom: 16px; }
.pbuy-loader { display: flex; justify-content: center; padding: 44px 0; }
.pbuy-loader .f-spinner { --f-spinner-color-2: var(--g2); }
.pbuy-error-box { padding: 16px; background: var(--g-soft); color: var(--g2); border-radius: 12px; text-align: center; font-weight: 600; }

/* --- выбор варианта SKU --- */
.pbuy-variants { display: flex; flex-direction: column; gap: 8px; }
.pbuy-variant {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 14px;
    background: var(--surface); cursor: pointer; font: inherit; text-align: left;
    transition: border-color .15s, background .15s;
}
.pbuy-variant:hover { border-color: var(--g1); background: var(--g-soft); }
.pbuy-variant.is-disabled, .pbuy-variant[disabled] { opacity: .45; cursor: not-allowed; }
.pbuy-variant-name { font-weight: 600; }
.pbuy-variant-price { font-weight: 700; color: var(--g2); white-space: nowrap; }

/* --- попап «товар добавлен» --- */
.pbuy-added-row { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.pbuy-added-img { width: 76px; height: 76px; flex: none; border-radius: 14px; overflow: hidden; background: var(--well); display: grid; place-items: center; padding: 6px; }
.pbuy-added-img img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.pbuy-added-name { font-weight: 600; line-height: 1.3; }
.pbuy-added-price { font-weight: 800; font-size: 19px; margin-top: 4px; }
.pbuy-field { margin-bottom: 14px; }
.pbuy-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); }
.pbuy-modal .qty-stepper .qty-value {
    width: 56px; border: 0; background: transparent; text-align: center;
    font-weight: 700; font-size: 16px; color: var(--ink); padding: 0; outline: none; -moz-appearance: textfield;
}
.pbuy-modal .qty-stepper .qty-value::-webkit-outer-spin-button,
.pbuy-modal .qty-stepper .qty-value::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pbuy-actions { display: flex; gap: 10px; margin-top: 18px; }
.pbuy-actions .btn { flex: 1; }

/* --- форма «1 клик» --- */
.pbuy-quick .form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); }
.pbuy-error { color: var(--danger, #c0392b); font-size: 14px; margin-bottom: 10px; }

.pbuy-color-name { color: var(--ink-soft); font-weight: 500; }
.pbuy-label-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.pbuy-size-link { appearance: none; border: 0; background: none; font: inherit; cursor: pointer; color: var(--g2); font-size: 13px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.pbuy-size-table { margin-top: 10px; }
.pbuy-size-table img { display: block; max-width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--border); }

/* --- «Уточнить детали» --- */
.pbuy-details-toggle { appearance: none; border: 0; background: none; font: inherit; cursor: pointer; color: var(--g2); font-weight: 600; font-size: 14px; padding: 6px 0; margin: 2px 0 6px; }
.pbuy-details-toggle::after { content: ' ▾'; font-size: 11px; }
.pbuy-details-toggle.is-open::after { content: ' ▴'; }
.pbuy-details { border-top: 1px solid var(--border); padding-top: 14px; margin-bottom: 4px; }

/* --- автокомплит города --- */
.pbuy-city { position: relative; }
.pbuy-city-list { position: absolute; left: 0; right: 0; top: 100%; z-index: 5; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--sh-xl); max-height: 220px; overflow-y: auto; margin-top: 4px; }
.pbuy-city-item { display: block; width: 100%; text-align: left; appearance: none; border: 0; background: none; font: inherit; cursor: pointer; padding: 10px 14px; }
.pbuy-city-item:hover { background: var(--g-soft); }

/* --- выбор доставки --- */
.pbuy-delivery-opt { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 12px; cursor: pointer; margin-bottom: 8px; }
.pbuy-delivery-opt:has(input:checked) { border-color: var(--g1); background: var(--g-soft); }
.pbuy-delivery-name { flex: 1; font-weight: 500; }
.pbuy-delivery-price { font-weight: 700; color: var(--g2); white-space: nowrap; }
.pbuy-hint { color: var(--ink-soft); font-size: 14px; padding: 4px 0; }

/* --- успех --- */
.pbuy-success { text-align: center; padding: 8px 0; }
.pbuy-success .modal-icon { margin: 0 auto 8px; }

/* --- кнопки в попапе «добавлено»: ужимаемся, не выходим за паддинг --- */
.pbuy-actions .btn { flex: 1; min-width: 0; padding-left: 14px; padding-right: 14px; }
/* В адаптиве кнопки не влазят в ряд — ставим каждую на свою строку (на всю ширину) */
@media (max-width: 560px) {
	.pbuy-actions { flex-direction: column; }
	.pbuy-actions .btn { flex: none; width: 100%; }
}

/* --- скелетон загрузки модалки (поверх глобального .skeleton) --- */
.pbuy-skel { padding: 2px 0; }
.pbuy-skel-row { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; }
.pbuy-skel-img { width: 76px; height: 76px; flex: none; border-radius: 14px; }
.pbuy-skel-lines { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 11px; }
.pbuy-skel-line { display: block; height: 16px; width: 92%; border-radius: 7px; }
.pbuy-skel-line.is-short { width: 48%; height: 20px; }
.pbuy-skel-field { display: block; height: 46px; border-radius: 12px; margin-bottom: 14px; }
.pbuy-skel-btn-full { display: block; height: 50px; border-radius: 999px; margin-top: 6px; }
.pbuy-skel-actions { display: flex; gap: 10px; margin-top: 18px; }
.pbuy-skel-btn { flex: 1; height: 50px; border-radius: 999px; }

/* End */
/* /local/templates/pennington-2.0/css/style.css?1783790143206224 */
/* /local/templates/pennington-2.0/components/bitrix/search.title/.default/style.css?17837658433715 */
/* /local/components/luxar/product.buy/templates/.default/style.css?17828915556350 */
