/* =====================================================================
   Décante — Үнэртэй усны жижиглэн худалдааны вебсайт
   styles.css
   ---------------------------------------------------------------------
   Агуулга:
     1.  Дизайн токен (өнгө, фонт, зай)
     2.  Reset ба суурь
     3.  Ерөнхий бүтэц (container, section)
     4.  Товч (buttons)
     5.  Толгой ба цэс
     6.  Hero
     7.  Давуу тал (features)
     8.  Хэрэгсэлийн мөр ба шүүлтүүр
     9.  Бүтээгдэхүүний карт
     10. Хэрхэн ажилладаг (steps)
     11. Яагаад декант (why)
     12. Сэтгэгдэл (reviews)
     13. Асуулт хариулт (FAQ)
     14. Захиалгын хэсэг ба форм
     15. Футер
     16. Сагс (drawer)
     17. Modal ба захиалга баталгаажуулах
     18. Overlay ба toast
     19. Responsive (мобайл)
   ===================================================================== */

/* ------------------------------------------------------------------ */
/*  1. ДИЗАЙН ТОКЕН                                                    */
/* ------------------------------------------------------------------ */
:root {
  /* Өнгө */
  --bg:            #faf7f2;   /* дулаан цайвар суурь */
  --surface:       #ffffff;
  --surface-2:     #f4efe7;
  --ink:           #1d1a16;   /* үндсэн бараан текст */
  --ink-soft:      #58514a;
  --muted:         #8a8178;
  --line:          #e8e0d4;
  --line-strong:   #d8cdba;

  --gold:          #b08d57;   /* үндсэн акцент */
  --gold-dark:     #8c6d3f;
  --gold-soft:     #ece0cd;
  --rose:          #c98a7d;
  --ink-deep:      #17140f;   /* футер, hero бараан хэсэг */

  /* Фонт */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Зай, радиус, сүүдэр */
  --container: 1180px;
  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(29, 26, 22, .06), 0 2px 8px rgba(29, 26, 22, .05);
  --shadow-md: 0 6px 20px rgba(29, 26, 22, .10);
  --shadow-lg: 0 20px 50px rgba(29, 26, 22, .18);
  --ease: cubic-bezier(.4, 0, .2, 1);

  --header-h: 74px;
}

/* ------------------------------------------------------------------ */
/*  2. RESET БА СУУРЬ                                                  */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  /* Ерөнхий дэвсгэр: дээрээс доош цэнхэр → нил ягаан → ягаан */
  background: linear-gradient(180deg,
    #5b6ef6 0%, #7c63ea 26%, #a35cd8 52%, #cf5ccb 77%, #f56fc0 100%);
  background-repeat: no-repeat;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.cart-open, body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.01em;
}

