:root {
  --ink: #1a120c;
  --ink-muted: #5c5248;
  --paper: #fff9f4;
  --paper-2: #fff0e0;
  --paper-3: #ffe4c8;
  --accent: #ff5500;
  --accent-2: #ff8a00;
  --accent-3: #ffbc00;
  --accent-hover: #e84a00;
  --accent-soft: rgba(255, 85, 0, 0.16);
  --accent-glow: rgba(255, 85, 0, 0.55);
  --peach: #ffcba4;
  --salmon: #ff9b5c;
  --terracotta: #ff6b35;
  --gold: #ffc233;
  --line: rgba(255, 85, 0, 0.22);
  --glass: rgba(255, 252, 248, 0.88);
  --radius: 18px;
  --radius-lg: 32px;
  --shadow: 0 16px 48px rgba(255, 85, 0, 0.1);
  --shadow-lg: 0 24px 56px rgba(255, 85, 0, 0.22);
  --btn-shadow: 0 4px 0 #d94400, 0 14px 36px rgba(255, 69, 0, 0.45);
  --font: 'Manrope', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --container: min(1180px, calc(100% - clamp(1.5rem, 6vw, 3rem)));
  --space-section: clamp(4rem, 10vw, 6.5rem);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 70% at 8% -5%, rgba(255, 160, 100, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 20%, rgba(255, 200, 120, 0.18), transparent 50%),
    linear-gradient(180deg, #fffcfa 0%, #fff8f3 40%, #fff5ee 100%);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.35rem, 5.5vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

h1 em {
  font-style: italic;
  color: var(--accent);
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
}

p {
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--ink-muted);
  max-width: 36rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.eyebrow-dark {
  background: transparent;
  color: var(--accent);
  box-shadow: none;
  padding: 0;
  border: none;
  margin-bottom: 0.5rem;
}

/* Reveal — без JS контент виден сразу */
.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: var(--safe-top);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  border-bottom: 1px solid transparent;
}

body.nav-open {
  overflow: hidden;
}

.site-header.is-scrolled {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 32px rgba(18, 16, 22, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.65rem 0.85rem;
  min-height: 76px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  min-width: 0;
}

.header-address {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--ink-muted);
  max-width: 9.5rem;
}

.site-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.header-phone-block {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.1rem;
  line-height: 1.2;
  flex-shrink: 0;
  width: 11.75rem;
}

.header-phone {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

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

.header-phone-note {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  width: 100%;
}

.header-phone-line {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

@media (min-width: 901px) {
  .header-phone-block {
    display: flex;
  }
}

@media (min-width: 1000px) {
  .header-address {
    display: block;
  }
}

@media (max-width: 999px) {
  .header-address {
    display: none;
  }
}

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

.logo-link:hover .logo-img {
  transform: scale(1.03);
}

.site-nav ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.site-nav a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cart-link {
  position: relative;
  color: var(--ink);
  display: flex;
  padding: 0.55rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cart-link:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px var(--accent-soft);
  color: var(--accent);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px var(--accent-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s;
}

.nav-mobile-contacts {
  display: none;
}

@media (max-width: 900px) {
  :root {
    --header-h: 64px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0.5rem 0.65rem;
    min-height: var(--header-h);
  }

  .logo-link {
    grid-column: 1;
    grid-row: 1;
  }

  .header-brand {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
  }

  .header-brand .header-address {
    display: none;
  }

  .logo-img {
    height: 38px;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
  }

  .nav-toggle {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    margin-left: 0;
  }

  .nav-toggle[aria-expanded='true'] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded='true'] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    position: static;
    inset: auto;
    display: none;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.65rem;
    box-shadow: var(--shadow);
    max-height: min(70vh, calc(100dvh - var(--header-h) - var(--safe-top) - 1rem));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.1rem;
  }

  .site-nav a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .nav-mobile-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
  }

  .nav-mobile-phone {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--ink);
    text-decoration: none;
  }

  .nav-mobile-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
  }

  .nav-mobile-note {
    margin: 0;
    font-size: 0.78rem;
    color: var(--ink-muted);
    line-height: 1.4;
  }

  .nav-mobile-contacts {
    display: flex;
  }

  .header-actions .btn-sm {
    display: none;
  }

  .header-phone-note {
    display: none;
  }

  .header-phone-block {
    width: auto;
  }

  .header-phone {
    font-size: 0.78rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.25s, background 0.25s, color 0.2s;
}

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

.btn-primary {
  background: linear-gradient(180deg, #ff6e0a 0%, #ff4500 48%, #ff5500 100%);
  color: #fff;
  box-shadow: var(--btn-shadow);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  color: #fff;
  background: linear-gradient(180deg, #ff8018 0%, #ff5500 50%, #ff6a0a 100%);
  box-shadow: 0 6px 0 #d94400, 0 18px 44px rgba(255, 69, 0, 0.55);
  transform: translateY(-3px);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 #d94400, 0 8px 24px rgba(255, 69, 0, 0.4);
}

.btn-lg {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s;
}

.btn-glow:hover::after {
  transform: translateX(120%);
}

.btn-glass,
.btn-ghost {
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.btn-glass:hover,
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff;
}

.btn-white {
  background: #fff;
  color: var(--accent);
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 85, 0, 0.25);
}

.btn-outline-orange {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-weight: 800;
}

.btn-outline-orange:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--btn-shadow);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

