/* Dragon brand — шаблон в духе pullupclub.ru */

:root {
  --bg: #0c0c0c;
  --surface: #141414;
  --surface-2: #1a1a1a;
  --text: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.55);
  --line: rgba(255, 255, 255, 0.08);
  --accent: #fff;
  --cta: #e85d4c;
  --radius: 0;
  --font: "DM Sans", system-ui, sans-serif;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ring: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 0 3px rgba(232, 93, 76, 0.42), 0 0 28px rgba(232, 93, 76, 0.14);
  --ring-subtle: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 0 2px rgba(232, 93, 76, 0.55);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Фон сайта: крупный логотип + белое свечение */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background-color: var(--bg);
  background-image: radial-gradient(
    ellipse 58% 48% at 50% 42%,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 58%
  );
}

.site-bg__figure {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: min(115vmin, 880px);
  z-index: 0;
}

.site-bg__figure img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.08;
  filter:
    drop-shadow(0 0 32px rgba(255, 255, 255, 0.45))
    drop-shadow(0 0 96px rgba(255, 255, 255, 0.22))
    drop-shadow(0 0 160px rgba(255, 255, 255, 0.1));
}

/* ——— Загрузочный экран (первый вход за сессию) ——— */
html.intro-active body {
  overflow: hidden;
}

html.intro-done .site-intro {
  display: none !important;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}

.site-intro[hidden] {
  display: none;
}

.site-intro--exit {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
}

.site-intro__logo-btn {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 0;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.25s var(--ease);
}

.site-intro__logo-btn:hover {
  transform: scale(1.04);
}

.site-intro__logo-btn:focus-visible {
  outline: none;
}

.site-intro__logo-btn:focus-visible .site-intro__logo-glow {
  box-shadow: var(--ring);
  border-radius: 50%;
}

.site-intro__logo-btn:disabled {
  cursor: default;
  transform: none;
}

/* Свечение через градиент, не filter на img — иначе на iOS виден квадрат */
.site-intro__logo-glow {
  position: relative;
  display: block;
  line-height: 0;
  background: none;
}

.site-intro__logo-glow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.38) 0%,
    rgba(255, 255, 255, 0.12) 38%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.site-intro__logo-glow img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(42vw, 200px);
  height: auto;
  object-fit: contain;
  background: none;
  border: none;
  -webkit-mask-image: none;
}

.site-intro__tap {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  color: var(--muted);
  animation: site-intro-pulse 1.6s ease-in-out infinite;
}

.site-intro__tap[hidden] {
  display: none;
}

@keyframes site-intro-pulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

.site-intro__progress {
  width: min(42vw, 200px);
  margin-top: 0.15rem;
}

.site-intro__progress[hidden] {
  display: none;
}

.site-intro--loading .site-intro__inner {
  gap: 0.65rem;
}

.site-intro__progress-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.site-intro__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
  transition: width 1.4s var(--ease);
}