::selection { background: var(--gold-soft); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ------------------------------------------------------------------ */
/*  3. ЕРӨНХИЙ БҮТЭЦ                                                   */
/* ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 800px; }

.section { padding: 92px 0; }
.section--alt { background: var(--surface-2); }

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 12px;
}
.section__title { font-size: clamp(28px, 4vw, 42px); }
.section__sub {
  color: var(--ink-soft);
  margin: 14px 0 0;
  font-size: 17px;
}

/* ------------------------------------------------------------------ */
/*  4. ТОВЧ                                                            */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: transform .15s var(--ease), background .2s var(--ease),
              color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--solid {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--solid:hover { background: var(--gold-dark); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--outline:hover { border-color: var(--ink); background: var(--surface); }

.btn--ghost {
  background: rgba(255, 255, 255, .5);
  color: var(--ink);
  border-color: var(--line-strong);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: #fff; }

.btn--text {
  background: transparent;
  color: var(--ink-soft);
  padding: 10px;
}
.btn--text:hover { color: var(--ink); }

.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--block { width: 100%; }

.icon-btn {
  width: 40px; height: 40px;
  border: none; background: transparent;
  font-size: 18px; color: var(--ink-soft);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.icon-btn:hover { background: var(--surface-2); color: var(--ink); }

/* ------------------------------------------------------------------ */
/*  5. ТОЛГОЙ БА ЦЭС                                                   */
/* ------------------------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 247, 242, .82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, var(--gold) 0%, var(--gold-dark) 70%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.35), var(--shadow-sm);
  flex: none;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.logo__sub {
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold);
  transition: width .25s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

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

.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: border-color .2s, transform .15s, box-shadow .2s;
}
.cart-btn:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.cart-btn__count {
  position: absolute; top: -5px; right: -5px;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--gold-dark); color: #fff;
  font-size: 11px; font-weight: 700;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 12px;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.nav-toggle span {
  width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}

/* ------------------------------------------------------------------ */
/*  6. HERO                                                            */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  /* Ханын зураг (2 эрэгтэй + 2 эмэгтэй флакон) + зүүн талд текст уншихад
     зориулсан гэрэлтүүлэг (scrim) */
  background:
    linear-gradient(90deg,
      rgba(24,14,54,.34) 0%,
      rgba(24,14,54,.14) 34%,
      rgba(24,14,54,0) 58%),
    url('../assets/hero.svg') center right / cover no-repeat;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  min-height: clamp(520px, 54vw, 880px);
  gap: 40px;
  padding: 56px 0;
}
.hero__content { max-width: 600px; }
.hero__visual { display: none; }
.hero__eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 100px;
  margin: 0 0 22px;
}
.hero__title {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  margin: 0 0 20px;
}
.hero__title em { font-style: italic; color: var(--gold-dark); }
.hero__lead { font-size: 19px; color: var(--ink); font-weight: 500; margin: 0 0 10px; }
.hero__desc { font-size: 16px; color: var(--ink-soft); max-width: 480px; margin: 0 0 30px; }

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }

.hero__stats { display: flex; gap: 38px; flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats b { font-family: var(--font-display); font-size: 30px; color: var(--ink); }
.hero__stats span { font-size: 13px; color: var(--muted); }

/* Флаконуудын чимэглэл */
.hero__visual {
  position: relative;
  height: 440px;
}
.hero__glow {
  position: absolute; inset: 10% 6%;
  background: radial-gradient(circle at 50% 45%, rgba(176,141,87,.25), transparent 65%);
  filter: blur(10px);
}
.hero__bottle {
  position: absolute;
  border-radius: 16px 16px 20px 20px;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.15);
}
.hero__bottle::before {
  content: ""; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 16px; border-radius: 4px; background: inherit; filter: brightness(.85);
}
.hero__bottle::after {
  content: ""; position: absolute; top: 16%; left: 16%;
  width: 16%; height: 55%; border-radius: 8px; background: rgba(255,255,255,.22);
}
.hero__bottle--1 {
  width: 150px; height: 230px; left: 20%; bottom: 8%;
  background: linear-gradient(160deg, #6b7f94, #35485c);
  z-index: 3;
}
.hero__bottle--2 {
  width: 118px; height: 180px; left: 3%; bottom: 22%;
  background: linear-gradient(160deg, #c98a7d, #9b2226);
  z-index: 2;
}
.hero__bottle--3 {
  width: 128px; height: 195px; right: 6%; bottom: 16%;
  background: linear-gradient(160deg, #cbb26a, #8c6d3f);
  z-index: 1;
}

/* ------------------------------------------------------------------ */
/*  7. ДАВУУ ТАЛ                                                       */
/* ------------------------------------------------------------------ */
.features {
  background: var(--ink-deep);
  color: #efe9df;
  padding: 26px 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  padding: 14px 6px;
}
.feature__icon {
  grid-row: 1 / 3;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(176,141,87,.18);
  color: var(--gold);
  font-size: 18px; font-weight: 700;
}
.feature h3 { font-size: 16px; color: #fff; align-self: end; }
.feature p { margin: 2px 0 0; font-size: 13.5px; color: #b6ada0; line-height: 1.45; }

/* ------------------------------------------------------------------ */
/*  8. ХЭРЭГСЭЛИЙН МӨР БА ШҮҮЛТҮҮР                                     */
/* ------------------------------------------------------------------ */
.toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-chip {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink-soft);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 14px; font-weight: 500;
  transition: all .18s var(--ease);
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.is-active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}

.toolbar__right { display: flex; gap: 10px; align-items: center; }
.search {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: 0 14px;
  color: var(--muted);
  transition: border-color .2s;
}
.search:focus-within { border-color: var(--gold); }
.search input {
  border: none; background: none; outline: none;
  padding: 10px 2px; font-size: 14px; width: 190px; color: var(--ink);
}
.select {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  border-radius: 100px;
  padding: 10px 16px;
  font-size: 14px; color: var(--ink);
  cursor: pointer;
}
.result-count { color: var(--muted); font-size: 14px; margin: 0 0 22px; }

/* ------------------------------------------------------------------ */
/*  9. БҮТЭЭГДЭХҮҮНИЙ КАРТ                                             */
/* ------------------------------------------------------------------ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }

.card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 50% 32%, color-mix(in srgb, var(--accent) 18%, #fff) 0%, var(--surface-2) 70%);
  padding: 26px;
}
.bottle { width: 46%; height: auto; filter: drop-shadow(0 12px 18px rgba(29,26,22,.22)); }

.card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 5px 11px; border-radius: 100px;
}
.card__quickview {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px; font-weight: 600;
  padding: 9px; border-radius: 100px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), background .2s;
}
.card__quickview:hover { background: #fff; }
.card:hover .card__quickview { opacity: 1; transform: translateY(0); }

.card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.card__brand {
  font-size: 12px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 5px;
}
.card__gender { color: var(--gold-dark); }
.card__name { font-size: 21px; margin: 0 0 8px; }
.card__notes {
  font-size: 13px; color: var(--ink-soft); margin: 0 0 16px;
  min-height: 38px; line-height: 1.45;
}

.card__sizes { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.size-chip {
  flex: 1 1 52px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink-soft);
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  transition: all .16s var(--ease);
}
.size-chip:hover { border-color: var(--ink); color: var(--ink); }
.size-chip.is-active {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.card__foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.card__price { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.card__add { padding: 11px 18px; font-size: 14px; }

.product-empty {
  text-align: center; color: var(--muted);
  padding: 60px 0; font-size: 16px;
}

/* ------------------------------------------------------------------ */
/*  10. ХЭРХЭН АЖИЛЛАДАГ (STEPS)                                       */
/* ------------------------------------------------------------------ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__num {
  font-family: var(--font-display);
  font-size: 34px; font-style: italic;
  color: var(--gold);
  display: block; margin-bottom: 14px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

/* ------------------------------------------------------------------ */
/*  11. ЯАГААД ДЕКАНТ (WHY)                                            */
/* ------------------------------------------------------------------ */
.why {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.why__media {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 24px;
  background: linear-gradient(160deg, var(--surface-2), #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  min-height: 320px;
}
.why__big {
  width: 110px; height: 180px;
  border-radius: 12px 12px 16px 16px;
  background: linear-gradient(160deg, #3a5a40, #24391f);
  box-shadow: var(--shadow-md);
  position: relative;
}
.why__big::before {
  content: ""; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 14px; border-radius: 3px; background: #24391f;
}
.why__arrow { font-size: 30px; color: var(--gold-dark); }
.why__minis { display: flex; gap: 12px; align-items: flex-end; }
.why__minis span {
  width: 34px; border-radius: 5px 5px 7px 7px;
  background: linear-gradient(160deg, #6b8f5f, #3a5a40);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.why__minis span::before {
  content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 8px; border-radius: 2px; background: #3a5a40;
}
.why__minis span:nth-child(1) { height: 76px; }
.why__minis span:nth-child(2) { height: 100px; }
.why__minis span:nth-child(3) { height: 62px; }

.why__list { margin: 22px 0 28px; display: grid; gap: 14px; }
.why__list li {
  position: relative; padding-left: 30px; color: var(--ink-soft); font-size: 16px;
}
.why__list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 16px; height: 9px;
  border-left: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: rotate(-45deg);
}
.why__list b { color: var(--ink); }

/* ------------------------------------------------------------------ */
/*  12. СЭТГЭГДЭЛ                                                      */
/* ------------------------------------------------------------------ */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
}
.review__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review blockquote {
  margin: 0 0 16px; font-size: 16px; color: var(--ink);
  font-family: var(--font-display); font-style: italic; line-height: 1.5;
}
.review figcaption { font-size: 14px; color: var(--muted); font-weight: 500; }

/* ------------------------------------------------------------------ */
/*  13. АСУУЛТ ХАРИУЛТ                                                 */
/* ------------------------------------------------------------------ */
.faq { display: grid; gap: 12px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  background: none; border: none; text-align: left;
  font-size: 16.5px; font-weight: 600; color: var(--ink);
}
.faq__ico {
  flex: none; position: relative; width: 16px; height: 16px;
}
.faq__ico::before, .faq__ico::after {
  content: ""; position: absolute; background: var(--gold-dark);
  transition: transform .25s var(--ease);
}
.faq__ico::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__ico::after  { left: 7px; top: 0; width: 2px; height: 16px; }
.faq__item.is-open .faq__ico::after { transform: scaleY(0); }

.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s var(--ease);
}
.faq__item.is-open .faq__a { max-height: 260px; }
.faq__a p {
  margin: 0; padding: 0 22px 22px; color: var(--ink-soft); font-size: 15.5px;
}

/* ------------------------------------------------------------------ */
/*  14. ЗАХИАЛГЫН ХЭСЭГ БА ФОРМ                                        */
/* ------------------------------------------------------------------ */
.section--order { background: var(--surface-2); }
.order {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.order__lead { color: var(--ink-soft); font-size: 16px; margin: 14px 0 26px; }
.order__contact { display: grid; gap: 12px; margin-bottom: 22px; }
.order__contact li {
  display: flex; gap: 14px; align-items: baseline;
  border-bottom: 1px dashed var(--line-strong); padding-bottom: 10px;
}
.order__contact span:first-child {
  min-width: 70px; font-size: 13px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted);
}
.order__contact a { color: var(--ink); font-weight: 500; }
.order__contact a:hover { color: var(--gold-dark); }
.order__social { display: flex; gap: 12px; }
.order__social a {
  border: 1px solid var(--line-strong); border-radius: 100px;
  padding: 8px 16px; font-size: 14px; font-weight: 500;
  transition: all .18s;
}
.order__social a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.order-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: grid; gap: 16px;
}
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field label span { color: var(--rose); }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--bg);
  transition: border-color .2s, background .2s;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
}
.field input::placeholder, .field textarea::placeholder { color: #b3ab9f; }
.order-form__hint { margin: 0; font-size: 13px; color: var(--muted); text-align: center; }

/* ------------------------------------------------------------------ */
/*  15. ФУТЕР                                                          */
/* ------------------------------------------------------------------ */
.footer {
  background: var(--ink-deep);
  color: #cdc5b8;
  padding-top: 60px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 44px;
}
.footer__brand .logo__name { color: #fff; font-size: 26px; }
.footer__brand p { margin: 12px 0 0; font-size: 14.5px; max-width: 320px; color: #a89f92; }
.footer__col h4 { color: #fff; font-family: var(--font-body); font-size: 14px; letter-spacing: .04em; margin-bottom: 14px; }
.footer__col a, .footer__col span {
  display: block; font-size: 14.5px; color: #a89f92; padding: 5px 0;
  transition: color .18s;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 24px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13px; color: #8a8175;
}

/* ------------------------------------------------------------------ */
/*  16. САГС (DRAWER)                                                  */
/* ------------------------------------------------------------------ */
.cart-drawer {
  position: fixed; top: 0; right: 0; z-index: 200;
  width: 420px; max-width: 92vw; height: 100dvh;
  background: var(--bg);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  display: flex; flex-direction: column;
}
body.cart-open .cart-drawer { transform: translateX(0); }

.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer__head h2 { font-size: 24px; }
.cart-drawer__count { margin: 2px 0 0; font-size: 13px; color: var(--muted); }

.cart-drawer__body { flex: 1; overflow-y: auto; padding: 16px 20px; }

.cart-lines { display: grid; gap: 14px; }
.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}
.cart-line__thumb {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 32%, color-mix(in srgb, var(--accent) 22%, #fff), var(--surface-2));
}
.cart-line__thumb .bottle { width: 60%; }
.cart-line__name { font-size: 15px; font-weight: 600; margin: 0; }
.cart-line__size { color: var(--gold-dark); font-weight: 600; font-size: 13px; }
.cart-line__brand { margin: 1px 0 8px; font-size: 12.5px; color: var(--muted); }

.qty { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--line-strong); border-radius: 100px; padding: 2px; }
.qty__btn {
  width: 26px; height: 26px; border: none; background: none; border-radius: 50%;
  font-size: 16px; color: var(--ink-soft); line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.qty__btn:hover { background: var(--surface-2); color: var(--ink); }
.qty__val { min-width: 26px; text-align: center; font-weight: 600; font-size: 14px; }

.cart-line__right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-line__total { font-weight: 600; font-size: 15px; }
.cart-line__remove {
  border: none; background: none; color: var(--muted);
  font-size: 12.5px; padding: 2px; transition: color .15s;
}
.cart-line__remove:hover { color: var(--rose); }

.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty__icon {
  width: 66px; height: 66px; margin: 0 auto 18px;
  border: 2px dashed var(--line-strong); border-radius: 50%;
  position: relative;
}
.cart-empty__icon::before {
  content: "✦"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--line-strong);
}
.cart-empty p { margin: 0 0 20px; }

.cart-drawer__foot {
  border-top: 1px solid var(--line);
  padding: 18px 22px 22px;
  background: var(--surface);
  display: grid; gap: 10px;
}
.cart-hint {
  margin: 0 0 4px; font-size: 13px; color: var(--ink-soft);
  background: var(--gold-soft); border-radius: var(--radius-sm);
  padding: 9px 12px; text-align: center;
}
.cart-hint--ok { background: #e4efe0; color: #3a5a40; }
.cart-sum { display: grid; gap: 8px; margin: 4px 0; }
.cart-sum__row { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink-soft); }
.cart-sum__row--total {
  border-top: 1px solid var(--line); padding-top: 10px; margin-top: 2px;
  font-size: 19px; font-weight: 700; color: var(--ink);
  font-family: var(--font-display);
}
.ship-free { color: #3a5a40; font-weight: 600; }

/* ------------------------------------------------------------------ */
/*  17. MODAL БА ЗАХИАЛГА БАТАЛГААЖУУЛАХ                               */
/* ------------------------------------------------------------------ */
.modal {
  position: fixed; inset: 0; z-index: 250;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s;
}
.modal[aria-hidden="false"] { opacity: 1; visibility: visible; }
.modal__panel {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%; max-width: 460px;
  max-height: 88dvh; overflow-y: auto;
  transform: translateY(16px) scale(.98);
  transition: transform .28s var(--ease);
}
.modal__panel--wide { max-width: 760px; }
.modal[aria-hidden="false"] .modal__panel { transform: translateY(0) scale(1); }
.modal__close { position: absolute; top: 12px; right: 12px; z-index: 2; background: rgba(255,255,255,.8); }

/* Quick view */
.qv { display: grid; grid-template-columns: 42% 1fr; }
.qv__media {
  display: flex; align-items: center; justify-content: center;
  padding: 36px;
  background: radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--accent) 20%, #fff), var(--surface-2));
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.qv__media .bottle { width: 66%; }
.qv__body { padding: 40px 36px; }
.qv__brand { font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 6px; }
.qv__name { font-size: 30px; margin: 0 0 14px; }
.qv__desc { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 22px; }
.qv__notes { display: grid; gap: 10px; margin-bottom: 24px; border-top: 1px solid var(--line); padding-top: 18px; }
.note-row { display: grid; grid-template-columns: 96px 1fr; gap: 10px; font-size: 14.5px; }
.note-row__title { color: var(--gold-dark); font-weight: 600; }
.note-row__items { color: var(--ink-soft); }
.qv__sizes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.qv__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.qv__price { font-family: var(--font-display); font-size: 28px; font-weight: 600; }

/* Захиалга баталгаажуулах */
.checkout { padding: 40px; }
.checkout__title { font-size: 26px; margin-bottom: 8px; }
.checkout__lead { color: var(--ink-soft); margin: 0 0 20px; }
.checkout__summary {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  font-family: var(--font-body); font-size: 13.5px; line-height: 1.7;
  color: var(--ink); white-space: pre-wrap; word-break: break-word;
  max-height: 260px; overflow-y: auto;
  margin: 0 0 22px;
}
.checkout__actions { display: grid; gap: 10px; }

/* ------------------------------------------------------------------ */
/*  18. OVERLAY БА TOAST                                               */
/* ------------------------------------------------------------------ */
.overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(23, 20, 15, .48);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.overlay.is-visible { opacity: 1; visibility: visible; }

.toast-root {
  position: fixed; z-index: 300; left: 50%; bottom: 26px;
  transform: translateX(-50%);
  display: grid; gap: 10px; width: max-content; max-width: 92vw;
  pointer-events: none;
}
.toast {
  display: flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff;
  padding: 13px 20px; border-radius: 100px;
  box-shadow: var(--shadow-lg);
  font-size: 14.5px; font-weight: 500;
  opacity: 0; transform: translateY(14px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.toast.is-visible { opacity: 1; transform: translateY(0); }
.toast__icon {
  width: 20px; height: 20px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.toast--success .toast__icon { background: #3a5a40; }
.toast--success .toast__icon::before { content: "✓"; }
.toast--info .toast__icon { background: var(--gold-dark); }
.toast--info .toast__icon::before { content: "i"; font-style: italic; }
.toast--error .toast__icon { background: #a8322c; }
.toast--error .toast__icon::before { content: "!"; }

/* ------------------------------------------------------------------ */
/*  19. RESPONSIVE                                                     */
/* ------------------------------------------------------------------ */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .why { grid-template-columns: 1fr; gap: 34px; }
  .why__media { min-height: 260px; }
  .order { grid-template-columns: 1fr; gap: 32px; }
  .reviews { grid-template-columns: 1fr; }
  .qv { grid-template-columns: 1fr; }
  .qv__media { border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 30px; }
  .qv__body { padding: 28px 26px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  /* Гар утсанд флаконуудыг нуулгаж, зөвхөн градиент дэвсгэр + текст */
  .hero { background: transparent; }
  .hero__inner { min-height: auto; padding: 52px 0 60px; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    transition: transform .3s var(--ease);
  }
  body.nav-open .nav { transform: translateY(0); }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .toolbar { flex-direction: column; align-items: stretch; }
  .toolbar__right { flex-direction: column; }
  .search, .select { width: 100%; }
  .search input { width: 100%; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .card__name { font-size: 18px; }
  .card__price { font-size: 19px; }
  .card__add { padding: 10px 14px; font-size: 13px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
  .container { padding-inline: 18px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card__body { padding: 14px; }
  .card__sizes { gap: 5px; }
  .size-chip { padding: 7px 4px; font-size: 12px; }
  .hero__stats { gap: 24px; }
  .features__grid { grid-template-columns: 1fr; }
}

/* Хөдөлгөөн багасгах горим */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}

/* ==================================================================== */
/*  20. ХЭРЭГЛЭГЧ · НЭВТРЭЛТ · ПРОФАЙЛ · ЗАХИАЛГЫН ТҮҮХ                   */
/* ==================================================================== */

.btn--sm { padding: 9px 16px; font-size: 13.5px; }
.muted { color: var(--muted); }
.load-error { text-align: center; color: var(--rose); padding: 50px 0; grid-column: 1 / -1; }

/* --- Толгой дахь хэрэглэгчийн товч ба цэс --- */
.account-area { display: flex; align-items: center; }
.account { position: relative; }
.account__btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 100px; padding: 4px 14px 4px 4px;
  transition: border-color .2s, box-shadow .2s;
}
.account__btn:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.account__avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, var(--gold), var(--gold-dark));
  color: #fff; font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.account__name { font-size: 14px; font-weight: 600; max-width: 90px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  width: 230px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; z-index: 130;
}
.menu__head {
  padding: 10px 12px 12px; margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column;
  font-weight: 600; font-size: 14px; color: var(--ink);
}
.menu__head span { font-weight: 400; font-size: 12px; color: var(--muted); margin-top: 2px; }
.menu__item {
  display: block; width: 100%; text-align: left;
  background: none; border: none;
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--ink);
  transition: background .15s;
}
.menu__item:hover { background: var(--surface-2); }
.menu__item--danger { color: #a8322c; }

/* --- Нэвтрэх / Бүртгүүлэх --- */
.auth { padding: 34px; }
.auth__tabs {
  display: flex; gap: 4px; margin-bottom: 22px;
  background: var(--surface-2); border-radius: 100px; padding: 4px;
}
.auth__tab {
  flex: 1; border: none; background: none;
  padding: 10px; border-radius: 100px;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  transition: background .18s, color .18s, box-shadow .18s;
}
.auth__tab.is-active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.auth__form { display: grid; gap: 15px; }
.auth__err {
  background: #fdecea; color: #a8322c;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 13.5px; margin: 0 0 6px;
}
.auth__note {
  background: var(--gold-soft); color: var(--ink-soft);
  padding: 11px 14px; border-radius: var(--radius-sm);
  font-size: 13.5px; margin: 0 0 16px;
}

/* --- Профайл --- */
.profile { padding: 34px; }
.profile form { display: grid; gap: 15px; }
.modal__title { font-size: 24px; margin-bottom: 20px; }
.profile__sep { border: none; border-top: 1px solid var(--line); margin: 6px 0; }
.profile__hint { font-size: 13px; color: var(--muted); margin: 0; }

/* --- Захиалга амжилттай --- */
.checkout { padding: 38px; text-align: center; }
.checkout__badge {
  width: 58px; height: 58px; margin: 0 auto 16px;
  border-radius: 50%; background: #e4efe0; color: #3a5a40;
  font-size: 30px; display: flex; align-items: center; justify-content: center;
}
.checkout__summary { text-align: left; }
.checkout__actions { text-align: left; }

/* --- Миний захиалга --- */
.orders-view { padding: 32px; }
.myorders { display: grid; gap: 12px; }
.myorder {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; background: var(--surface-2);
}
.myorder__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.myorder__code { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.myorder__date { font-size: 12.5px; color: var(--muted); margin: 2px 0 10px; }
.myorder__items { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 10px; line-height: 1.6; }
.myorder__total { margin: 0; font-size: 14px; }

/* --- Захиалгын төлвийн шошго --- */
.status {
  display: inline-block; padding: 4px 11px; border-radius: 100px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
}
.st-new        { background: #e7eefc; color: #2f4a8f; }
.st-confirmed  { background: #e4efe0; color: #3a5a40; }
.st-delivering { background: #fdf0d8; color: #8a6d1f; }
.st-done       { background: #e8e6ea; color: #4a4a52; }
.st-cancelled  { background: #fdecea; color: #a8322c; }

@media (max-width: 480px) {
  .account__name { display: none; }
  .auth, .profile, .orders-view, .checkout { padding: 26px 22px; }
}

/* ==================================================================== */
/*  21. ГРАДИЕНТ ТЕМА (цэнхэр → ягаан)                                   */
/*  Дэвсгэр дээр шууд байрлах текстийг цайвар болгож, хэсгүүдийг         */
/*  тунгалаг болгоно. Картууд цагаан хэвээр (уншихад тохиромжтой).       */
/* ==================================================================== */

/* --- Хэсгүүдийг тунгалаг болгож градиентийг харуулах --- */
.section--alt,
.section--order { background: transparent; }

/* --- Дэвсгэр дээрх гарчиг, дэд текстийг цайвар --- */
.section__title { color: #fff; }
.section__sub { color: rgba(255, 255, 255, .88); }
.section__eyebrow { color: #ffe3ad; }
.result-count { color: rgba(255, 255, 255, .85); }

/* --- Hero --- */
.hero__title { color: #fff; text-shadow: 0 2px 20px rgba(30, 16, 70, .3); }
.hero__title em { color: #ffe3ad; }
.hero__lead { color: #fff; }
.hero__desc { color: rgba(255, 255, 255, .9); }
.hero__eyebrow {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
  backdrop-filter: blur(4px);
}
.hero__stats b { color: #fff; }
.hero__stats span { color: rgba(255, 255, 255, .8); }
.hero__cta .btn--ghost {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}
.hero__cta .btn--ghost:hover { background: rgba(255, 255, 255, .28); }

/* --- Толгой: frosted цагаан --- */
.header { background: rgba(255, 255, 255, .7); }
.header.is-scrolled { background: rgba(255, 255, 255, .86); }

/* --- Давуу тал (features): frosted зурвас --- */
.features {
  background: rgba(255, 255, 255, .1);
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(6px);
}
.feature h3 { color: #fff; }
.feature p { color: rgba(255, 255, 255, .82); }
.feature__icon { background: rgba(255, 255, 255, .2); color: #fff; }

/* --- Яагаад декант --- */
.why__list li { color: rgba(255, 255, 255, .9); }
.why__list b { color: #fff; }
.why__list li::before { border-color: #fff; }
.why__media {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
  backdrop-filter: blur(4px);
}

/* --- Захиалгын мэдээлэл --- */
.order__lead { color: rgba(255, 255, 255, .9); }
.order__contact li { border-bottom-color: rgba(255, 255, 255, .28); }
.order__contact span:first-child { color: rgba(255, 255, 255, .72); }
.order__contact a, .order__contact li > span { color: #fff; }
.order__contact a:hover { color: #ffe3ad; }
.order__social a { border-color: rgba(255, 255, 255, .4); color: #fff; }
.order__social a:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* --- Шүүлтүүр / хайлт: frosted цагаан --- */
.filter-chip { background: rgba(255, 255, 255, .88); border-color: rgba(255, 255, 255, .5); }
.filter-chip:hover { background: #fff; }
.search, .select { background: rgba(255, 255, 255, .9); border-color: rgba(255, 255, 255, .5); }

/* --- Футер: тунгалаг, ягаан харагдана --- */
.footer { background: transparent; color: #fff; }
.footer__brand .logo__name { color: #fff; }
.footer__brand p { color: rgba(255, 255, 255, .82); }
.footer__col h4 { color: #fff; }
.footer__col a, .footer__col span { color: rgba(255, 255, 255, .82); }
.footer__col a:hover { color: #ffe3ad; }
.footer__bottom {
  border-top-color: rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .75);
}

/* --- Логоны дэд текст толгой дээр --- */
.logo__sub { color: var(--muted); }

/* ==================================================================== */
/*  22. OTP / НУУЦ ҮГ СЭРГЭЭХ / БАТАЛГААЖУУЛАЛТ                          */
/* ==================================================================== */
.auth__row { margin-top: 12px; text-align: center; }
.auth__row--split { display: flex; justify-content: space-between; align-items: center; }
.auth__link {
  background: none; border: none; padding: 4px 2px;
  color: var(--gold-dark); font-size: 13.5px; font-weight: 600; cursor: pointer;
}
.auth__link:hover { color: var(--ink); text-decoration: underline; }
.otp-input {
  text-align: center; font-size: 26px !important; letter-spacing: 10px;
  font-weight: 700; font-family: var(--font-display);
}
.profile__verify { margin: -4px 0 6px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.verify-badge {
  font-size: 12.5px; font-weight: 600; color: #a8322c;
  background: #fdecea; padding: 4px 11px; border-radius: 100px;
}
.verify-badge--ok { color: #3a5a40; background: #e4efe0; }