.btn-block {
  width: 100%;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}

.link-arrow::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3.5rem, 9vw, 6rem);
  overflow: hidden;
}

.hero--airy {
  min-height: min(88vh, 920px);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
}

.hero-glow-1 {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  background: rgba(255, 140, 80, 0.2);
  top: -15%;
  right: -5%;
}

.hero-glow-2 {
  width: min(380px, 55vw);
  height: min(380px, 55vw);
  background: rgba(255, 210, 150, 0.25);
  bottom: 0;
  left: -8%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  grid-template-areas:
    'intro visual'
    'body visual';
  gap: clamp(1.25rem, 3vw, 2rem) clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.hero-intro {
  grid-area: intro;
}

.page-home .hero-intro h1 {
  max-width: none;
  text-wrap: unset;
  white-space: nowrap;
  font-size: clamp(1.05rem, 2.6vw + 0.75rem, 3.65rem);
}

.page-home .hero-intro h1 em {
  white-space: nowrap;
}

.hero-body {
  grid-area: body;
}

.hero-visual {
  grid-area: visual;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-lead {
  margin-top: 1.5rem;
  max-width: 34rem;
  font-size: clamp(1.02rem, 1.8vw, 1.12rem);
  line-height: 1.75;
  color: var(--ink-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.hero-stats span {
  font-size: 0.82rem;
  color: var(--ink-muted);
  max-width: 10rem;
}

.hero-tags {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  max-width: 100%;
}

.hero-tags .tag {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.82rem;
  padding: 0.5rem 0.95rem;
}

.hero-photo-frame {
  position: relative;
  width: min(100%, 440px);
  padding: 1.25rem;
  border-radius: calc(var(--radius-lg) + 8px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 85, 0, 0.12);
  box-shadow:
    0 24px 64px rgba(255, 100, 40, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  backdrop-filter: blur(12px);
}

.hero-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  background: #fff;
}

.hero-photo-badge {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero-photo-badge-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-photo-badge-sub {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  color: var(--ink-muted);
  backdrop-filter: blur(6px);
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .page-home .hero--airy {
    padding: calc(var(--header-h) + 0.65rem) 0 clamp(1.75rem, 5vw, 2.5rem);
    min-height: auto;
    display: block;
  }

  .page-home .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      'intro'
      'visual'
      'body';
    gap: 1rem;
    align-items: stretch;
  }

  .page-home .hero-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    min-width: 0;
    gap: 0.55rem;
  }

  .page-home .hero-intro .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    padding: 0.38rem 0.8rem;
  }

  .page-home .hero-intro h1 {
    line-height: 1.06;
    margin: 0;
    font-size: clamp(1rem, 4.2vw + 0.35rem, 2.4rem);
  }

  .page-home .hero-lead {
    margin: 0;
    padding: 0 0.15rem;
    font-size: 0.94rem;
    line-height: 1.62;
    max-width: 34rem;
  }

  .page-home .hero-visual {
    align-self: center;
    width: 100%;
    padding: 0.15rem 0 0.35rem;
  }

  .page-home .hero-photo-frame {
    width: min(88vw, 300px);
    margin-inline: auto;
    padding: 0.7rem;
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 232, 0.9));
    border: 1px solid rgba(255, 85, 0, 0.1);
    box-shadow:
      0 18px 44px rgba(255, 100, 40, 0.14),
      0 1px 0 rgba(255, 255, 255, 0.85) inset;
  }

  .page-home .hero-photo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    margin: 0;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 72%;
    border-radius: 16px;
  }

  .page-home .hero-photo-badge {
    position: static;
    margin-top: 0.65rem;
    width: 100%;
    padding: 0.6rem 0.75rem;
    text-align: center;
    border-radius: 12px;
    background: rgba(255, 252, 248, 0.92);
  }

  .page-home .hero-photo-badge-title {
    font-size: 1.05rem;
  }

  .page-home .hero-photo-badge-sub {
    font-size: 0.72rem;
  }

  .page-home .hero-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    width: 100%;
    min-width: 0;
    gap: 0.85rem;
    margin-top: 0.15rem;
    padding: 1rem 0.85rem 0.9rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 240, 0.45));
    border: 1px solid rgba(255, 85, 0, 0.08);
    box-shadow: 0 10px 28px rgba(255, 85, 0, 0.06);
  }

  .page-home .hero-body .hero-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    margin: 0;
    gap: 0.55rem;
  }

  .page-home .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .page-home .hero-actions .btn-lg {
    padding: 0.9rem 1.15rem;
    font-size: 0.98rem;
  }

  .page-home .hero-body .hero-stats {
    margin: 0;
  }

  .page-home .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.25rem;
    width: 100%;
    margin: 0;
    padding: 0.7rem 0.35rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 85, 0, 0.07);
    list-style: none;
  }

  .page-home .hero-stats li {
    position: relative;
    align-items: center;
    text-align: center;
    padding: 0.15rem 0.2rem;
  }

  .page-home .hero-stats li + li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: rgba(255, 85, 0, 0.14);
  }

  .page-home .hero-stats span {
    max-width: none;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .page-home .hero-stats strong {
    font-size: clamp(1.2rem, 4.8vw, 1.5rem);
  }

  .page-home .hero-tags,
  .page-home .palette-strip {
    justify-content: flex-start;
    align-self: stretch;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0.25rem 0 0.15rem;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }

  .page-home .palette-strip {
    gap: 0.5rem;
  }

  .page-home .hero-tags::-webkit-scrollbar,
  .page-home .palette-strip::-webkit-scrollbar {
    display: none;
  }

  .page-home .hero-glow-1 {
    top: -28%;
    right: -40%;
    opacity: 0.45;
    filter: blur(64px);
  }

  .page-home .hero-glow-2 {
    left: -35%;
    bottom: 5%;
    opacity: 0.35;
    filter: blur(56px);
  }
}