/* ——— Шапка ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--text);
  text-decoration: none;
  border-radius: 2px;
  transition: box-shadow 0.28s var(--ease);
}

.brand:focus-visible {
  outline: none;
  box-shadow: var(--ring-subtle);
}

.brand-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-mark {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 1.75rem;
  flex-wrap: wrap;
}

.nav-desktop a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.35rem 0;
  transition: color 0.2s var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: var(--text);
}

.nav-desktop a:focus-visible {
  outline: none;
  box-shadow: var(--ring-subtle);
  border-radius: 2px;
}

.nav-desktop a[aria-current="page"],
.nav-mobile a[aria-current="page"] {
  color: var(--text);
}

.nav-desktop .nav-cta {
  flex-shrink: 0;
  color: var(--bg);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  padding: 0.45rem 1rem;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--text);
  border: 1px solid var(--text);
  transition: opacity 0.2s var(--ease), transform 0.15s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.nav-cta:hover {
  opacity: 0.88;
}

.nav-cta:active {
  transform: scale(0.98);
}

.nav-cta:focus-visible {
  outline: none;
  box-shadow: var(--ring-subtle), 0 6px 20px rgba(232, 93, 76, 0.12);
}

.nav-cta__icon {
  flex-shrink: 0;
}

.menu-toggle {
  display: flex;
  padding: 0.4rem;
  color: var(--text);
  border-radius: 2px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), box-shadow 0.25s var(--ease);
}

.menu-toggle:focus-visible {
  outline: none;
  border-color: rgba(232, 93, 76, 0.45);
  box-shadow: var(--ring-subtle);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 0;
  color: var(--muted);
}

.nav-mobile a:focus-visible {
  outline: none;
  color: var(--text);
  box-shadow: var(--ring-subtle);
  border-radius: 2px;
}

.nav-mobile .nav-cta {
  margin-top: 0.35rem;
  width: 100%;
  color: var(--bg);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 1rem;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .nav-desktop {
    grid-column: 2;
  }

  .header-tools {
    grid-column: 3;
    justify-self: end;
  }
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  margin: 0;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.28s var(--ease);
}

.header-cart:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--cta);
}

.header-cart:focus-visible {
  outline: none;
  box-shadow: var(--ring-subtle);
}

.header-cart__icon {
  display: block;
}

.header-cart__badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.15rem;
  text-align: center;
  color: var(--bg);
  background: var(--cta);
  border-radius: 999px;
}

.pu-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pu-social a {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pu-social a:hover {
  color: var(--text);
}

.pu-social a:focus-visible {
  outline: none;
  color: var(--text);
  box-shadow: var(--ring-subtle);
  border-radius: 2px;
}

@media (max-width: 767px) {
  .header-tools .pu-social {
    display: none;
  }
}

/* ——— Герой: фото в своих пропорциях, без обрезки и растягивания ——— */
.pu-hero--visual {
  margin: 0;
  padding: 0;
  display: block;
  border-bottom: 1px solid var(--line);
  background: #0a0a0c;
}

.pu-hero__media {
  position: relative;
  width: 100%;
  max-width: 2560px;
  margin: 0 auto;
  line-height: 0;
}

.pu-hero--visual picture {
  display: block;
}

.pu-hero--visual .pu-hero__img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  vertical-align: top;
}

/* ——— Секции каталог / комбо ——— */
.pu-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 3.5rem;
}

.pu-section__title {
  margin: 0 0 2rem;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.pu-archive {
  margin-top: 2.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.pu-archive__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  color: var(--muted);
}

.pu-grid.pu-grid--archive {
  /* width: fit-content — иначе фон/border .pu-grid на всю ширину секции и «серые поля» по бокам одной карточки */
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  grid-template-columns: minmax(0, 22rem);
}

@media (min-width: 640px) {
  .pu-grid.pu-grid--archive {
    grid-template-columns: repeat(auto-fit, minmax(22rem, 22rem));
  }
}

.pu-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 640px) {
  .pu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .pu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Основной список каталога: сетка по ширине карточек, без полос фона по бокам (как у архива) */
#catalog > ul.pu-grid {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  grid-template-columns: minmax(0, 22rem);
}

@media (min-width: 640px) {
  #catalog > ul.pu-grid {
    grid-template-columns: repeat(auto-fit, minmax(22rem, 22rem));
  }
}

.pu-card {
  position: relative;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  outline: none;
  -webkit-tap-highlight-color: rgba(232, 93, 76, 0.12);
  transition: box-shadow 0.32s var(--ease), transform 0.22s var(--ease);
}

.pu-card__hit {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: transparent;
}

.pu-card__hit:focus {
  outline: none;
}

.pu-card:focus-within {
  outline: none;
  box-shadow: var(--ring);
}

