:root {
  --bg: #f7f6f3;
  --bg-soft: #efede8;
  --ink: #141414;
  --mute: #6b6860;
  --line: rgba(20, 20, 20, 0.1);
  --accent: #1a5c54;
  --accent-light: #e8f2f0;
  --gold: #c49a3c;
  --white: #ffffff;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Syne", sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 20px 50px rgba(20, 20, 20, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; color: inherit; }
h1, h2, h3, .brand, .hero__tag {
  font-family: var(--display);
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.08;
}
.container { width: min(var(--max), calc(100% - 2.5rem)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 246, 243, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  min-height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { font-size: 1.12rem; font-weight: 700; }
.nav-desk { display: flex; gap: 1.5rem; }
.nav-desk a, .header-tools a, .mobile-nav a {
  font-size: 0.94rem; font-weight: 500; color: var(--mute);
  transition: color .2s var(--ease);
}
.nav-desk a:hover, .nav-desk a.is-on, .header-tools a:hover { color: var(--ink); }
.header-tools { display: flex; align-items: center; gap: 1.1rem; }
.cart-a span {
  display: inline-grid; place-items: center;
  min-width: 1.3rem; height: 1.3rem; margin-left: 0.25rem;
  font-size: 0.72rem; font-weight: 700;
  background: var(--ink); color: var(--white); border-radius: 50%;
}
.nav-burger {
  display: none; width: 38px; height: 38px; border: 0; background: transparent; padding: 9px; cursor: pointer;
}
.nav-burger span { display: block; height: 1.5px; background: var(--ink); margin: 6px 0; }
.mobile-nav { border-top: 1px solid var(--line); background: var(--bg); }

/* Buttons */
.btn-main, .btn-line, .btn-line-dark, .product__row button, .buy-form button, .form-panel button[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0.75rem 1.4rem;
  border: 1px solid transparent; border-radius: 4px;
  font-weight: 600; cursor: pointer;
  transition: all .25s var(--ease);
}
.btn-main, .form-panel button[type="submit"], .buy-form button {
  background: var(--ink); color: var(--white);
}
.btn-main:hover, .form-panel button[type="submit"]:hover, .buy-form button:hover {
  background: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow);
}
.btn-main--lg { min-height: 52px; padding: 0.85rem 1.6rem; font-size: 1rem; }
.btn-main--sm { min-height: 38px; padding: 0.5rem 1rem; font-size: 0.88rem; }
.btn-line {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4);
}
.btn-line:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-line-dark {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-line-dark:hover { border-color: var(--ink); }
.link-quiet { font-weight: 600; color: var(--mute); border-bottom: 1px solid transparent; }
.link-quiet:hover { color: var(--accent); border-color: var(--accent); }

/* Hero */
.hero {
  position: relative; min-height: min(88vh, 720px);
  display: grid; align-items: center; color: #fff; overflow: hidden;
}
.hero__bg, .hero__veil { position: absolute; inset: 0; }
.hero__bg { background-size: cover; background-position: center; animation: drift 24s var(--ease) infinite alternate; }
.hero__veil {
  background:
    linear-gradient(105deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.45) 50%, rgba(10,10,10,0.2) 100%),
    linear-gradient(180deg, transparent, rgba(10,10,10,0.5));
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center;
  padding: 5rem 0 4rem;
}
.hero__tag {
  display: inline-block; margin-bottom: 1rem;
  padding: 0.35rem 0.75rem; border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
}
.hero h1 { margin: 0; max-width: 12ch; font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
.hero__lead { margin: 1rem 0 0; max-width: 30rem; color: rgba(255,255,255,0.82); font-size: 1.05rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.hero__stats {
  display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stats strong { display: block; font-family: var(--display); font-size: 1.5rem; }
.hero__stats span { font-size: 0.82rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.05em; }
.hero__card {
  background: rgba(255,255,255,0.95); color: var(--ink);
  padding: 1.5rem; border-radius: 8px; box-shadow: var(--shadow);
  animation: rise 1s var(--ease) 0.2s both;
}
.hero__card-label { margin: 0 0 1rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 700; }
.hero__card-link { display: block; }
.hero__card-link img { max-height: 200px; margin: 0 auto 1rem; object-fit: contain; }
.hero__card-link strong { display: block; font-size: 0.95rem; line-height: 1.35; margin-bottom: 0.5rem; }
.hero__card-price { font-size: 1.25rem; font-weight: 700; color: var(--accent); }

/* Trust bar */
.trust-bar { background: var(--ink); color: rgba(255,255,255,0.85); padding: 1.25rem 0; }
.trust-bar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.trust-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.trust-item__icon {
  font-family: var(--display); font-size: 0.75rem; font-weight: 700;
  color: var(--gold); opacity: 0.9; flex-shrink: 0;
}
.trust-item strong { display: block; font-size: 0.9rem; color: #fff; margin-bottom: 0.15rem; }
.trust-item span { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.35; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-soft { background: var(--bg-soft); }
.section-intro { margin-bottom: 2rem; max-width: 36rem; }
.section-intro.between {
  max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 1rem; flex-wrap: wrap;
}
.section-intro h2, .page-hero h1 { margin: 0 0 0.4rem; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.section-intro p, .page-hero p, .text-soft { color: var(--mute); }
.page-hero { padding: 2.5rem 0 0.5rem; }

/* Categories */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.cat-card {
  display: flex; flex-direction: column; gap: 0.3rem;
  padding: 1.4rem; background: var(--white); border: 1px solid var(--line);
  border-radius: 6px; transition: all .25s var(--ease);
}
.cat-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-card strong { font-family: var(--display); font-size: 1.02rem; }
.cat-card span { color: var(--mute); font-size: 0.85rem; }
.cat-card em { margin-top: auto; padding-top: 0.75rem; font-style: normal; font-size: 0.82rem; font-weight: 600; color: var(--accent); }

/* Products */
.product { display: flex; flex-direction: column; height: 100%; }
.product__media {
  position: relative; aspect-ratio: 1; background: var(--white);
  display: grid; place-items: center; padding: 1.25rem;
  border: 1px solid var(--line); border-radius: 6px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.product__badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  padding: 0.25rem 0.55rem; background: var(--gold); color: #fff;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 3px;
}
.product__media img { max-height: 200px; object-fit: contain; transition: transform .4s var(--ease); }
.product:hover .product__media { border-color: rgba(26,92,84,0.3); box-shadow: var(--shadow); }
.product:hover .product__media img { transform: scale(1.05); }
.product__info { padding: 0.95rem 0 0; display: flex; flex-direction: column; gap: 0.3rem; flex: 1; }
.product__brand { font-size: 0.72rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.product__info h3 { margin: 0; font-size: 0.95rem; font-family: var(--font); font-weight: 600; line-height: 1.35; }
.product__desc { margin: 0; font-size: 0.82rem; color: var(--mute); line-height: 1.4; }
.product__row { margin-top: auto; padding-top: 0.85rem; display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; }
.product__price { font-weight: 700; font-size: 1.05rem; }
.product__row form { margin: 0; }
.product__row button {
  min-height: 0; padding: 0.45rem 0.85rem; border: 1px solid var(--ink);
  background: transparent; color: var(--ink); font-size: 0.82rem; border-radius: 4px;
}
.product__row button:hover { background: var(--ink); color: var(--white); transform: none; box-shadow: none; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step {
  padding: 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: 6px;
}
.step span {
  display: inline-grid; place-items: center; width: 2rem; height: 2rem;
  background: var(--accent-light); color: var(--accent);
  font-family: var(--display); font-weight: 700; border-radius: 50%; margin-bottom: 0.85rem;
}
.step strong { display: block; margin-bottom: 0.35rem; }
.step p { margin: 0; color: var(--mute); font-size: 0.92rem; }

/* Benefits */
.benefits { display: grid; gap: 1rem; margin-top: 1.5rem; }
.benefit {
  padding: 1rem 0; border-bottom: 1px solid var(--line);
  display: grid; gap: 0.2rem;
}
.benefit strong { font-size: 0.95rem; }
.benefit span { color: var(--mute); font-size: 0.88rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split-photo {
  min-height: 380px; background-size: cover; background-position: center;
  border-radius: 6px; border: 1px solid var(--line);
}

/* Articles */
.article-row { display: grid; gap: 0; border-top: 1px solid var(--line); }
.article-line {
  display: grid; grid-template-columns: 110px 1fr; gap: 1.25rem; align-items: center;
  padding: 1.15rem 0; border-bottom: 1px solid var(--line); transition: opacity .2s;
}
.article-line:hover { opacity: 0.75; }
.article-line__img { height: 76px; background-size: cover; background-position: center; border-radius: 4px; }
.article-line time { display: block; color: var(--mute); font-size: 0.78rem; margin-bottom: 0.2rem; }
.article-line strong { font-weight: 600; font-size: 1rem; }

/* CTA */
.cta-box {
  display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
  padding: 2.5rem; background: var(--ink); color: #fff; border-radius: 8px;
}
.cta-box h2 { margin: 0 0 0.35rem; color: #fff; }
.cta-box p { margin: 0; color: rgba(255,255,255,0.7); }
.cta-box__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Catalog */
.catalog-layout { display: grid; grid-template-columns: 230px 1fr; gap: 2.5rem; }
.filter-panel { position: sticky; top: 92px; align-self: start; }
.filter-panel h2, .filter-panel .form-label {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mute); font-weight: 600; margin: 0 0 0.75rem;
}
.filter-list { list-style: none; padding: 0; margin: 0 0 1.75rem; display: grid; gap: 0.3rem; }
.filter-list a { color: var(--mute); font-weight: 500; font-size: 0.92rem; }
.filter-list a.active, .filter-list a:hover { color: var(--accent); }

.product-page { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.product-gallery {
  background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  min-height: 460px; display: grid; place-items: center; padding: 2rem;
}
.product-gallery img { max-height: 400px; object-fit: contain; }
.buy-form { display: flex; flex-wrap: wrap; gap: 1rem; align-items: end; margin: 1.5rem 0; }
.buy-form label { font-size: 0.85rem; color: var(--mute); display: grid; gap: 0.35rem; }
.buy-form input[type="number"] { width: 88px; border: 1px solid var(--line); border-radius: 4px; padding: 0.6rem; }
.product-trust { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.product-trust li {
  padding-left: 1.1rem; position: relative; color: var(--mute); font-size: 0.88rem;
}
.product-trust li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px; background: var(--accent); border-radius: 50%;
}
.crumb { color: var(--accent); font-size: 0.85rem; font-weight: 600; }
.product-brand { color: var(--accent); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.product-desc { color: var(--mute); margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }

/* Forms */
.form-panel, .order-summary, .info-block, .side-panel, .order-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 1.5rem;
}
.form-panel label { display: grid; gap: 0.35rem; font-size: 0.88rem; color: var(--mute); margin-bottom: 1rem; font-weight: 500; }
.search-form input, .form-panel input, .form-panel textarea, .buy-form input, .search-form select {
  width: 100%; border: 1px solid var(--line); border-radius: 4px;
  background: var(--bg); padding: 0.7rem 0.85rem;
}
.search-form select { cursor: pointer; margin-bottom: 0.75rem; }
.search-form input:focus, .form-panel input:focus, .form-panel textarea:focus {
  outline: 2px solid var(--accent-light); border-color: var(--accent);
}
.consent-check {
  display: flex; gap: 0.65rem; align-items: flex-start;
  font-size: 0.82rem; color: var(--mute); margin: 0.5rem 0 1rem; cursor: pointer;
}
.consent-check input { margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--accent); }
.consent-check a { color: var(--accent); text-decoration: underline; }
.form-note { color: var(--mute); font-size: 0.88rem; margin: 0; }
.checkout-layout, .contacts-layout, .prose-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2rem; }
.account-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.account-orders { grid-column: 1 / -1; }
.narrow { max-width: 440px; margin-inline: auto; }

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.cart-table th, .cart-table td { padding: 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.cart-thumb { width: 56px; height: 56px; object-fit: contain; background: var(--bg); border: 1px solid var(--line); border-radius: 4px; }
.cart-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 1.25rem; }
.cart-total { margin-left: auto; display: flex; gap: 1rem; align-items: center; font-size: 1.1rem; }
.linkish { background: none; border: 0; color: var(--mute); cursor: pointer; padding: 0; }
.linkish:hover { color: #a33; }
.order-summary ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.order-summary li { display: flex; justify-content: space-between; gap: 1rem; color: var(--mute); font-size: 0.92rem; }
.summary-total { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-weight: 700; }
.side-photo { height: 240px; background-size: cover; background-position: center; margin-bottom: 1rem; border-radius: 4px; }
.contact-cards { display: grid; gap: 1rem; }
.article-hero { height: min(40vw, 360px); background-size: cover; background-position: center; margin-bottom: 1.75rem; border-radius: 6px; }
.article-page { max-width: 720px; }
.empty-state { padding: 2.5rem; text-align: center; color: var(--mute); background: var(--white); border: 1px dashed var(--line); border-radius: 6px; }
.flash { padding: 0.85rem 1rem; border-radius: 4px; font-weight: 500; margin-bottom: 0; }
.flash.ok { background: var(--accent-light); color: var(--accent); }
.flash.err { background: #fdecec; color: #a33; }
.orders-list { display: grid; gap: 1rem; }
.order-head { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0.5rem; }
.status { margin-left: auto; color: var(--accent); font-size: 0.85rem; font-weight: 600; }

/* Legal */
.legal-page { max-width: 760px; }
.legal-page h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 0.5rem; }
.legal-meta { color: var(--mute); font-size: 0.88rem; margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.15rem; margin: 2rem 0 0.75rem; font-family: var(--display); }
.legal-page p, .legal-page li { color: var(--mute); line-height: 1.65; }
.legal-page ul, .legal-page ol { padding-left: 1.25rem; }
.legal-page a { color: var(--accent); text-decoration: underline; }
.legal-toc {
  margin: 1.5rem 0 2rem; padding: 1rem 1.25rem;
  background: var(--accent-light); border-radius: 4px;
}
.legal-toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.35rem; }
.legal-toc a { text-decoration: none; font-weight: 500; }
.legal-toc a:hover { text-decoration: underline; }
.checkout-pay-notice { margin-bottom: 1.5rem; }
.checkout-pay-notice h3 { font-size: 1rem; margin: 0 0 0.5rem; font-family: var(--display); }
.checkout-pay-notice p { font-size: 0.88rem; margin: 0 0 0.5rem; }
.checkout-pay-notice .pay-logos { margin-top: 0.75rem; }
.prose p, .prose li { color: var(--mute); line-height: 1.65; }

/* Footer */
.site-footer {
  margin-top: 3rem; padding: 4rem 0 2rem;
  background: var(--ink); color: rgba(255,255,255,0.7);
}
.footer-brand { color: #fff; font-size: 1.2rem; margin-bottom: 0.75rem; }
.footer-brand-col { max-width: 280px; }
.footer-brand-col p { font-size: 0.9rem; line-height: 1.55; margin-bottom: 1.25rem; }
.footer-address { font-size: 0.85rem !important; color: rgba(255,255,255,0.55) !important; margin-bottom: 1rem !important; }

.pay-logos, .payment-logos-block .pay-logos {
  display: flex; align-items: center; gap: 0.65rem; flex-wrap: wrap; margin: 0.75rem 0 1rem;
}
.pay-logos img {
  height: 28px; width: auto; background: #fff; border-radius: 4px; padding: 3px 6px;
}
.payment-logos-block { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }

.footer-top { display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.footer-cols { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.footer-cols div { display: grid; gap: 0.55rem; align-content: start; }
.footer-cols h6 {
  margin: 0 0 0.5rem; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.45); font-weight: 600;
}
.footer-cols a { font-size: 0.9rem; }
.footer-cols a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.82rem;
}

@keyframes drift { from { transform: scale(1.02); } to { transform: scale(1.07); } }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Animations */
.anim-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--delay, 0s);
}
.anim-up.is-visible {
  opacity: 1;
  transform: none;
}
.product {
  transition: transform 0.35s var(--ease);
}
.product:hover {
  transform: translateY(-4px);
}
.site-header {
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(20,20,20,0.06);
}

/* Catalog filters */
.filter-panel h2 { font-size: 1rem; margin: 0 0 1rem; font-family: var(--display); }
.price-range { margin-bottom: 0.75rem; }
.price-range__inputs { display: flex; align-items: center; gap: 0.5rem; }
.price-range__inputs input { flex: 1; min-width: 0; }
.price-range__inputs span { color: var(--mute); }
.filter-actions { display: grid; gap: 0.5rem; margin-top: 0.5rem; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.chip {
  display: inline-flex; align-items: center; padding: 0.4rem 0.75rem;
  background: var(--accent-light); color: var(--accent); border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; transition: all 0.2s var(--ease);
}
.chip:hover { background: var(--accent); color: #fff; }
.catalog-toolbar {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  flex-wrap: wrap; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line);
}
.catalog-toolbar strong { color: var(--ink); }
.toolbar-sort { display: flex; flex-wrap: wrap; gap: 0.35rem 0.75rem; align-items: center; font-size: 0.85rem; }
.toolbar-sort span { color: var(--mute); }
.toolbar-sort a {
  color: var(--mute); font-weight: 500; padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: all 0.2s var(--ease);
}
.toolbar-sort a:hover, .toolbar-sort a.is-on { color: var(--accent); border-color: var(--accent); }
.pagination {
  display: flex; justify-content: center; align-items: center; gap: 0.35rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.pagination a {
  min-width: 40px; height: 40px; display: inline-grid; place-items: center;
  border: 1px solid var(--line); border-radius: 4px; font-weight: 600; font-size: 0.9rem;
  transition: all 0.2s var(--ease);
}
.pagination a:hover, .pagination a.is-on {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}

/* Contacts */
.contacts-hero {
  background: var(--ink); color: #fff; padding: 4rem 0;
}
.contacts-hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: end;
}
.contacts-hero h1 { margin: 0.5rem 0; font-size: clamp(2rem, 4vw, 3rem); color: #fff; }
.contacts-hero p { color: rgba(255,255,255,0.75); max-width: 28rem; margin: 0; }
.contacts-hero__cards { display: grid; gap: 1rem; }
.contact-card {
  display: block; padding: 1.25rem 1.4rem; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 6px;
  transition: all 0.3s var(--ease);
}
.contact-card:hover {
  background: rgba(255,255,255,0.12); transform: translateY(-3px);
  border-color: rgba(255,255,255,0.25);
}
.contact-card__label {
  display: block; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold); margin-bottom: 0.35rem;
}
.contact-card strong { display: block; font-size: 1.05rem; color: #fff; margin-bottom: 0.35rem; }
.contact-card em { font-style: normal; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.contacts-page {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start;
}
.requisites { display: grid; gap: 0.85rem; }
.requisites div {
  display: grid; gap: 0.15rem; padding-bottom: 0.85rem; border-bottom: 1px solid var(--line);
}
.requisites span { font-size: 0.78rem; color: var(--mute); text-transform: uppercase; letter-spacing: 0.05em; }
.requisites strong { font-weight: 600; }
.contacts-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
.contacts-steps li { color: var(--mute); font-size: 0.92rem; }
.contacts-steps strong { color: var(--accent); }
.contacts-docs { display: flex; gap: 1.25rem; margin-top: 1.5rem; }
.contacts-docs a { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.contact-form h2 { margin: 0 0 0.35rem; font-size: 1.25rem; }

@media (max-width: 991.98px) {
  .nav-desk { display: none; }
  .nav-burger { display: inline-block; }
  .hero__grid, .split, .catalog-layout, .product-page, .checkout-layout, .contacts-layout, .prose-layout, .account-layout,
  .trust-bar__grid, .steps, .cat-grid, .contacts-hero__inner, .contacts-page { grid-template-columns: 1fr; }
  .hero__grid { padding: 6rem 0 3rem; }
  .hero__card { display: none; }
  .filter-panel { position: static; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-total { margin-left: 0; width: 100%; justify-content: space-between; }
  .footer-cols { gap: 2rem; }
  .cta-box { padding: 1.75rem; }
  .toolbar-sort { width: 100%; }
  .contacts-hero { padding: 3rem 0; }
}