/* Marquee */
.marquee {
  border-block: none;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  overflow: hidden;
  padding: 1rem 0;
  box-shadow: 0 8px 32px var(--accent-glow);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

.marquee-track span::after {
  content: '·';
  margin-left: 3rem;
  opacity: 0.4;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Stats */
.stats {
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, var(--accent), var(--accent-3));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.stat:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-top: 0.35rem;
}

@media (max-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SEO block */
.section-seo {
  padding: var(--space-section) 0;
  background: #fff;
  border-top: 1px solid rgba(255, 85, 0, 0.08);
}

.seo-block {
  max-width: 48rem;
}

.seo-block h2 {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin-bottom: 1.25rem;
}

.seo-text {
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.seo-text p {
  margin: 0 0 1.15rem;
}

.seo-text h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
  letter-spacing: 0;
}

.seo-text strong {
  color: var(--ink);
  font-weight: 700;
}

/* Sections */
.section {
  padding: var(--space-section) 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.section-lead {
  margin-top: 0.5rem;
}

.section-catalog {
  position: relative;
  background: transparent;
}

.section-catalog::before {
  display: none;
}

.section-benefits {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-block: 1px solid var(--line);
}

.section-benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--benefits-bg, transparent) center/cover no-repeat;
  opacity: var(--benefits-bg-opacity, 0.14);
  pointer-events: none;
}

.section-benefits > .container {
  position: relative;
  z-index: 1;
}

.benefits-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .benefits-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .section-benefits .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(255, 85, 0, 0.14);
  border-color: rgba(255, 85, 0, 0.35);
  color: inherit;
}

.product-card-thumb {
  aspect-ratio: 0.92;
  display: grid;
  place-items: stretch;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.product-card-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, var(--card-glow, rgba(255, 127, 0, 0.18)), transparent 70%);
  opacity: 0.8;
  transition: opacity 0.4s;
}

.product-card:hover .product-card-thumb::before {
  opacity: 1;
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  color: var(--ink-muted);
}

.product-card-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 72%;
}

.product-card-thumb:has(.product-card-img)::before {
  opacity: 0;
}

.product-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 1 1 auto;
  min-height: clamp(280px, 48vh, 520px);
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 70%;
}

.product-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem 1rem;
  flex-shrink: 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}

.product-thumb-btn {
  padding: 0;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  width: 72px;
  height: 72px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-thumb-btn.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.product-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-shape {
  position: relative;
  z-index: 1;
  width: 52%;
  aspect-ratio: 0.65;
  border-radius: 50% 50% 18% 18%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-card-shape {
  transform: translateY(-8px) scale(1.03);
}

.product-card-cta {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  background: rgba(18, 16, 22, 0.45);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  backdrop-filter: blur(4px);
}

.product-card:hover .product-card-cta {
  opacity: 1;
}

.product-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--paper-2));
}

.product-card-body h3,
.product-card-title {
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.35rem;
}

.product-card-shape--fallback[hidden],
.product-shape--fallback[hidden] {
  display: none !important;
}

.product-card-shape--fallback:not([hidden]),
.product-shape--fallback:not([hidden]) {
  display: block;
}

.product-price-wrap {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
}

.product-price-wrap--lg {
  margin-bottom: 0.5rem;
}