.pu-card:has(.pu-card__hit:active) {
  transform: scale(0.9975);
  box-shadow:
    0 0 0 2px rgba(232, 93, 76, 0.58),
    0 0 32px rgba(232, 93, 76, 0.16),
    0 14px 36px rgba(0, 0, 0, 0.32);
}

.pu-card:focus-within:has(.pu-card__hit:active) {
  transform: scale(0.997);
  box-shadow:
    0 0 0 2px rgba(232, 93, 76, 0.72),
    0 0 40px rgba(232, 93, 76, 0.22),
    0 16px 40px rgba(0, 0, 0, 0.35);
}

.pu-card__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface-2);
}

.pu-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pu-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, var(--surface-2) 0%, #121218 100%);
}

.pu-card__placeholder-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.pu-card__sizes {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.pu-card__size-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pu-card__size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.pu-card__size-input:checked + .pu-card__size,
.pu-card__size-input:focus-visible + .pu-card__size {
  color: var(--text);
  border-color: rgba(232, 93, 76, 0.65);
  background: rgba(232, 93, 76, 0.08);
}

.pu-card__size:hover {
  color: var(--text);
  border-color: var(--muted);
}

.pu-card__body {
  padding: 1.1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.pu-card__name {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pu-card__meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.pu-card__limited {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 93, 76, 0.95);
}

.pu-card__sold-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  pointer-events: none;
  padding: 0.38rem 0.55rem;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #ff8c32 0%, #e85d4c 100%);
  border-radius: 3px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.pu-card--sold .pu-card__img img {
  opacity: 0.72;
  filter: grayscale(0.15);
}

.pu-card__price {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.pu-card__cart {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  border: none;
  border-top: 1px solid var(--line);
  text-align: center;
  padding-bottom: 0.15rem;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.28s var(--ease);
}

.pu-card__cart:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  z-index: 3;
}

.pu-card__cart:hover {
  background: var(--surface-2);
  color: var(--cta);
}

.pu-card__cart:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  color: var(--muted);
}

.pu-card__cart:disabled:hover {
  background: transparent;
  color: var(--muted);
}

.pu-loadmore {
  min-height: 2.75rem;
  padding: 0 2.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.28s var(--ease);
}

.pu-loadmore:focus-visible {
  outline: none;
  color: var(--text);
  border-color: rgba(232, 93, 76, 0.4);
  box-shadow: var(--ring-subtle);
}

.pu-loadmore:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.pu-loadmore:disabled:focus-visible {
  box-shadow: none;
  border-color: var(--line);
  color: var(--muted);
}

.pu-loadmore:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ——— Карточка товара (модалка) ——— */
.pu-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.pu-modal[hidden] {
  display: none;
}

.pu-modal__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(5, 5, 8, 0.82);
  cursor: pointer;
}

.pu-modal__panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(92vh, 880px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.pu-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.pu-modal__close:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--cta);
}

.pu-modal__close:focus-visible {
  outline: none;
  border-color: rgba(232, 93, 76, 0.5);
  box-shadow: var(--ring-subtle);
}

.pu-modal__grid {
  display: grid;
  gap: 0;
}

@media (min-width: 720px) {
  .pu-modal__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
  }
}

.pu-modal__img {
  background: var(--surface-2);
  min-height: 220px;
}

.pu-modal__img img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: min(70vh, 640px);
  object-fit: contain;
}

@media (min-width: 720px) {
  .pu-modal__img img {
    max-height: min(88vh, 720px);
  }
}

.pu-modal__img img[hidden] {
  display: none;
}

.pu-modal__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.pu-modal__placeholder[hidden] {
  display: none;
}

.pu-modal__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.35rem 0 0.15rem;
}

.pu-modal__sizes[hidden] {
  display: none;
}

.pu-modal__body {
  padding: 2.25rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 720px) {
  .pu-modal__body {
    padding: 2.75rem 2rem 2.25rem;
    justify-content: center;
  }
}

