:root {
  --ink: #111713;
  --ink-soft: #485049;
  --night: #080b0d;
  --night-2: #101617;
  --paper: #f4f1e9;
  --paper-2: #ebe7dd;
  --white: #fffefa;
  --mint: #baffd9;
  --mint-strong: #6af3ad;
  --coral: #ff8068;
  --violet: #cbbcff;
  --line: rgba(17, 23, 19, 0.12);
  --line-dark: rgba(255, 255, 255, 0.13);
  --shadow: 0 22px 60px rgba(18, 24, 20, 0.1);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1240px;
  --header: 76px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 10%, rgba(186, 255, 217, 0.17), transparent 28rem),
    var(--paper);
  font-family: "Segoe UI Variable Text", "Segoe UI", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
img { display: block; max-width: 100%; }
svg { display: block; }

::selection { background: var(--mint); color: #06110b; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: #000;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 56px 0; }
.surface-white { background: var(--white); }
.surface-dark { color: #fff; background: var(--night); }
.muted { color: var(--ink-soft); }
.light-muted { color: rgba(255, 255, 255, 0.65); }
.only-mobile { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon { width: 19px; height: 19px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #415048;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 22px;
  height: 2px;
  content: "";
  background: currentColor;
}
.eyebrow.light { color: var(--mint); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: "Segoe UI Variable Display", "Segoe UI", Inter, Arial, sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.03;
}
h1 { margin-bottom: 24px; font-size: clamp(48px, 7vw, 94px); font-weight: 720; }
h2 { margin-bottom: 22px; font-size: clamp(36px, 5vw, 62px); font-weight: 700; }
h3 { margin-bottom: 12px; font-size: 24px; }
.display-compact { font-size: clamp(42px, 6vw, 72px); }
.lead { max-width: 690px; font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }

.announcement {
  position: relative;
  z-index: 30;
  min-height: 35px;
  color: #0b2115;
  background: var(--mint);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.02em;
}
.announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 35px;
}
.announcement-dot { width: 7px; height: 7px; border-radius: 50%; background: #0d8a4c; box-shadow: 0 0 0 4px rgba(13, 138, 76, 0.12); }

.site-header {
  position: sticky;
  z-index: 25;
  top: 0;
  color: #fff;
  background: rgba(8, 11, 13, 0.89);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: var(--header);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 20px; font-weight: 800; letter-spacing: -0.04em; }
.brand-mark {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  overflow: hidden;
  color: #08100b;
  background: var(--mint);
  border-radius: 9px;
  transform: rotate(-5deg);
}
.brand-mark::after {
  position: absolute;
  width: 20px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: rotate(-45deg);
}
.brand-mark span { position: relative; z-index: 1; font-size: 10px; font-weight: 900; transform: rotate(5deg); }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 7px; }
.main-nav a,
.nav-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}
.main-nav a:hover,
.main-nav a[aria-current="page"],
.nav-action:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.header-actions { display: flex; align-items: center; gap: 6px; }
.language-wrap { position: relative; }
.language-select {
  max-width: 108px;
  height: 42px;
  padding: 0 30px 0 11px;
  color: rgba(255,255,255,.82);
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 650;
  appearance: none;
}
.language-select:hover { background: rgba(255,255,255,.07); }
.language-select option { color: #111; background: #fff; }
.language-wrap::after { position: absolute; top: 50%; right: 10px; content: "⌄"; color: #fff; pointer-events: none; transform: translateY(-56%); }
.mobile-language { padding: 10px 13px 2px; }
.mobile-language .language-select { width: 100%; max-width: none; color: #fff; background: rgba(255,255,255,.08); border: 1px solid var(--line-dark); }
.cart-button { position: relative; }
.cart-count {
  display: grid;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  place-items: center;
  color: #07100a;
  background: var(--mint);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; color: #fff; background: transparent; border: 1px solid var(--line-dark); border-radius: 10px; place-items: center; }
.mobile-nav-search { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  color: #07100a;
  background: var(--mint);
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 760;
  line-height: 1;
  box-shadow: none;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.button:hover { background: #d2ffe6; transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { background: #252e28; }
.button-coral { color: #1b0a06; background: var(--coral); }
.button-coral:hover { background: #ff9b87; }
.button-outline { color: inherit; background: transparent; border-color: currentColor; }
.button-outline:hover { color: var(--ink); background: #fff; border-color: #fff; }
.button-light-outline { color: #fff; border-color: rgba(255,255,255,.25); }
.button-ghost { color: inherit; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.button-sm { min-height: 42px; padding: 0 15px; border-radius: 11px; font-size: 14px; }
.button-full { width: 100%; }
.button[disabled] { cursor: wait; opacity: .58; transform: none; }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}
.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8,11,13,1) 0%, rgba(8,11,13,.97) 33%, rgba(8,11,13,.32) 73%, rgba(8,11,13,.12) 100%),
    linear-gradient(0deg, rgba(8,11,13,.8), transparent 36%),
    var(--hero-image) center right / cover no-repeat;
  opacity: .98;
}
.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  content: "";
  background: linear-gradient(transparent, var(--night));
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 680px) 1fr;
  align-items: center;
  min-height: 720px;
  padding-top: 60px;
  padding-bottom: 70px;
}
.hero-copy { padding: 42px 0; }
.hero h1 { max-width: 750px; }
.hero h1 .accent { color: var(--mint); }
.hero .lead { color: rgba(255,255,255,.7); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 0; }
.hero-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  max-width: 660px;
  min-height: 66px;
  margin-top: 36px;
  padding: 8px 8px 8px 20px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 17px;
  box-shadow: var(--shadow-dark);
}
.hero-search input { width: 100%; height: 48px; padding: 0 14px; color: var(--ink); background: transparent; border: 0; outline: 0; }
.hero-search .button { min-height: 48px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; color: rgba(255,255,255,.66); font-size: 13px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof .proof-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint-strong); }

.market-strip { color: #fff; background: var(--night); border-top: 1px solid var(--line-dark); }
.market-strip-inner { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 26px; min-height: 108px; }
.market-label { color: rgba(255,255,255,.5); font-size: 12px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.country-list { display: flex; align-items: center; gap: 10px; overflow-x: auto; padding: 18px 2px; scrollbar-width: none; }
.country-list::-webkit-scrollbar { display: none; }
.country-chip {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  min-height: 43px;
  padding: 0 14px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 620;
}
.country-chip:hover { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-head > div { max-width: 710px; }
.section-head h2 { margin-bottom: 10px; }
.section-head p { margin: 0; color: var(--ink-soft); font-size: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-weight: 750; white-space: nowrap; }
.text-link:hover { gap: 13px; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { z-index: 2; border-color: rgba(17,23,19,.25); box-shadow: var(--shadow); transform: translateY(-5px); }
.product-art {
  position: relative;
  display: grid;
  min-height: 188px;
  padding: 20px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--product-color, #242b27);
}
.product-art::before,
.product-art::after { position: absolute; content: ""; border-radius: 50%; filter: blur(1px); }
.product-art::before { top: -52px; right: -26px; width: 150px; height: 150px; background: rgba(255,255,255,.15); }
.product-art::after { bottom: -60px; left: -45px; width: 140px; height: 140px; background: rgba(0,0,0,.13); }
.gift-card-visual {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 220px);
  aspect-ratio: 1.62;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px;
  color: var(--card-ink, #fff);
  background: linear-gradient(135deg, rgba(255,255,255,.23), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 15px;
  box-shadow: 0 22px 40px rgba(0,0,0,.22);
  transform: rotate(-3deg);
  backdrop-filter: blur(10px);
}
.gift-card-visual::after { position: absolute; top: 15px; right: 15px; width: 12px; height: 12px; content: ""; background: currentColor; border-radius: 50%; opacity: .7; }
.card-brand { display: flex; min-width: 0; max-width: calc(100% - 48px); align-items: center; gap: 8px; }
.brand-logo-mark {
  display: block;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  background: currentColor;
  -webkit-mask: var(--brand-logo) center / contain no-repeat;
  mask: var(--brand-logo) center / contain no-repeat;
}
.brand-logo-fallback {
  display: grid;
  flex: 0 0 29px;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}
.brand-wordmark { min-width: 0; max-width: 128px; font-size: 18px; font-weight: 860; line-height: .96; letter-spacing: -.055em; overflow-wrap: normal; text-wrap: balance; }
.brand-wordmark-long { font-size: 14px; line-height: 1.02; letter-spacing: -.035em; }
.brand-initials { font-size: 27px; font-weight: 850; letter-spacing: -.06em; }
.card-currency { flex: 0 0 auto; font-size: 12px; font-weight: 720; opacity: .75; }
.product-badge { position: absolute; z-index: 3; top: 12px; left: 12px; padding: 6px 9px; color: var(--ink); background: var(--mint); border-radius: 8px; font-size: 10px; font-weight: 820; letter-spacing: .06em; text-transform: uppercase; }
.product-body { padding: 19px 19px 20px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 9px; color: var(--ink-soft); font-size: 12px; }
.product-country { display: inline-flex; align-items: center; gap: 7px; }
.stock { display: inline-flex; align-items: center; gap: 6px; color: #287448; font-weight: 700; }
.stock::before { width: 6px; height: 6px; content: ""; background: currentColor; border-radius: 50%; }
.stock.low { color: #b46318; }
.stock.is-pending { color: #b46318; }
.stock.is-unavailable { color: #a03a31; }
.product-card h3 { margin-bottom: 7px; font-size: 20px; }
.product-bottom { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: 17px; padding-top: 15px; border-top: 1px solid var(--line); }
.price-from { display: block; color: var(--ink-soft); font-size: 11px; }
.price { font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.delivery { text-align: right; color: var(--ink-soft); font-size: 11px; }

.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); }
.step-card { position: relative; min-height: 310px; padding: 38px; background: var(--night-2); }
.step-number { display: grid; width: 42px; height: 42px; margin-bottom: 72px; place-items: center; color: var(--mint); border: 1px solid rgba(186,255,217,.33); border-radius: 50%; font-weight: 760; }
.step-card h3 { font-size: 28px; }
.step-card p { margin: 0; color: rgba(255,255,255,.58); }

.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.category-card {
  position: relative;
  display: flex;
  min-height: 170px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 25px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.category-card::before { position: absolute; top: -50px; right: -40px; width: 170px; height: 170px; content: ""; background: var(--cat-color, var(--mint)); border-radius: 50%; opacity: .62; filter: blur(2px); }
.category-card:hover::before { transform: scale(1.14); }
.category-card h3 { position: relative; z-index: 1; margin: 0; }
.category-arrow { position: relative; z-index: 1; display: grid; width: 40px; height: 40px; place-items: center; background: var(--paper); border-radius: 50%; }

.trust-panel { display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; color: #fff; background: #18221c; border-radius: var(--radius-lg); }
.trust-copy { padding: clamp(38px, 6vw, 76px); }
.trust-copy h2 { font-size: clamp(39px, 5vw, 66px); }
.trust-copy .lead { color: rgba(255,255,255,.63); }
.trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 32px; background: rgba(255,255,255,.035); }
.trust-item { min-height: 180px; padding: 24px; background: rgba(255,255,255,.055); border: 1px solid var(--line-dark); border-radius: 16px; }
.trust-icon { display: grid; width: 38px; height: 38px; margin-bottom: 28px; place-items: center; color: var(--mint); background: rgba(186,255,217,.08); border-radius: 10px; }
.trust-item h3 { font-size: 18px; }
.trust-item p { margin: 0; color: rgba(255,255,255,.55); font-size: 14px; }

.guide-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 17px; }
.guide-card { display: flex; min-height: 270px; flex-direction: column; justify-content: space-between; padding: 27px; color: #fff; background: #303a34; border-radius: var(--radius); }
.guide-card:first-child { min-height: 370px; background: var(--coral); color: #27110c; }
.guide-card:nth-child(2) { background: var(--violet); color: #211b36; }
.guide-card:nth-child(3) { background: var(--mint); color: #102118; }
.guide-kicker { font-size: 11px; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.guide-card h3 { max-width: 360px; font-size: clamp(25px,3vw,38px); }
.guide-meta { font-size: 13px; opacity: .68; }

.editorial-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.editorial-card {
  position: relative;
  display: flex;
  min-height: 310px;
  overflow: hidden;
  padding: clamp(25px, 4vw, 42px);
  flex-direction: column;
  align-items: flex-start;
  color: var(--ink);
  background: color-mix(in srgb, var(--editorial-color) 72%, white);
  border: 1px solid rgba(14,19,16,.1);
  border-radius: var(--radius);
}
.editorial-card::after { position: absolute; right: -55px; bottom: -80px; width: 210px; height: 210px; content: ""; background: var(--editorial-color); border-radius: 50%; opacity: .58; }
.editorial-card:first-child { grid-column: 1 / -1; min-height: 360px; }
.editorial-card h3 { position: relative; z-index: 1; max-width: 760px; margin: auto 0 14px; font-size: clamp(30px,4vw,52px); }
.editorial-card p { position: relative; z-index: 1; max-width: 700px; margin: 0 0 28px; color: rgba(14,19,16,.68); }
.editorial-card .guide-kicker, .editorial-card .text-link { position: relative; z-index: 1; }
.editorial-grid-related { grid-template-columns: repeat(3,minmax(0,1fr)); }
.editorial-grid-related .editorial-card, .editorial-grid-related .editorial-card:first-child { grid-column: auto; min-height: 280px; }
.editorial-grid-related .editorial-card h3 { font-size: clamp(24px,2.6vw,34px); }
.article-answer { margin: 22px 0 0; padding: 26px; color: #112019; background: rgba(186,255,217,.38); border: 1px solid rgba(49,157,97,.22); border-radius: 16px; font-size: 20px; line-height: 1.65; }
.article-takeaways { margin-top: 34px; padding: 28px 30px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.article-takeaways h2 { margin-top: 0; }
.article-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 2px;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  font-size: 18px;
  font-weight: 720;
}
.faq-plus { position: relative; width: 24px; height: 24px; border: 1px solid var(--line); border-radius: 50%; }
.faq-plus::before,
.faq-plus::after { position: absolute; top: 50%; left: 50%; width: 9px; height: 1px; content: ""; background: currentColor; transform: translate(-50%, -50%); }
.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .18s ease; }
.faq-question[aria-expanded="true"] .faq-plus::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; color: var(--ink-soft); transition: grid-template-rows .24s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 760px; margin-bottom: 24px; }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }

.page-hero { padding: 76px 0 64px; color: #fff; background: var(--night); border-bottom: 1px solid var(--line-dark); }
.page-hero .container { display: grid; grid-template-columns: minmax(0, 800px) 1fr; align-items: end; gap: 40px; }
.page-hero h1 { margin-bottom: 18px; font-size: clamp(48px, 7vw, 82px); }
.page-hero p { margin: 0; color: rgba(255,255,255,.64); font-size: 20px; }
.page-hero-aside { justify-self: end; color: rgba(255,255,255,.54); font-size: 13px; }

.catalog-layout { display: grid; grid-template-columns: 260px 1fr; align-items: start; gap: 34px; }
.filter-panel { position: sticky; top: 126px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.filter-panel h3 { margin-bottom: 20px; font-size: 18px; }
.filter-group { padding: 18px 0; border-top: 1px solid var(--line); }
.filter-group:first-of-type { padding-top: 0; border: 0; }
.filter-label { display: block; margin-bottom: 10px; color: var(--ink-soft); font-size: 11px; font-weight: 770; letter-spacing: .08em; text-transform: uppercase; }
.field,
.select-field,
.textarea-field {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17,23,19,.2);
  border-radius: var(--radius-sm);
  outline: none;
}
.field, .select-field { height: 50px; padding: 0 14px; }
.textarea-field { min-height: 130px; padding: 14px; resize: vertical; }
.field:focus, .select-field:focus, .textarea-field:focus { border-color: #328a5e; box-shadow: 0 0 0 4px rgba(106,243,173,.2); }
.check-row { display: flex; align-items: flex-start; gap: 10px; margin: 10px 0; color: var(--ink-soft); font-size: 14px; }
.check-row input { width: 17px; height: 17px; margin-top: 2px; accent-color: #148b52; }
.catalog-main .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 23px; }
.result-count { color: var(--ink-soft); font-size: 14px; }
.search-inline { position: relative; flex: 1; max-width: 430px; }
.search-inline .field { padding-left: 42px; }
.search-inline .icon { position: absolute; top: 15px; left: 14px; color: var(--ink-soft); }
.empty-state { display: none; padding: 70px 25px; text-align: center; background: var(--white); border: 1px dashed rgba(17,23,19,.22); border-radius: var(--radius); }
.empty-state.visible { display: block; }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 28px; color: var(--ink-soft); font-size: 13px; }
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }
.breadcrumb span[aria-hidden] { opacity: .4; }
.product-detail { display: grid; grid-template-columns: 1.04fr .96fr; align-items: start; gap: 42px; }
.product-showcase { position: sticky; top: 126px; }
.product-showcase .product-art { min-height: 460px; border-radius: var(--radius-lg); }
.product-showcase .gift-card-visual { width: min(78%, 450px); padding: 30px; border-radius: 24px; box-shadow: 0 35px 80px rgba(0,0,0,.28); }
.product-showcase .card-brand { max-width: calc(100% - 72px); gap: 14px; }
.product-showcase .brand-logo-mark { flex-basis: 46px; width: 46px; height: 46px; }
.product-showcase .brand-logo-fallback { flex-basis: 46px; width: 46px; height: 46px; border-radius: 13px; font-size: 15px; }
.product-showcase .brand-wordmark { max-width: 250px; font-size: 34px; }
.product-showcase .brand-wordmark-long { font-size: 27px; }
.product-showcase .brand-initials { font-size: 52px; }
.showcase-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.showcase-fact { padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.showcase-fact small { display: block; margin-bottom: 6px; color: var(--ink-soft); }
.showcase-fact strong { font-size: 14px; }
.purchase-panel { padding: clamp(28px,4vw,46px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.product-title-line { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.product-title-line h1 { margin-bottom: 12px; font-size: clamp(39px,5vw,58px); }
.region-tag { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; color: #61391b; background: #fff0d7; border-radius: 8px; font-size: 11px; font-weight: 780; white-space: nowrap; }
.product-subtitle { color: var(--ink-soft); }
.purchase-divider { height: 1px; margin: 26px 0; background: var(--line); }
.purchase-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; font-size: 13px; font-weight: 750; }
.denomination-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.denom-option { position: relative; }
.denom-option input { position: absolute; opacity: 0; pointer-events: none; }
.denom-option label { display: grid; min-height: 52px; place-items: center; background: var(--paper); border: 1px solid transparent; border-radius: 11px; font-weight: 740; }
.denom-option input:checked + label { background: rgba(186,255,217,.43); border-color: #238c55; box-shadow: inset 0 0 0 1px #238c55; }
.denom-option input:focus-visible + label,
.toggle-card input:focus-visible + label { outline: 3px solid #176c47; outline-offset: 3px; box-shadow: 0 0 0 6px rgba(106,243,173,.24); }
.price-line { display: flex; align-items: end; justify-content: space-between; gap: 15px; margin: 24px 0 14px; }
.price-line strong { font-size: 32px; letter-spacing: -.04em; }
.price-line span { color: var(--ink-soft); font-size: 12px; }
.restriction-box { display: flex; align-items: flex-start; gap: 12px; margin: 18px 0; padding: 15px; color: #5b3f13; background: #fff7e5; border: 1px solid #f2d99f; border-radius: 13px; font-size: 13px; }
.purchase-reassurance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 19px; }
.purchase-reassurance div { color: var(--ink-soft); font-size: 11px; text-align: center; }
.purchase-reassurance .icon { margin: 0 auto 7px; color: #2d8050; }
.detail-content { display: grid; grid-template-columns: .72fr 1.28fr; gap: 40px; margin-top: 80px; }
.detail-nav { position: sticky; top: 126px; align-self: start; }
.detail-nav a { display: block; padding: 10px 0; color: var(--ink-soft); font-weight: 650; }
.detail-nav a:hover { color: var(--ink); }
.detail-section { scroll-margin-top: 130px; padding-bottom: 44px; margin-bottom: 44px; border-bottom: 1px solid var(--line); }
.detail-section h2 { font-size: 37px; }
.detail-section h3 { margin-top: 25px; font-size: 20px; }
.instruction-list { counter-reset: steps; list-style: none; padding: 0; }
.instruction-list li { position: relative; min-height: 46px; padding: 3px 0 22px 58px; counter-increment: steps; }
.instruction-list li::before { position: absolute; top: 0; left: 0; display: grid; width: 36px; height: 36px; content: counter(steps); place-items: center; color: #0d482b; background: var(--mint); border-radius: 50%; font-weight: 800; }

.checkout-shell { min-height: 100vh; background: var(--paper); }
.checkout-header { color: #fff; background: var(--night); border-bottom: 1px solid var(--line-dark); }
.checkout-header .container { display: flex; min-height: 74px; align-items: center; justify-content: space-between; }
.checkout-progress { color: rgba(255,255,255,.55); font-size: 13px; }
.checkout-layout { display: grid; grid-template-columns: 1.1fr .9fr; align-items: start; gap: 52px; padding: 58px 0 90px; }
.checkout-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.checkout-card + .checkout-card { margin-top: 16px; }
.checkout-card h2 { font-size: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-wrap { margin-bottom: 17px; }
.field-wrap label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 700; }
.field-help { margin: 7px 0 0; color: var(--ink-soft); font-size: 12px; }
.toggle-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.toggle-card { position: relative; }
.toggle-card input { position: absolute; opacity: 0; }
.toggle-card label { display: block; min-height: 82px; padding: 15px; background: var(--paper); border: 1px solid transparent; border-radius: 13px; }
.toggle-card label strong, .toggle-card label span { display: block; }
.toggle-card label span { margin-top: 5px; color: var(--ink-soft); font-size: 12px; }
.toggle-card input:checked + label { background: rgba(186,255,217,.3); border-color: #238c55; }
.order-summary { position: sticky; top: 106px; }
.summary-product { display: grid; grid-template-columns: 80px 1fr; gap: 15px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.summary-thumb { display: grid; width: 80px; aspect-ratio: 1.25; place-items: center; color: #fff; background: var(--product-color,#333); border-radius: 12px; font-weight: 850; }
.summary-product h3 { margin: 0 0 4px; font-size: 17px; }
.summary-product p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.summary-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 14px 0; color: var(--ink-soft); font-size: 14px; }
.summary-line.total { padding-top: 17px; margin-top: 17px; color: var(--ink); border-top: 1px solid var(--line); font-size: 18px; font-weight: 800; }
.crypto-note { display: flex; gap: 11px; margin-top: 18px; padding: 14px; color: var(--ink-soft); background: var(--paper); border-radius: 12px; font-size: 12px; }
.payment-panel { display: none; }
.payment-panel.visible { display: block; }
.payment-panel:focus-visible { outline: 3px solid #176c47; outline-offset: 5px; }
.payment-status-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.status-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; color: #62441b; background: #fff0cf; border-radius: 8px; font-size: 11px; font-weight: 780; }
.status-chip::before { width: 7px; height: 7px; content: ""; background: #dc8a19; border-radius: 50%; box-shadow: 0 0 0 4px rgba(220,138,25,.13); }
.payment-address { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin: 18px 0; }
.payment-address code { overflow: hidden; padding: 14px; background: var(--paper); border-radius: 11px; font-family: ui-monospace, monospace; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.demo-banner { margin: 15px 0; padding: 13px; color: #4b3d73; background: #eee9ff; border: 1px solid #d8ceff; border-radius: 11px; font-size: 12px; }
.timeline { position: relative; margin: 26px 0 4px; padding-left: 23px; }
.timeline::before { position: absolute; top: 8px; bottom: 10px; left: 6px; width: 1px; content: ""; background: var(--line); }
.timeline-item { position: relative; padding: 0 0 24px 16px; }
.timeline-item::before { position: absolute; top: 5px; left: -21px; width: 11px; height: 11px; content: ""; background: var(--paper-2); border: 2px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 1px var(--line); }
.timeline-item.active::before, .timeline-item.done::before { background: #34bd72; }
.timeline-item strong { display: block; font-size: 14px; }
.timeline-item span { color: var(--ink-soft); font-size: 12px; }

.account-grid { display: grid; grid-template-columns: 260px 1fr; align-items: start; gap: 30px; }
.account-sidebar { position: sticky; top: 126px; padding: 18px; background: var(--night); border-radius: var(--radius); color: #fff; }
.account-user { padding: 10px 8px 22px; border-bottom: 1px solid var(--line-dark); }
.account-user small { display: block; color: rgba(255,255,255,.48); }
.account-nav { padding-top: 12px; }
.account-nav button { display: flex; width: 100%; align-items: center; gap: 10px; padding: 12px; color: rgba(255,255,255,.66); background: transparent; border: 0; border-radius: 10px; text-align: left; }
.account-nav button:hover, .account-nav button.active { color: #fff; background: rgba(255,255,255,.08); }
.account-main { min-width: 0; }
.account-stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 25px; }
.account-stat { padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.account-stat small { color: var(--ink-soft); }
.account-stat strong { display: block; margin-top: 9px; font-size: 25px; }
.order-card { padding: 25px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.order-card + .order-card { margin-top: 13px; }
.order-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding-bottom: 19px; border-bottom: 1px solid var(--line); }
.order-top h3 { margin: 0 0 5px; font-size: 19px; }
.order-top p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.code-vault { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px; margin-top: 20px; padding: 18px; color: #fff; background: #17201b; border-radius: 14px; }
.code-vault code { font-family: ui-monospace, monospace; font-size: 18px; letter-spacing: .12em; }
.code-vault code.masked { filter: blur(7px); user-select: none; }
.tracking-box { max-width: 700px; margin: 0 auto; padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.content-layout { display: grid; grid-template-columns: 250px minmax(0, 760px); justify-content: center; gap: 60px; }
.content-toc { position: sticky; top: 126px; align-self: start; }
.content-toc strong { display: block; margin-bottom: 13px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.content-toc a { display: block; padding: 7px 0; color: var(--ink-soft); font-size: 14px; }
.prose { font-size: 17px; line-height: 1.75; }
.prose h2 { margin-top: 52px; font-size: 36px; scroll-margin-top: 130px; }
.prose h3 { margin-top: 34px; font-size: 23px; }
.prose a { color: #16673c; text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 24px; }
.prose li { margin: 8px 0; }
.prose .callout { margin: 26px 0; padding: 20px; background: rgba(186,255,217,.28); border-left: 3px solid #319d61; border-radius: 0 13px 13px 0; }
.updated-line { display: flex; align-items: center; gap: 9px; margin-top: 20px; color: rgba(255,255,255,.5); font-size: 12px; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 25px; }
.contact-methods { display: grid; gap: 12px; }
.contact-method { padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.contact-method strong { display: block; margin-bottom: 5px; }
.contact-method p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.contact-form { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }

.status-board { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.status-overall { display: flex; align-items: center; gap: 13px; padding: 22px; color: #0d5b30; background: rgba(186,255,217,.38); font-weight: 740; }
.status-overall::before { width: 11px; height: 11px; content: ""; background: #2db66a; border-radius: 50%; box-shadow: 0 0 0 5px rgba(45,182,106,.14); }
.status-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border-top: 1px solid var(--line); }
.status-bars { display: flex; gap: 3px; }
.status-bars i { display: block; width: 20px; height: 25px; background: #45bd77; border-radius: 3px; }

.search-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  padding: 110px 20px 30px;
  color: #fff;
  background: rgba(5,8,7,.82);
  backdrop-filter: blur(14px);
}
.search-modal.open { display: block; }
.search-dialog { width: min(100%, 720px); margin: 0 auto; padding: 18px; background: #121816; border: 1px solid var(--line-dark); border-radius: var(--radius); box-shadow: var(--shadow-dark); }
.search-dialog-head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 2px 4px 15px; border-bottom: 1px solid var(--line-dark); }
.search-dialog input { width: 100%; height: 50px; color: #fff; background: transparent; border: 0; outline: 0; font-size: 18px; }
.search-close { width: 34px; height: 34px; color: #fff; background: rgba(255,255,255,.08); border: 0; border-radius: 8px; }
.search-results { max-height: min(500px,60vh); overflow: auto; padding-top: 10px; }
.search-result { display: grid; grid-template-columns: 45px 1fr auto; align-items: center; gap: 13px; padding: 11px; border-radius: 11px; }
.search-result:hover { background: rgba(255,255,255,.07); }
.search-result-logo { display: grid; width: 45px; height: 34px; place-items: center; background: var(--product-color,#333); border-radius: 8px; font-size: 11px; font-weight: 800; }
.search-result small { display: block; color: rgba(255,255,255,.48); }
.search-result-price { color: var(--mint); font-size: 13px; }
.search-hint { padding: 25px 10px; color: rgba(255,255,255,.44); text-align: center; font-size: 13px; }

.toast-wrap { position: fixed; z-index: 200; right: 22px; bottom: 22px; display: grid; gap: 10px; width: min(380px, calc(100% - 44px)); }
.toast { display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 12px; padding: 16px; color: #fff; background: #152019; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; box-shadow: var(--shadow-dark); animation: toastIn .22s ease-out; }
.toast-icon { display: grid; width: 28px; height: 28px; place-items: center; color: #0e3a24; background: var(--mint); border-radius: 50%; }
.toast p { margin: 0; color: rgba(255,255,255,.63); font-size: 13px; }
.toast button { color: rgba(255,255,255,.6); background: transparent; border: 0; }
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } }

.site-footer { color: #fff; background: var(--night); border-top: 1px solid var(--line-dark); }
.footer-top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 80px; padding: 76px 0 60px; }
.footer-brand p { max-width: 370px; margin: 20px 0 28px; color: rgba(255,255,255,.52); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 9px; }
.footer-badge { padding: 8px 10px; color: rgba(255,255,255,.68); background: rgba(255,255,255,.055); border: 1px solid var(--line-dark); border-radius: 8px; font-size: 11px; }
.footer-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.footer-column h3 { margin-bottom: 20px; color: rgba(255,255,255,.42); font-size: 11px; font-weight: 770; letter-spacing: .1em; text-transform: uppercase; }
.footer-column a { display: block; margin: 10px 0; color: rgba(255,255,255,.68); font-size: 14px; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 22px 0; color: rgba(255,255,255,.38); border-top: 1px solid var(--line-dark); font-size: 11px; }
.footer-status { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.58); }
.footer-status::before { width: 7px; height: 7px; content: ""; background: #3bd278; border-radius: 50%; }

.breadcrumb-light { color: rgba(255,255,255,.68); }
.breadcrumb-light a:hover { color: #fff; }
.market-facts { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; margin-bottom: 58px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--line); }
.market-facts article { min-height: 126px; padding: 28px; background: var(--paper); }
.market-facts small { display: block; margin-bottom: 12px; color: var(--ink-soft); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.market-facts strong { font-size: clamp(22px,2.5vw,34px); letter-spacing: -.03em; }
.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); }
.comparison-table { width: 100%; min-width: 760px; border-collapse: collapse; text-align: start; }
.comparison-table th, .comparison-table td { padding: 20px 22px; border-bottom: 1px solid var(--line); vertical-align: top; }
.comparison-table thead th { color: var(--ink-soft); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table tbody th { font-size: 16px; }
.comparison-table a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.comparison-table small { display: block; margin-top: 6px; color: var(--ink-soft); font-size: 11px; }
.source-note { margin-top: 18px; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }
.source-note a { color: var(--ink); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.related-links { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-top: 22px; }

.rtl { direction: rtl; }
.rtl .eyebrow::before { order: 2; }
.rtl .hero::before { transform: scaleX(-1); }
.rtl .search-inline .field { padding-right: 42px; padding-left: 14px; }
.rtl .search-inline .icon { right: 14px; left: auto; }
.rtl .instruction-list li { padding-right: 58px; padding-left: 0; }
.rtl .instruction-list li::before { right: 0; left: auto; }

@media (max-width: 1080px) {
  .main-nav a:nth-child(3) { display: none; }
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .catalog-main .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .trust-panel { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1.1fr .9fr; }
  .guide-card:nth-child(3) { grid-column: 1 / -1; min-height: 240px; }
  .footer-top { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 820px) {
  :root { --header: 66px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .only-desktop { display: none !important; }
  .only-mobile { display: initial !important; }
  .menu-toggle { display: grid; }
  .header-inner { grid-template-columns: auto 1fr auto; gap: 14px; }
  .main-nav {
    position: fixed;
    inset: calc(35px + var(--header)) 0 auto;
    display: none;
    align-items: stretch;
    padding: 16px 14px 24px;
    flex-direction: column;
    background: rgba(8,11,13,.98);
    border-bottom: 1px solid var(--line-dark);
  }
  .menu-open .main-nav { display: flex; }
  .main-nav a, .main-nav a:nth-child(3) { display: flex; min-height: 50px; }
  .mobile-nav-search.only-mobile {
    display: flex !important;
    width: 100%;
    min-height: 50px;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
    color: rgba(255,255,255,.82);
    background: rgba(255,255,255,.06);
    border: 1px solid var(--line-dark);
    border-radius: 10px;
    font-weight: 650;
    text-align: start;
  }
  .mobile-nav-search:hover { color: #fff; background: rgba(255,255,255,.1); }
  .mobile-nav-search:focus-visible { outline: 3px solid var(--mint); outline-offset: 2px; }
  .header-actions { justify-self: end; }
  .hero { min-height: auto; }
  .hero::before { background: linear-gradient(90deg, rgba(8,11,13,.98) 0%, rgba(8,11,13,.82) 70%, rgba(8,11,13,.6)), var(--hero-image) 60% center / cover no-repeat; opacity: .75; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding-top: 48px; padding-bottom: 80px; }
  .hero-copy { padding: 20px 0; }
  .hero h1 { font-size: clamp(46px, 13vw, 72px); }
  .market-strip-inner { grid-template-columns: 1fr; gap: 0; padding-top: 23px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .step-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .step-number { margin-bottom: 36px; }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .trust-list { padding-top: 0; }
  .page-hero .container { grid-template-columns: 1fr; }
  .page-hero-aside { justify-self: start; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; display: none; }
  .filter-panel.open { display: block; }
  .catalog-main .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-detail { grid-template-columns: 1fr; }
  .product-showcase { position: static; }
  .product-showcase .product-art { min-height: 370px; }
  .detail-content { grid-template-columns: 1fr; }
  .detail-nav { display: flex; position: static; gap: 15px; overflow-x: auto; padding-bottom: 8px; }
  .detail-nav a { flex: 0 0 auto; }
  .checkout-layout { grid-template-columns: 1fr; gap: 25px; }
  .order-summary { position: static; order: -1; }
  .account-grid { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .account-nav { display: flex; overflow-x: auto; }
  .account-nav button { flex: 0 0 auto; width: auto; }
  .content-layout { grid-template-columns: 1fr; }
  .editorial-grid-related { grid-template-columns: 1fr; }
  .market-facts { grid-template-columns: 1fr; }
  .content-toc { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  h2 { font-size: 38px; }
  .announcement .container { min-height: 41px; text-align: center; }
  .announcement-dot { display: none; }
  .header-inner { min-height: 64px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 29px; height: 29px; }
  .language-wrap, .orders-link { display: none; }
  .hero-inner { padding-top: 35px; }
  .hero h1 { font-size: 47px; }
  .hero .lead { font-size: 18px; }
  .hero-search { grid-template-columns: auto 1fr; min-height: 58px; padding: 7px 12px; }
  .hero-search .button { grid-column: 1 / -1; width: 100%; margin-top: 8px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; gap: 10px; }
  .section-head { align-items: start; flex-direction: column; margin-bottom: 28px; }
  .product-grid, .catalog-main .product-grid { grid-template-columns: 1fr; }
  .product-art { min-height: 205px; }
  .category-grid, .trust-list, .guide-grid, .editorial-grid { grid-template-columns: 1fr; }
  .editorial-card:first-child { grid-column: auto; min-height: 320px; }
  .guide-card:nth-child(3) { grid-column: auto; }
  .trust-list { padding: 18px; }
  .trust-item { min-height: 155px; }
  .page-hero { padding: 55px 0 45px; }
  .page-hero h1 { font-size: 48px; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; }
  .search-inline { max-width: none; }
  .product-showcase .product-art { min-height: 280px; }
  .product-showcase .card-brand { max-width: calc(100% - 58px); gap: 10px; }
  .product-showcase .brand-logo-mark { flex-basis: 34px; width: 34px; height: 34px; }
  .product-showcase .brand-logo-fallback { flex-basis: 34px; width: 34px; height: 34px; border-radius: 10px; font-size: 12px; }
  .product-showcase .brand-wordmark { max-width: 180px; font-size: 26px; }
  .product-showcase .brand-wordmark-long { font-size: 21px; }
  .showcase-facts { grid-template-columns: 1fr; }
  .purchase-panel { padding: 24px 18px; }
  .product-title-line { flex-direction: column; }
  .denomination-grid { grid-template-columns: repeat(2,1fr); }
  .purchase-reassurance { grid-template-columns: 1fr; text-align: left; }
  .purchase-reassurance div { display: flex; align-items: center; gap: 9px; text-align: left; }
  .purchase-reassurance .icon { margin: 0; }
  .form-row, .toggle-cards { grid-template-columns: 1fr; }
  .checkout-card { padding: 22px 18px; }
  .account-stat-grid { grid-template-columns: 1fr; }
  .order-top { flex-direction: column; }
  .code-vault { grid-template-columns: 1fr; }
  .contact-form, .tracking-box { padding: 23px 18px; }
  .footer-top { padding-top: 55px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