.product-price {
  font-weight: 800;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product-price--lg {
  font-size: 1.5rem;
}

.product-price-old {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: line-through;
}

.product-card-delivery {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}

.product-delivery-note {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

.product-card-thumb--wb-bright {
  background: linear-gradient(180deg, #fff8f0 0%, #fdebd0 100%);
}

.product-card-thumb--wb-bright .product-card-img {
  object-position: center 30%;
  transform: scale(1.06);
}

.product-card-thumb--wb-bright::before {
  opacity: 0 !important;
}

.product-meta {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: -0.25rem 0 0.75rem;
}

/* CTA banner */
.cta-banner {
  padding: 0 0 var(--space-section);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, #1a1410 0%, #5c3208 42%, var(--accent) 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -80px;
  right: -60px;
}

.cta-inner h2 {
  color: #fff;
  margin-bottom: 0.35rem;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 28rem;
}

/* Info cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.info-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.35s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: #fff;
}

.info-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(255, 185, 130, 0.35));
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.info-card h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
}

.info-card p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin: 0;
}

/* Product page */
.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding: 2rem 0 3rem;
  align-items: start;
}

.product-gallery {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
}

.product-shape {
  width: 48%;
  aspect-ratio: 0.65;
  border-radius: 50% 50% 18% 18%;
  box-shadow: var(--shadow-lg);
  animation: boot-float 6s ease-in-out infinite;
}

.size-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.size-btn {
  min-width: 4.2rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s var(--ease);
}

.size-btn:hover {
  border-color: var(--accent);
}

.size-btn.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 6px 16px var(--accent-glow);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.qty-control button {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--paper-2);
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.2s;
}

.qty-control button:hover {
  background: var(--accent-soft);
}

.qty-control input {
  width: 52px;
  text-align: center;
  border: none;
  border-inline: 1px solid var(--line);
  font: inherit;
  font-weight: 600;
}

.feature-list {
  padding: 0;
  list-style: none;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.feature-list li {
  padding: 0.65rem 1rem 0.65rem 2.25rem;
  position: relative;
  background: var(--paper-2);
  border-radius: 10px;
  font-size: 0.92rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
}

.product-specs {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: none;
}

.product-specs-title {
  margin: 0;
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  transition: border-color 0.2s, color 0.2s;
}

.product-specs-title::-webkit-details-marker {
  display: none;
}

.product-specs-title::after {
  content: '+';
  float: right;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.product-specs[open] .product-specs-title {
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom-color: transparent;
  color: var(--accent);
}

.product-specs[open] .product-specs-title::after {
  content: '−';
}

.product-specs-list {
  margin: 0;
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  background: var(--paper-2);
}

.product-specs-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  line-height: 1.45;
}

.product-specs-row:last-child {
  border-bottom: none;
}

.product-specs-row dt {
  margin: 0;
  color: var(--ink-muted);
  font-weight: 500;
}

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

@media (max-width: 480px) {
  .product-specs-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .product-specs-row dd {
    text-align: left;
  }
}

.product-panel {
  padding: 1.75rem;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.product-panel .eyebrow {
  margin-bottom: 0.75rem;
}

@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  .product-photo {
    min-height: min(72vw, 360px);
  }
}

/* Cart */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr min(400px, 100%);
  gap: 2rem;
  padding: 2rem 0 3rem;
  align-items: start;
}

.cart-lines {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-lines-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-head {
  margin-bottom: 1.25rem;
}

.cart-head-lead {
  margin: 0.35rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.cart-motivation {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.08), rgba(255, 188, 0, 0.12));
  border: 1px solid rgba(255, 85, 0, 0.2);
}

.cart-motivation-title {
  margin: 0 0 0.35rem;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
}

.cart-motivation-text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.cart-order-nudge {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--line);
}

.cart-order-nudge-title {
  margin: 0 0 0.35rem;
  font-weight: 800;
  font-size: 1rem;
}