.pu-modal__kicker {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.pu-modal__title {
  margin: 0.35rem 0 0;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.pu-modal__meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.pu-modal__limited {
  margin: 0.4rem 0 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 93, 76, 0.95);
}

.pu-modal__limited[hidden] {
  display: none !important;
}

.pu-modal__price {
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.pu-modal__hint {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.pu-modal__cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg);
  background: var(--text);
  border: 1px solid var(--text);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.28s var(--ease);
}

.pu-modal__cta:hover {
  opacity: 0.9;
}

.pu-modal__cta:active {
  transform: scale(0.99);
}

.pu-modal__cta:focus-visible {
  outline: none;
  opacity: 1;
  box-shadow: var(--ring-subtle), 0 8px 28px rgba(0, 0, 0, 0.35);
}

.pu-modal__cta:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.pu-modal__cta:disabled:hover {
  opacity: 0.5;
}

/* ——— Корзина ——— */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 3100;
}

.cart-drawer[hidden] {
  display: none;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.78);
  cursor: pointer;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100%, 460px);
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: var(--surface);
  border-left: 1px solid var(--line);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
  animation: cart-drawer-in 0.32s var(--ease) both;
}

@keyframes cart-drawer-in {
  from {
    transform: translateX(100%);
    opacity: 0.6;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.1rem 0.85rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.cart-drawer__main {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Авторские display:* не должны перебивать атрибут hidden */
.cart-drawer__main > [hidden] {
  display: none !important;
}

.cart-drawer__title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cart-drawer__close {
  width: 2.35rem;
  height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cart-drawer__close:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--cta);
}

.cart-drawer__body:not([hidden]) {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 1rem 1.1rem;
}

.cart-drawer__empty {
  margin: 2rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.cart-drawer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 0.85rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.cart-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-line__thumb {
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  background: var(--surface-2);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-sizing: border-box;
}

.cart-line__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-line__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cart-line__title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-line__meta {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.35;
}

.cart-line__price {
  font-size: 0.72rem;
  color: var(--muted);
}

.cart-line__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  justify-content: flex-end;
}

.cart-line__qtybtn {
  width: 1.85rem;
  height: 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--surface-2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cart-line__qtybtn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--cta);
}

.cart-line__qty {
  min-width: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.cart-line__remove {
  margin-left: 0.25rem;
  width: 1.85rem;
  height: 1.85rem;
  padding: 0;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--muted);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s;
}

.cart-line__remove:hover {
  color: var(--cta);
}

.cart-line__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  min-width: 0;
}

.cart-line__sum {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  text-align: right;
  line-height: 1.35;
}

.cart-drawer__foot:not([hidden]) {
  padding: 1.1rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
  flex-shrink: 0;
}

.cart-drawer__checkout-btn {
  width: 100%;
}

.cart-drawer__checkout:not([hidden]) {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 1rem 1.1rem 1.25rem;
  border-top: 1px solid var(--line);
}

.cart-drawer__back-btn {
  width: 100%;
  margin-bottom: 0.85rem;
}

.cart-drawer__checkout-heading {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.checkout-summary {
  margin: 0 0 1rem;
  padding: 0.85rem 0.75rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  line-height: 1.45;
}

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.checkout-summary__row span:first-child {
  min-width: 0;
}

.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-drawer__success:not([hidden]) {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1.25rem;
  background: var(--surface);
}

.cart-drawer__success-icon {
  margin: 0 0 0.75rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(120, 200, 140, 0.15);
  color: #8fd4a0;
  font-size: 1.35rem;
  font-weight: 700;
}

.cart-drawer__success-title {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-drawer__success-text {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 22rem;
}

#cart-success-close {
  min-width: 10rem;
}

.cart-drawer__total {
  margin: 0 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-drawer__total strong {
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.04em;
}

.cart-order-preview--drawer {
  margin: 0 0 1.1rem;
}

.cart-drawer__form-wrap {
  margin-top: 0.25rem;
}

.cart-drawer__form-title {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.cart-drawer__form-lead {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.pu-form--drawer .pu-form__check {
  margin-bottom: 1rem;
}

.pu-form--drawer input[type="text"],
.pu-form--drawer input[type="email"],
.pu-form--drawer input[type="tel"] {
  margin-bottom: 0.85rem;
}

.checkout-delivery-pick {
  margin-bottom: 0.35rem;
}

.checkout-delivery-pick__legend {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.checkout-delivery-pick .pu-form__check {
  margin-bottom: 0.55rem;
}

.checkout-delivery-pick .pu-form__check:last-of-type {
  margin-bottom: 0.85rem;
}

.checkout-delivery-address {
  margin-bottom: 0.15rem;
}

.checkout-delivery-address textarea:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pu-form--drawer textarea {
  margin-bottom: 0.85rem;
}

.checkout-delivery-address__wrap {
  position: relative;
  margin-bottom: 0.5rem;
}

.checkout-cdek-map-btn {
  width: 100%;
  margin: 0 0 0.65rem;
  box-sizing: border-box;
}

.checkout-address-suggest {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 6;
  max-height: 12.5rem;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  border-radius: 2px;
}

.checkout-address-suggest[hidden] {
  display: none !important;
}

.checkout-address-suggest li {
  margin: 0;
  padding: 0;
}

.checkout-address-suggest button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.65rem;
  font: inherit;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
}

.checkout-address-suggest li:last-child button {
  border-bottom: none;
}

.checkout-address-suggest button:hover,
.checkout-address-suggest button:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.checkout-address-suggest--pickup {
  max-height: 14.5rem;
  padding: 0;
  background: #121212;
  border: 1px solid #2c2c2c;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}

.checkout-address-suggest--pickup button {
  padding: 0.55rem 0.75rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #f0f0f0;
  border-bottom: 1px solid #252525;
}

.checkout-address-suggest--pickup li:last-child button {
  border-bottom: none;
}

.checkout-address-suggest--pickup button:hover,
.checkout-address-suggest--pickup button:focus-visible {
  background: rgba(255, 255, 255, 0.07);
}

.checkout-address-suggest--pickup::-webkit-scrollbar {
  width: 7px;
}

.checkout-address-suggest--pickup::-webkit-scrollbar-thumb {
  background: #3d3d3d;
  border-radius: 4px;
}

.checkout-address-suggest--pickup {
  scrollbar-color: #3d3d3d #1a1a1a;
  scrollbar-width: thin;
}

.checkout-pickup-hint {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
}

.checkout-pickup-hint[hidden] {
  display: none !important;
}

.checkout-pickup-hint a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.cart-drawer__shop-more {
  width: 100%;
  margin-top: 1rem;
}

.cart-order-preview {
  margin: 0 0 1.75rem;
  padding: 1.1rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
}

.cart-order-preview__title {
  margin: 0 0 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-order-preview__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.84rem;
  color: var(--text);
}

.cart-order-preview__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-order-preview__list li:last-child {
  border-bottom: none;
}

.cart-order-preview__list small {
  color: var(--muted);
  font-weight: 400;
}

.cart-order-preview__sum {
  flex-shrink: 0;
  font-weight: 600;
}

.cart-order-preview__total {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  text-align: right;
  color: var(--muted);
}

.cart-order-preview__total strong {
  color: var(--text);
}

/* ——— Контакты (секция) ——— */
.pu-contacts {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.pu-contacts__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 3.5rem;
}

.pu-contacts__lead {
  margin: -0.5rem auto 2rem;
  max-width: 42rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.pu-contacts__grid {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

@media (min-width: 560px) {
  .pu-contacts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pu-contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  height: 100%;
  padding: 1.35rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s var(--ease), box-shadow 0.28s var(--ease);
}

.pu-contact-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.pu-contact-card:focus-visible {
  outline: none;
  box-shadow: var(--ring-subtle);
}

.pu-contact-card__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.pu-contact-card__value {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pu-contact-card__hint {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ——— Форма заказа ——— */
.pu-order {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.pu-order__inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 1.25rem 3.5rem;
}

.pu-order__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.pu-order__lead {
  margin: 0 0 2rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.pu-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.pu-form input[type="text"],
.pu-form input[type="email"],
.pu-form input[type="tel"] {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: border-color 0.2s, box-shadow 0.28s var(--ease);
}

.pu-form select {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: border-color 0.2s, box-shadow 0.28s var(--ease);
  cursor: pointer;
}

.pu-form select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.25);
}

.pu-form select:focus-visible {
  border-color: rgba(232, 93, 76, 0.42);
  box-shadow: 0 0 0 3px rgba(232, 93, 76, 0.12);
}

.pu-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.25);
}

.pu-form input:focus-visible {
  border-color: rgba(232, 93, 76, 0.42);
  box-shadow: 0 0 0 3px rgba(232, 93, 76, 0.12);
}

.pu-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  resize: vertical;
  min-height: 4.5rem;
  line-height: 1.45;
  transition: border-color 0.2s, box-shadow 0.28s var(--ease);
}

.pu-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.25);
}

.pu-form textarea:focus-visible {
  border-color: rgba(232, 93, 76, 0.42);
  box-shadow: 0 0 0 3px rgba(232, 93, 76, 0.12);
}

.pu-form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.pu-form__check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.pu-form__check a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.pu-form__row2 {
  display: grid;
  gap: 0 1rem;
}

@media (min-width: 520px) {
  .pu-form__row2 {
    grid-template-columns: 1fr 1fr;
  }
}

.pu-form__submit {
  width: 100%;
  min-height: 3rem;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--text);
  border: 1px solid var(--text);
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.28s var(--ease);
}

.pu-form__submit:hover {
  opacity: 0.9;
}

.pu-form__submit:focus-visible {
  outline: none;
  opacity: 1;
  box-shadow: var(--ring-subtle), 0 8px 28px rgba(0, 0, 0, 0.35);
}

.pu-form__hint {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

#checkout-form-hint[data-state="error"] {
  color: #e07060;
  text-align: left;
  line-height: 1.45;
}

/* ——— Подвал ——— */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.25rem;
  background: var(--bg);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

@media (min-width: 640px) {
  .footer-brand-row {
    justify-content: flex-start;
  }
}

.footer-brand {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 32ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .footer-links {
    justify-content: flex-end;
  }
}

.footer-links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-links a:focus-visible {
  outline: none;
  color: var(--text);
  box-shadow: var(--ring-subtle);
  border-radius: 2px;
}

/* ——— Внутренние страницы ——— */
.page-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.page-hero {
  padding: 1.5rem 0 2rem;
}

.page-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.strip {
  background: var(--surface);
  border: 1px solid var(--line);
  margin: 1.5rem 0;
}

.strip-inner {
  padding: 2rem 1.25rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .strip-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2.25rem 1.5rem;
  }
}

.strip-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.strip-item span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.strip-link {
  color: var(--text);
  text-decoration: underline;
}

.page-section {
  padding: 0.5rem 0 1.5rem;
}

.page-h2 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.page-text:last-child {
  margin-bottom: 0;
}

.page-text a {
  color: var(--text);
  text-decoration: underline;
}

.info-block {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.35rem 1.15rem;
  margin-bottom: 1px;
}

.info-block-title {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-block p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.info-block a {
  color: var(--text);
  text-decoration: underline;
}

.page-section--stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0.5rem;
}

.step-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.step-list a {
  color: var(--text);
}

.strip--page {
  margin: 0 0 1.5rem;
}

.pu-copy {
  margin: 0;
  padding: 0 1rem 1.5rem;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.06em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