.cart-order-nudge p:last-child {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.cart-summary-note {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.cart-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.cart-actions-order {
  margin-left: auto;
}

.cart-items-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-align: center;
}

.cart-upsell,
.cart-continue {
  margin-top: 0.5rem;
  padding: 1.15rem;
  border-radius: var(--radius);
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.cart-upsell-title {
  margin: 0 0 0.25rem;
  font-weight: 800;
  font-size: 0.95rem;
}

.cart-upsell-lead,
.cart-continue-text {
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.cart-upsell-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.cart-upsell-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem 0.45rem 0.45rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cart-upsell-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px var(--accent-soft);
  color: var(--accent);
}

.cart-upsell-card img,
.cart-upsell-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-empty-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.cart-empty-text {
  max-width: 28rem;
  margin: 0 auto 1.25rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cart-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.checkout-form-title {
  margin: 0;
  font-size: 1.1rem;
  font-family: var(--font);
}

.checkout-form-lead {
  margin: 0 0 0.25rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.checkout-form-note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.35;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: start;
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}

.cart-line:hover {
  box-shadow: var(--shadow);
}

.cart-line-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cart-line-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

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

.cart-line-title {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.cart-line-title:hover {
  color: var(--accent);
}

.cart-line-media {
  display: block;
  text-decoration: none;
  border-radius: 16px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.cart-line-media:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.cart-line-meta {
  display: block;
  margin-top: 0.2rem;
  color: var(--ink-muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.cart-line-price {
  flex-shrink: 0;
  font-size: 1.05rem;
  white-space: nowrap;
}

.cart-line-footer {
  margin: 0;
}

.cart-line-footer.qty-row {
  margin: 0;
}

.cart-line-footer .qty-control .qty-value {
  padding: 0 0.75rem;
  font-weight: 700;
}

.cart-line-swatch,
.cart-line-thumb {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  overflow: hidden;
  background: var(--paper-2);
}

.cart-line-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 96px;
}

.cart-summary {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.cart-aside .checkout-form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.cart-total {
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  font: inherit;
  font-size: 16px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.checkout-form textarea {
  min-height: 88px;
  resize: vertical;
}

#checkout-form {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

body.page-cart .cart-main,
body.page-cart .cart-aside,
body.page-cart .cart-lines,
body.page-cart .cart-line-main {
  min-width: 0;
  max-width: 100%;
}

body.page-cart .checkout-form input,
body.page-cart .checkout-form select,
body.page-cart .checkout-form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

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

.cart-mobile-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: min(1180px, calc(100% - clamp(1.5rem, 6vw, 3rem)));
  margin-inline: auto;
}

.cart-mobile-bar-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cart-mobile-bar-sum {
  font-size: 1.15rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cart-mobile-bar-btn {
  flex-shrink: 0;
  padding: 0.75rem 1.15rem;
  font-size: 0.92rem;
  white-space: nowrap;
}

.empty-state {
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--ink-muted);
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .footer-map-block {
    grid-template-columns: 1fr;
  }

  .product-card-cta {
    opacity: 1;
    background: linear-gradient(180deg, rgba(255, 85, 0, 0.22), rgba(255, 69, 0, 0.38));
    font-size: 0.78rem;
  }

  body.has-fab main {
    padding-bottom: calc(5rem + var(--safe-bottom));
  }

  body.has-fab .toast {
    bottom: calc(5rem + var(--safe-bottom));
  }

  .site-footer {
    padding-bottom: calc(2rem + var(--safe-bottom));
  }
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: minmax(0, 1fr);
    padding: 1rem 0 2rem;
    gap: 1.25rem;
  }

  .cart-aside {
    position: static;
    min-width: 0;
  }

  body.page-cart #fab-stack {
    display: none;
  }

  body.page-cart .cart-head {
    margin-bottom: 0.65rem;
  }

  body.page-cart .cart-head h1 {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  body.page-cart .cart-head-lead {
    font-size: 0.88rem;
  }

  body.page-cart .cart-motivation {
    padding: 0.75rem 0.85rem;
  }

  body.page-cart .cart-motivation-title {
    font-size: 0.92rem;
  }

  body.page-cart .cart-motivation-text {
    font-size: 0.82rem;
  }

  body.page-cart .cart-lines,
  body.page-cart .cart-lines-list {
    gap: 0.65rem;
  }

  body.page-cart .cart-line {
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-areas:
      'thumb info'
      'actions actions';
    gap: 0.5rem 0.65rem;
    padding: 0.75rem;
    align-items: start;
  }

  body.page-cart .cart-line-main {
    display: contents;
  }

  body.page-cart .cart-line-header {
    grid-area: info;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    min-width: 0;
  }

  body.page-cart .cart-line-footer {
    grid-area: actions;
    grid-column: 1 / -1;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.45rem;
    border-top: 1px dashed rgba(255, 85, 0, 0.14);
  }

  body.page-cart .cart-line-thumb,
  body.page-cart .cart-line-swatch {
    grid-area: thumb;
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  body.page-cart .cart-line-title {
    font-size: 0.9rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  body.page-cart .cart-line-meta {
    font-size: 0.76rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  body.page-cart .cart-line-price {
    font-size: 1rem;
    white-space: normal;
  }

  body.page-cart .cart-line-footer .qty-control button {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  body.page-cart .cart-line-footer .qty-value {
    padding: 0 0.55rem;
    font-size: 0.92rem;
  }

  body.page-cart .cart-line-remove {
    margin-left: 0;
    flex-shrink: 0;
    padding: 0.4rem 0.55rem;
    font-size: 0.76rem;
    min-height: 38px;
  }

  body.page-cart .cart-upsell,
  body.page-cart .cart-continue {
    padding: 0.85rem;
  }

  body.page-cart .cart-upsell-title {
    font-size: 0.88rem;
  }

  body.page-cart .cart-upsell-lead,
  body.page-cart .cart-continue-text {
    font-size: 0.8rem;
    margin-bottom: 0.65rem;
  }

  body.page-cart .cart-upsell-grid {
    flex-direction: column;
    align-items: stretch;
  }

  body.page-cart .cart-upsell-card {
    border-radius: var(--radius);
    justify-content: flex-start;
  }

  body.page-cart .cart-actions-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  body.page-cart .cart-actions-row .btn {
    width: 100%;
    justify-content: center;
  }

  body.page-cart .cart-actions-order {
    display: none;
  }

  body.page-cart .cart-items-note {
    font-size: 0.78rem;
    line-height: 1.4;
    text-align: left;
  }

  body.page-cart .cart-summary,
  body.page-cart .cart-aside .checkout-form {
    padding: 1rem;
    border-radius: var(--radius);
  }

  body.page-cart .cart-total {
    font-size: 1.2rem;
  }

  body.page-cart .cart-summary-note {
    font-size: 0.78rem;
  }

  body.page-cart .checkout-form-title {
    font-size: 1rem;
  }

  body.page-cart .checkout-form-lead {
    font-size: 0.82rem;
  }

  body.page-cart .checkout-form .btn-block {
    padding: 0.95rem 1.15rem;
    font-size: 0.95rem;
  }

  body.page-cart .checkout-form select {
    padding-right: 2rem;
  }

  body.page-cart .cart-empty-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body.page-cart .cart-empty-actions .btn {
    width: 100%;
  }

  body.page-cart.has-cart-bar .cart-layout {
    padding-bottom: calc(5.25rem + var(--safe-bottom));
  }

  body.page-cart.has-cart-bar .toast {
    bottom: calc(5.25rem + var(--safe-bottom));
  }

  .cart-mobile-bar:not([hidden]) {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 115;
    padding: 0.65rem max(1rem, var(--safe-left)) calc(0.65rem + var(--safe-bottom)) max(1rem, var(--safe-right));
    background: rgba(255, 252, 248, 0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 36px rgba(255, 85, 0, 0.1);
  }
}

/* Content pages */
.page-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2rem);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--paper-3), transparent);
  z-index: -1;
}

.page-hero h1 {
  max-width: 14ch;
}

.page-content {
  padding: 2rem 0 4rem;
  max-width: 720px;
}

.page-content.wide {
  max-width: none;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.prose ul {
  padding-left: 1.25rem;
}

/* Footer */
.site-footer {
  margin-top: auto;
  position: relative;
  background: var(--ink);
  color: #f8f4f6;
  padding: 4rem 0 1.75rem;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 127, 0, 0.38), transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.35rem;
  font-style: italic;
}

.footer-muted {
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  font-size: 0.92rem;
}

.footer-heading {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-map-block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map-address {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.footer-map-hours {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-map-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-map-frame {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}

.footer-map-open {
  align-self: flex-end;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-map-open:hover {
  color: var(--accent-3);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-map-block {
    grid-template-columns: 1fr;
    padding: 1.15rem;
  }

  .footer-map-frame {
    height: min(45vw, 200px);
  }

  .footer-map-links {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-map-link {
    justify-content: center;
  }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.35rem;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: 0.35s var(--ease);
  z-index: 200;
  pointer-events: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 127, 0, 0.45);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}

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

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

[hidden] {
  display: none !important;
}

.page-catalog .page-hero {
  text-align: center;
}

.page-catalog .page-hero h1 {
  max-width: none;
  margin-inline: auto;
}

.page-catalog .page-hero .eyebrow {
  display: block;
}

.page-catalog .page-hero .lead {
  margin-inline: auto;
  max-width: 36rem;
}

.page-catalog .catalog-cart-btn {
  margin-top: 1rem;
}

.catalog-manager-block {
  margin-top: 2rem;
  text-align: center;
}

.catalog-manager-block .manager-card {
  margin-inline: auto;
  max-width: 36rem;
  text-align: center;
}

.catalog-manager-block .manager-card-title {
  text-align: center;
}

.catalog-manager-block .messenger-links {
  justify-content: center;
}

.page-wholesale .page-hero {
  text-align: center;
}

.page-wholesale .page-hero h1 {
  max-width: none;
  margin-inline: auto;
}

.page-wholesale .page-hero .lead {
  margin-inline: auto;
  max-width: 36rem;
}

.page-wholesale .page-content {
  max-width: 720px;
  margin-inline: auto;
}

body[data-page="contacts"] .page-hero .container {
  text-align: center;
}

body[data-page="contacts"] .page-hero .lead {
  margin-inline: auto;
}

body[data-page="contacts"] .page-content.prose {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

body[data-page="contacts"] .page-content.prose ul {
  display: inline-block;
  text-align: left;
  margin-inline: auto;
}

/* ——— Modern blocks ——— */

.section-bento {
  padding: clamp(1.25rem, 4vw, 2.25rem) 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(118px, auto);
  gap: 0.75rem;
}

.bento-card {
  position: relative;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  min-height: 118px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bento-card h3 {
  font-family: var(--font);
  font-size: 1.12rem;
  font-weight: 800;
  margin: 0;
  position: relative;
  z-index: 1;
}

.bento-card p {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink-muted);
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 36ch;
}

.bento-card .bento-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.12;
  color: var(--accent);
}

.bento-large {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 0;
  background: linear-gradient(145deg, #ff5500 0%, #ff8a00 60%, #ffbc00 100%);
  color: #fff;
}

.bento-large h3,
.bento-large p {
  color: #fff;
}

.bento-large p {
  opacity: 0.92;
}

.bento-large .bento-num {
  color: #fff;
  opacity: 0.2;
}

.bento-wide {
  grid-column: span 5;
  background: #fff;
  border: 2px solid var(--line);
}

.bento-tall {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 0;
  background: linear-gradient(180deg, #fff 0%, var(--paper-3) 100%);
  border: 2px solid var(--line);
}

.bento-small {
  grid-column: span 3;
  background: #fff;
  border: 2px solid var(--line);
}

.bento-accent {
  grid-column: span 3;
  min-height: 0;
  background: var(--accent);
  color: #fff;
}

.bento-accent h3,
.bento-accent p {
  color: #fff;
}

.bento-accent p {
  opacity: 0.9;
}

.bento-stars {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #ffb800;
  line-height: 1;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-large,
  .bento-wide,
  .bento-tall,
  .bento-small,
  .bento-accent {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 0;
  }

  .bento-large {
    min-height: 0;
  }
}

/* Steps */
.section-steps {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: linear-gradient(180deg, var(--paper-2), #fff);
}

.steps-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 1.5rem 1.25rem 1.25rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--line);
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px var(--accent-glow);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.step-card h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: 0;
}

@media (max-width: 800px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Color palette strip */
.palette-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.palette-dot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem 0.4rem 0.4rem;
  background: #fff;
  border-radius: 999px;
  border: 2px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 0.25s, border-color 0.25s;
}

.palette-dot:hover {
  transform: scale(1.05);
  border-color: var(--accent);
}

.palette-dot span:first-child {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.section-head .link-arrow {
  padding: 0.65rem 1.2rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: 999px;
  box-shadow: var(--btn-shadow);
}

.section-head .link-arrow::after {
  filter: brightness(10);
}

.section-head .link-arrow:hover {
  transform: translateY(-2px);
  color: #fff !important;
}

.info-card {
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.info-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
}

.info-card:hover {
  border-color: var(--accent);
}

.info-icon {
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 16px var(--accent-glow);
}

.cta-inner {
  background: linear-gradient(125deg, #ff4500 0%, #ff6a00 35%, #ff9500 70%, #ffbc00 100%);
}

.page-hero {
  background: linear-gradient(180deg, var(--paper-3) 0%, transparent 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
}

.site-nav a.is-active,
.site-nav a[aria-current='page'] {
  background: var(--accent-soft);
  color: var(--accent);
}

.cart-link {
  border: 2px solid var(--line);
}

.cart-link:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.product-card-cta {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(255, 85, 0, 0.85), rgba(255, 69, 0, 0.95));
}

/* ——— Responsive: phones & tablets ——— */

@media (max-width: 768px) {
  .section {
    padding: clamp(2.25rem, 6vw, 3.5rem) 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .section-head .link-arrow {
    align-self: stretch;
    justify-content: center;
    text-align: center;
  }

  .section-lead,
  .lead {
    font-size: 1.05rem;
  }

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

  .product-card {
    border-width: 1px;
    border-radius: var(--radius);
    border-color: rgba(255, 85, 0, 0.12);
  }

  .product-card:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(255, 85, 0, 0.08);
  }

  .product-card-thumb {
    aspect-ratio: 1;
  }

  .product-card-thumb::before {
    opacity: 0.3;
  }

  .product-card-thumb:has(.product-card-img)::before {
    opacity: 0.18;
  }

  .product-card-badge {
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.58rem;
    padding: 0.25rem 0.48rem;
  }

  .product-card-body {
    padding: 0.6rem 0.7rem 0.75rem;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 240, 224, 0.22) 100%);
    border-top-color: rgba(255, 85, 0, 0.08);
  }

  .product-card-title {
    font-size: 0.88rem;
    margin-bottom: 0.12rem;
    line-height: 1.28;
  }

  .product-price {
    font-size: 0.92rem;
  }

  .product-price-old {
    font-size: 0.75rem;
  }

  .product-card-cta {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    background: linear-gradient(180deg, rgba(255, 85, 0, 0.18), rgba(255, 69, 0, 0.32));
    backdrop-filter: blur(2px);
  }

  .product-card-shape {
    opacity: 0.42;
  }

  .cta-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.75rem 1.35rem;
  }

  .cta-inner p {
    max-width: none;
  }

  .cta-inner .btn {
    width: 100%;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .benefits-intro .btn {
    width: 100%;
    justify-content: center;
  }

  .steps-header {
    margin-bottom: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .page-hero h1 {
    max-width: none;
  }

  .page-content {
    padding: 1.5rem 0 3rem;
  }

  .toast {
    left: calc(1rem + var(--safe-left));
    right: calc(1rem + var(--safe-right));
    bottom: calc(1rem + var(--safe-bottom));
    max-width: none;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .page-home .hero--airy {
    padding-top: calc(var(--header-h) + 0.4rem);
    padding-bottom: 1.5rem;
  }

  .page-home .hero-grid {
    gap: 0.85rem;
  }

  .page-home .hero-intro h1 {
    font-size: clamp(0.95rem, 3.9vw + 0.3rem, 2rem);
  }

  .page-home .hero-lead {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .page-home .hero-photo-frame {
    width: min(84vw, 280px);
    padding: 0.6rem;
    border-radius: 20px;
  }

  .page-home .hero-photo {
    border-radius: 14px;
  }

  .page-home .hero-body {
    padding: 0.85rem 0.7rem 0.75rem;
    border-radius: var(--radius);
  }

  .page-home .hero-stats strong {
    font-size: 1.15rem;
  }

  .page-home .hero-stats span {
    font-size: 0.62rem;
  }

  .hero {
    padding-top: clamp(0.5rem, 2vw, 1rem);
    padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
  }

  .tag {
    font-size: 0.72rem;
    padding: 0.4rem 0.75rem;
  }

  .palette-strip {
    gap: 0.45rem;
    margin-top: 1.25rem;
  }

  .palette-dot {
    font-size: 0.7rem;
    padding: 0.3rem 0.65rem 0.3rem 0.3rem;
  }

  .palette-dot span:first-child {
    width: 24px;
    height: 24px;
  }

  .marquee {
    padding: 0.75rem 0;
  }

  .marquee-track {
    font-size: 1.15rem;
    gap: 2rem;
  }

  .marquee-track span::after {
    margin-left: 2rem;
  }

  .btn-lg {
    padding: 1rem 1.35rem;
    font-size: 1rem;
  }

  .eyebrow {
    font-size: 0.65rem;
    padding: 0.4rem 0.85rem;
    letter-spacing: 0.1em;
  }

  .bento-card {
    min-height: 140px;
    padding: 1.25rem 1.35rem;
  }

  .bento-card .bento-num {
    font-size: 2.75rem;
  }

  .qty-row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .site-footer {
    padding: 3rem 0 calc(1.5rem + var(--safe-bottom));
  }

  .product-grid {
    gap: 0.55rem;
  }

  .product-card-thumb {
    aspect-ratio: 1.08;
  }

  .product-card-body {
    padding: 0.48rem 0.52rem 0.58rem;
  }

  .product-card-title {
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card-thumb:has(.product-card-img)::before {
    opacity: 0.12;
  }
}

@media (max-width: 540px) {
  body.page-cart .cart-line {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 0.65rem;
  }

  body.page-cart .cart-line-thumb,
  body.page-cart .cart-line-swatch {
    width: 48px;
    height: 48px;
  }

  body.page-cart .cart-line-footer {
    flex-wrap: wrap;
  }

  body.page-cart .cart-line-remove {
    width: 100%;
    justify-content: center;
  }

  .product-panel {
    padding: 1.15rem 1rem;
  }

  .breadcrumb {
    font-size: 0.8rem;
    overflow-wrap: anywhere;
  }

  .product-photo {
    min-height: min(65vw, 280px);
  }

  .checkout-form .btn-block {
    font-size: 0.92rem;
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 380px) {
  .header-inner {
    gap: 0.4rem;
  }

  .palette-dot span:not(:first-child) {
    display: none;
  }

  .palette-dot {
    padding: 0.35rem;
    border-radius: 50%;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn,
  .site-nav a,
  .nav-toggle,
  .cart-link,
  .fab-cart,
  .qty-control button {
    min-height: 44px;
  }

  .fab-cart {
    min-width: 48px;
  }

  .product-card-cta {
    opacity: 1;
  }

  .product-card:hover {
    transform: none;
  }

  .stat:hover,
  .bento-card:hover,
  .step-card:hover,
  .info-card:hover {
    transform: none;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .site-nav a {
    font-size: 0.82rem;
    padding: 0.45rem 0.65rem;
  }

  .header-actions .btn-sm {
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }
}

/* —— Менеджер: полоска, FAB, карточка —— */
#contact-bar-slot,
.contact-bar {
  display: none !important;
}

#contact-bar-slot {
  position: relative;
  z-index: 120;
}

.contact-bar {
  background: linear-gradient(90deg, #1a120c 0%, #2d2218 100%);
  color: #fff9f4;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 138, 0, 0.35);
}

.contact-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  padding: 0.45rem 0;
  min-height: 2.25rem;
}

.contact-bar-label {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-3);
  font-size: 0.7rem;
}

.contact-bar-link {
  color: inherit;
  text-decoration: none;
  opacity: 0.92;
  transition: color 0.2s var(--ease);
}

.contact-bar-link:hover {
  color: var(--accent-2);
}

.contact-bar-link--wa {
  color: #7dffb0;
  font-weight: 600;
}

.contact-bar-hours {
  margin-left: auto;
  opacity: 0.75;
  font-size: 0.72rem;
}

@media (max-width: 640px) {
  .contact-bar-hours {
    display: none;
  }

  .contact-bar-inner {
    justify-content: center;
  }
}

#fab-stack {
  position: fixed;
  z-index: 110;
  right: max(1rem, var(--safe-right));
  bottom: max(1.25rem, var(--safe-bottom));
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  pointer-events: none;
}

#fab-stack > * {
  pointer-events: auto;
}

.fab-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 28px var(--accent-glow);
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.fab-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--accent-glow);
  color: #fff;
}

.fab-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.manager-card {
  margin-top: 2rem;
  padding: clamp(1.25rem, 4vw, 1.75rem);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--paper-2), var(--paper-3));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.manager-card--compact {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
}

.manager-card-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.manager-card-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
}

.manager-card--compact .manager-card-title {
  font-size: 1.15rem;
  font-family: var(--font);
}

.manager-card-text {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.manager-card-phone {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.manager-card-phone a {
  color: var(--ink);
  text-decoration: none;
}

.manager-card-phone a:hover {
  color: var(--accent);
}

.messenger-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.messenger-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.messenger-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  color: #fff;
}

.messenger-btn-icon {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.messenger-btn-label {
  line-height: 1.1;
}

.messenger-btn--viber {
  background: linear-gradient(145deg, #8b7cf6, #665cec);
}

.messenger-btn--wa {
  background: linear-gradient(145deg, #34d058, #128c7e);
}

.messenger-btn--tg {
  background: linear-gradient(145deg, #54b3f3, #229ed9);
}

.manager-card-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--ink-muted);
  display: grid;
  gap: 0.35rem;
  justify-items: center;
}

.manager-card-meta a {
  color: var(--accent);
}

.manager-card-note {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

body:has(.contact-bar) .site-header {
  top: 0;
}

.site-load-error {
  position: sticky;
  top: 0;
  z-index: 200;
  margin: 0;
  padding: 0.75rem 1rem;
  background: #fef3f2;
  color: #b42318;
  border-bottom: 1px solid #fecdca;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.cart-success {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.cart-success .btn {
  margin-top: 0.25rem;
}

.wholesale-pricelist {
  margin: 0 0 2rem;
}

.wholesale-lead-card {
  margin: 1.75rem 0 1.25rem;
  padding: clamp(1.35rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.wholesale-lead-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
}

.wholesale-lead-text {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.wholesale-inline-form {
  display: grid;
  gap: 1rem;
  max-width: 28rem;
}

.wholesale-inline-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
}

.wholesale-inline-form .field-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
}

.wholesale-inline-form input {
  font: inherit;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wholesale-inline-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.wholesale-inline-form .form-error {
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b42318;
  background: #fef3f2;
  border-radius: 10px;
  border: 1px solid #fecdca;
}
