/* ============================================================================
   YUNFORMA · e-yunarmiya.ru
   Архитектура взята из /root/Исходники/Дизайн (React-маркетплейс).
   Бренд YUNFORMA: красный #c40012, чёрный #090b10, slate-серые из референса.
   ============================================================================ */

:root {
  /* Бренд — заменяет teal-* из референса */
  --red:        #c40012;
  --red-hover:  #a4000f;
  --red-soft:   #fce8ea;
  --red-bright: #e8121f;

  /* Slate-палитра как в референсе */
  --bg:           #f8fafc; /* slate-50 */
  --surface:      #ffffff;
  --slate-50:     #f8fafc;
  --slate-100:    #f1f5f9;
  --slate-200:    #e2e8f0;
  --slate-300:    #cbd5e1;
  --slate-400:    #94a3b8;
  --slate-500:    #64748b;
  --slate-600:    #475569;
  --slate-700:    #334155;
  --slate-800:    #1e293b;
  --slate-900:    #0f172a;

  /* Семантика */
  --amber-50:  #fffbeb;
  --amber-100: #fef3c7;
  --amber-500: #f59e0b;
  --amber-800: #92400e;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --rose-500:  #f43f5e;

  /* Радиусы (как в дизайне) */
  --r-lg:   8px;
  --r-xl:  12px;
  --r-2xl: 16px;
  --r-3xl: 24px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm: 0 4px 12px rgba(15,23,42,0.06);
  --shadow-md: 0 10px 24px rgba(15,23,42,0.10);
  --shadow-lg: 0 20px 50px rgba(15,23,42,0.20);

  --container: 80rem; /* max-w-7xl = 1280px */
  --pad: clamp(16px, 4vw, 32px);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --trans: 180ms ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--slate-800);
  background: var(--slate-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; height: auto; }
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, h5 { margin: 0; }
::selection { background: var(--red); color: #fff; }
body.locked { overflow: hidden; }

/* ===== Containers ===== */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); width: 100%; }

/* ============================================================================
   TOPBAR — bg-slate-100, hidden md
   ============================================================================ */
.topbar {
  background: var(--slate-100);
  border-bottom: 1px solid var(--slate-200);
  color: var(--slate-500);
  font-size: 12px;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 36px; padding-block: 6px;
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar a, .topbar button { color: inherit; background: none; border: none; padding: 0; font-size: inherit; transition: color var(--trans); }
.topbar a:hover, .topbar button:hover { color: var(--red); }
.topbar__pin { display: inline-flex; align-items: center; gap: 4px; }
.topbar__pin svg { width: 14px; height: 14px; color: var(--red); }
.topbar a.is-strong { font-weight: 500; color: var(--slate-700); }
@media (max-width: 767.98px) { .topbar { display: none; } }

/* ============================================================================
   HEADER — bg-white, sticky, border-b, shadow-sm
   ============================================================================ */
.header {
  background: #fff;
  border-bottom: 1px solid var(--slate-200);
  position: sticky; top: 0; z-index: 30;
  box-shadow: var(--shadow-xs);
  padding-block: 16px;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
@media (min-width: 768px) { .header__inner { flex-wrap: nowrap; } }

.header__logo-wrap {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
@media (min-width: 768px) { .header__logo-wrap { width: auto; } }

.logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 22px; font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--slate-800);
}
.logo__mark {
  width: 36px; height: 36px;
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 4px;
}
.logo__mark img { width: 100%; height: 100%; object-fit: contain; }
.logo__brand { display: inline-flex; align-items: baseline; }
.logo__brand span { color: var(--red); }

.header__mobile-actions { display: flex; align-items: center; gap: 12px; }
@media (min-width: 768px) { .header__mobile-actions { display: none; } }

.header__search-row {
  display: flex; align-items: center; gap: 12px;
  width: 100%; flex: 1;
}
@media (min-width: 768px) { .header__search-row { max-width: 720px; } }

.btn-catalog {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  height: 40px; padding: 0 20px;
  font-weight: 600; font-size: 14px;
  border: none; border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  white-space: nowrap;
  transition: background var(--trans);
}
.btn-catalog:hover { background: var(--red-hover); }
.btn-catalog svg { width: 16px; height: 16px; }

.search {
  position: relative; flex: 1;
}
.search input {
  width: 100%; height: 40px;
  padding: 0 36px 0 16px;
  background: var(--slate-100); color: var(--slate-800);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  font-size: 14px; font-family: inherit;
}
.search input::placeholder { color: var(--slate-400); }
.search input:focus { outline: none; background: #fff; border-color: var(--red); box-shadow: 0 0 0 3px rgba(196,0,18,0.10); }
.search svg {
  position: absolute; right: 12px; top: 50%; margin-top: -8px;
  width: 16px; height: 16px; color: var(--slate-400);
  pointer-events: none;
}

.header__actions {
  display: none;
  align-items: center; gap: 24px;
  font-size: 14px;
}
@media (min-width: 768px) { .header__actions { display: flex; } }

.header__btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; padding: 4px;
  color: var(--slate-700);
  position: relative; transition: color var(--trans);
}
.header__btn:hover { color: var(--red); }
.header__btn svg { width: 20px; height: 20px; color: var(--red); }
.header__btn svg.is-neutral { color: currentColor; }
.header__btn .count {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; line-height: 18px;
  text-align: center; border-radius: var(--r-pill);
}

/* ============================================================================
   CATEGORIES NAV — bg-white, border-b, scrollable
   ============================================================================ */
.cats-nav {
  background: #fff;
  border-bottom: 1px solid var(--slate-200);
  overflow-x: auto;
  scrollbar-width: none;
}
.cats-nav::-webkit-scrollbar { display: none; }
.cats-nav__inner {
  display: flex; align-items: center; gap: 24px;
  padding-block: 12px; white-space: nowrap;
  font-size: 14px; font-weight: 500;
}
.cats-nav button, .cats-nav a {
  background: none; border: none; padding: 4px 0;
  color: var(--slate-600);
  border-bottom: 2px solid transparent;
  transition: color var(--trans), border-color var(--trans);
  font: inherit;
}
.cats-nav button:hover, .cats-nav a:hover { color: var(--red); }
.cats-nav .is-active { color: var(--red); border-color: var(--red); }

/* ============================================================================
   STRIP description — bg-slate-100, text-center
   ============================================================================ */
.strip {
  background: var(--slate-100);
  border-bottom: 1px solid var(--slate-200);
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--slate-500);
}

/* ============================================================================
   MAIN
   ============================================================================ */
.main {
  flex: 1;
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  padding: 16px var(--pad);
}
@media (min-width: 768px) { .main { padding-block: 20px; } }

/* Анимация появления секций */
.fade { animation: fadeIn 280ms ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.section + .section { margin-top: 16px; }
@media (min-width: 768px) { .section + .section { margin-top: 24px; } }

/* ============================================================================
   PROMO RED CALLOUT (заменяет зелёную плашку «Витрина заявок» из референса)
   ============================================================================ */
.callout {
  background: var(--red-soft);
  border: 1px solid #fbcfd2;
  border-radius: var(--r-2xl);
  padding: 24px;
  display: flex; flex-direction: column; gap: 24px;
  align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-xs);
}
@media (min-width: 1024px) { .callout { flex-direction: row; } }
.callout__lead { display: flex; align-items: flex-start; gap: 16px; flex: 1; }
.callout__icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: #fff; border: 1px solid #fbcfd2; border-radius: var(--r-xl);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--red); box-shadow: var(--shadow-xs);
}
.callout__icon svg { width: 40px; height: 40px; }
.callout__title { font-size: 18px; font-weight: 700; color: var(--slate-800); }
.callout__title em { font-style: normal; color: var(--red); }
.callout__text { font-size: 14px; color: var(--slate-500); margin-top: 4px; max-width: 640px; line-height: 1.55; }
.callout__cta { display: flex; flex-direction: column; gap: 12px; width: 100%; }
@media (min-width: 640px) { .callout__cta { flex-direction: row; } }
@media (min-width: 1024px) { .callout__cta { width: auto; flex-shrink: 0; } }
.callout__cta .btn { white-space: nowrap; }

/* Общие кнопки */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent;
  font-family: inherit; font-weight: 700; font-size: 13px;
  padding: 12px 24px;
  border-radius: var(--r-xl);
  text-align: center;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
  background: transparent;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn.btn-lg svg { width: 18px; height: 18px; }
.btn-red { background: var(--red); color: #fff; box-shadow: var(--shadow-xs); }
.btn-red:hover { background: var(--red-hover); color: #fff; }
.btn-outline-red { border-color: var(--red); color: var(--red); background: #fff; }
.btn-outline-red:hover { background: var(--red-soft); }
.btn-outline { border-color: var(--slate-200); color: var(--slate-600); background: #fff; }
.btn-outline:hover { background: var(--slate-50); }
.btn-dark { background: var(--slate-900); color: #fff; }
.btn-dark:hover { background: #16191f; color: #fff; }
.btn-lg { padding: 14px 28px; font-size: 14px; }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-block { display: flex; width: 100%; }

/* ============================================================================
   PROMO GRID — большой баннер + малый (lg:grid-cols-4)
   ============================================================================ */
.promo-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 1024px) { .promo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.promo-main {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-3xl);
  padding: 24px;
  display: flex; flex-direction: column; align-items: center;
  position: relative; overflow: hidden;
  min-height: 350px; box-shadow: var(--shadow-xs);
}
@media (min-width: 1024px) { .promo-main { grid-column: span 3 / span 3; padding: 32px; flex-direction: row; } }
.promo-main__tag {
  position: absolute; top: 24px; right: 32px; text-align: right;
}
.promo-main__tag .small { font-size: 10px; color: var(--slate-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; display: block; }
.promo-main__tag .big { font-size: 18px; font-weight: 900; color: var(--slate-300); }
.promo-main__media {
  width: 100%; padding: 16px;
  display: flex; align-items: center; justify-content: center;
}
.promo-main__media img { max-height: 280px; width: auto; object-fit: contain; }
@media (min-width: 768px) {
  .promo-main__media { width: 50%; }
}
.promo-main__content {
  width: 100%;
  display: flex; flex-direction: column; gap: 16px;
  text-align: left;
}
@media (min-width: 768px) { .promo-main__content { width: 50%; padding-left: 24px; } }
.promo-main__title {
  font-size: 24px; font-weight: 800; color: var(--slate-800);
  line-height: 1.2;
}
@media (min-width: 768px) { .promo-main__title { font-size: 30px; } }
.promo-main__title small { display: block; font-size: 18px; font-weight: 500; color: var(--slate-500); }
.promo-main__pricelbl { font-size: 14px; color: var(--slate-400); }
.promo-main__price {
  font-size: 24px; font-weight: 800; color: var(--red);
}
.promo-main__price s { font-size: 14px; color: var(--slate-400); font-weight: 400; margin-left: 8px; }
.promo-main__cta { display: flex; align-items: center; gap: 12px; padding-top: 8px; flex-wrap: wrap; }

.promo-side {
  background: var(--amber-50);
  border: 1px solid var(--amber-100);
  border-radius: var(--r-3xl);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: var(--shadow-xs);
}
.promo-side__tag {
  display: inline-block;
  background: var(--amber-100); color: var(--amber-800);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 8px; border-radius: var(--r-lg);
  align-self: flex-start;
}
.promo-side__title { font-size: 18px; font-weight: 700; color: var(--slate-800); margin-top: 16px; line-height: 1.3; }
.promo-side__text { font-size: 14px; color: var(--slate-500); margin-top: 8px; line-height: 1.5; }
.promo-side__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 24px;
}
.promo-side__price { font-size: 18px; font-weight: 800; color: var(--red); }
.promo-side__arrow {
  width: 40px; height: 40px;
  background: var(--red); color: #fff;
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; justify-content: center;
  border: none; box-shadow: var(--shadow-xs);
  transition: background var(--trans);
}
.promo-side__arrow:hover { background: var(--red-hover); }
.promo-side__arrow svg { width: 20px; height: 20px; }

/* ============================================================================
   BRANDS / quick categories grid (6 columns)
   ============================================================================ */
.section__title { font-size: 20px; font-weight: 700; color: var(--slate-800); margin-bottom: 16px; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .brands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .brands-grid { grid-template-columns: repeat(6, 1fr); } }
.brand-tile {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-2xl);
  padding: 16px;
  min-height: 100px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--trans);
  text-align: center;
}
.brand-tile:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.brand-tile__logo {
  font-size: 16px; font-weight: 900; color: var(--slate-400);
  letter-spacing: 0.12em; margin-bottom: 4px;
}
.brand-tile__name { font-size: 12px; font-weight: 500; color: var(--slate-500); }

/* ============================================================================
   DARK DEMO BLOCK — bg-slate-900, 2 cols
   ============================================================================ */
.dark-block {
  background: var(--slate-900);
  color: #fff;
  border-radius: var(--r-3xl);
  padding: 24px;
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
}
@media (min-width: 768px) { .dark-block { padding: 32px; grid-template-columns: 1fr 1fr; } }
.dark-block__tag {
  display: inline-block;
  background: var(--red); color: #fff;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 12px; border-radius: var(--r-pill);
}
.dark-block__title {
  font-size: 24px; font-weight: 800; line-height: 1.2; margin-top: 16px; color: #fff;
}
@media (min-width: 768px) { .dark-block__title { font-size: 30px; } }
.dark-block__text { color: var(--slate-300); font-size: 14px; margin-top: 12px; line-height: 1.55; }
.dark-block__cta { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.dark-block__side {
  background: var(--slate-800);
  padding: 24px;
  border-radius: var(--r-2xl);
  border: 1px solid var(--slate-700);
  display: flex; flex-direction: column; gap: 16px;
}
.dark-block__side h4 {
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  color: #fff;
}
.dark-block__side h4::before {
  content: ""; width: 10px; height: 10px;
  background: var(--emerald-500); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: 0.4; } }
.dark-block__feed { display: flex; flex-direction: column; }
.dark-block__feed-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-700);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.dark-block__feed-item:first-child { padding-top: 0; }
.dark-block__feed-item:last-child { padding-bottom: 0; border-bottom: none; }
.dark-block__feed-item h5 { font-size: 14px; font-weight: 600; color: #fff; }
.dark-block__feed-item p { font-size: 12px; color: var(--slate-400); margin-top: 2px; }
.dark-block__feed-item span {
  background: var(--slate-700); color: var(--slate-300);
  font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: var(--r-lg);
  white-space: nowrap;
}

/* ============================================================================
   POPULAR PRODUCTS — grid-cols-4 / sm:2 / md:3 / lg:4
   ============================================================================ */
.populars-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
}
.populars-head h3 { font-size: 24px; font-weight: 900; color: var(--slate-800); }
.populars-head a {
  font-size: 13px; font-weight: 700; color: var(--red);
  display: inline-flex; align-items: center; gap: 4px;
}
.populars-head a:hover { color: var(--red-hover); }
.populars-head a svg { width: 14px; height: 14px; }

.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .products { grid-template-columns: repeat(4, 1fr); } }
.products-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .products-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-3 { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================================
   PRODUCT CARD — точно как в дизайне (bg-white, border, rounded-2xl, p-4)
   ============================================================================ */
.product {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-2xl);
  padding: 16px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  transition: box-shadow var(--trans), border-color var(--trans), transform var(--trans);
  cursor: pointer;
}
.product:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(196,0,18,0.35);
  transform: translateY(-2px);
}
.product__fav {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: var(--slate-50); border: none;
  border-radius: var(--r-pill);
  color: var(--slate-400);
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: color var(--trans), background var(--trans);
}
.product__fav:hover { color: var(--rose-500); background: var(--slate-100); }
.product__fav.is-active { color: var(--rose-500); }
.product__fav svg { width: 18px; height: 18px; }

.product__img {
  position: relative;
  height: 176px; width: 100%;
  margin-bottom: 16px;
  background: var(--slate-50);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product__img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.product__img--placeholder { color: var(--slate-300); width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.product__img--placeholder svg { width: 56px; height: 56px; opacity: 0.4; }
.product__img-cap {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
}
.product__img-cap span {
  background: var(--slate-800); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 6px 12px; border-radius: var(--r-lg);
}

.product__brand {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--red);
}
.product__title {
  font-size: 13px; font-weight: 700;
  color: var(--slate-800);
  line-height: 1.35;
  margin-top: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(13px * 1.35 * 2);
  transition: color var(--trans);
}
.product:hover .product__title { color: var(--red); }
.product__meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; margin-top: 8px;
  color: var(--slate-500);
}
.product__meta .star { color: var(--amber-500); font-weight: 700; }
.product__meta .sep { color: var(--slate-300); }
.product__price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 12px;
}
.product__price {
  font-size: 18px; font-weight: 900; color: var(--slate-900);
  font-variant-numeric: tabular-nums;
}
.product__price-old {
  font-size: 11px; color: var(--slate-400); text-decoration: line-through;
}
.product__add {
  width: 100%; height: 38px;
  background: var(--red); color: #fff;
  border: none; border-radius: var(--r-xl);
  font-size: 12px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px;
  transition: background var(--trans);
}
.product__add:hover { background: var(--red-hover); }
.product__add svg { width: 14px; height: 14px; }

/* ============================================================================
   CATALOG PAGE
   ============================================================================ */
.catalog-head {
  display: flex; flex-direction: column; gap: 16px;
  justify-content: space-between; align-items: flex-start;
  border-bottom: 1px solid var(--slate-200); padding-bottom: 16px;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .catalog-head { flex-direction: row; align-items: center; } }
.catalog-head h2 { font-size: 24px; font-weight: 900; color: var(--slate-800); }
.catalog-head p { color: var(--slate-500); font-size: 14px; }
.catalog-reset {
  font-size: 12px; font-weight: 600;
  color: var(--rose-500);
  border: 1px solid #fecdd3; background: #fff;
  padding: 6px 12px; border-radius: var(--r-lg);
  transition: border-color var(--trans);
}
.catalog-reset:hover { border-color: var(--rose-500); color: #be123c; }

.catalog-layout {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 1024px) { .catalog-layout { grid-template-columns: 280px 1fr; } }

.sidebar {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-2xl);
  padding: 20px;
  display: flex; flex-direction: column; gap: 24px;
  align-self: start;
}
.sidebar__title {
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--slate-800);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--slate-100);
}
.sidebar__list { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.sidebar__list button {
  width: 100%; text-align: left;
  background: none; border: none;
  font-size: 13px; font-weight: 500;
  color: var(--slate-600);
  padding: 6px 12px; border-radius: var(--r-lg);
  transition: background var(--trans), color var(--trans);
}
.sidebar__list button:hover { background: var(--slate-50); }
.sidebar__list button.is-active {
  background: var(--red-soft); color: #b00010;
}
.sidebar__check {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--slate-600);
  margin-top: 4px;
}
.sidebar__check input { accent-color: var(--red); width: 14px; height: 14px; }
.sidebar__tip {
  background: rgba(196,0,18,0.05);
  border: 1px solid #fbcfd2;
  border-radius: var(--r-xl);
  padding: 16px; font-size: 12px;
  color: var(--slate-600); line-height: 1.5;
}
.sidebar__tip strong { color: #b00010; display: block; margin-bottom: 4px; font-size: 13px; }

.empty-state {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-3xl);
  padding: 48px;
  text-align: center;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.empty-state__icon { font-size: 40px; color: var(--slate-300); }
.empty-state h3 { font-size: 18px; font-weight: 700; color: var(--slate-700); }
.empty-state p { font-size: 13px; color: var(--slate-400); }

/* ============================================================================
   CART DRAWER (fixed, right, max-w-md)
   ============================================================================ */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(15,23,42,0.6);
  display: none;
  animation: fadeIn 200ms;
}
.drawer-overlay.is-open { display: flex; justify-content: flex-end; }
.drawer-overlay--left.is-open { justify-content: flex-start; }
.drawer {
  background: #fff;
  width: 100%; max-width: 28rem; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  animation: slideLeft 280ms ease;
}
.drawer--left { box-shadow: 10px 0 30px rgba(0,0,0,0.2); animation: slideRight 280ms ease; }
@keyframes slideLeft  { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes slideRight { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.drawer__header {
  padding: 24px; border-bottom: 1px solid var(--slate-200);
  background: var(--slate-50);
  display: flex; justify-content: space-between; align-items: center;
}
.drawer__header h3 { font-size: 16px; font-weight: 700; color: var(--slate-800); display: flex; align-items: center; gap: 8px; }
.drawer__header h3 svg { width: 18px; height: 18px; color: var(--red); }
.drawer__header h3 .count {
  background: var(--red-soft); color: #b00010;
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: var(--r-pill);
}
.drawer__close {
  width: 32px; height: 32px;
  background: none; border: none;
  color: var(--slate-400);
  font-size: 18px; font-weight: 700;
  transition: color var(--trans);
}
.drawer__close:hover { color: var(--slate-700); }
.drawer__body { flex: 1; overflow-y: auto; padding: 24px; }
.drawer__footer {
  padding: 24px;
  border-top: 1px solid var(--slate-200);
  background: var(--slate-50);
}
.drawer__footer .total {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
}
.drawer__footer .total span:first-child { color: var(--slate-500); font-weight: 500; }
.drawer__footer .total span:last-child { font-size: 20px; font-weight: 900; color: var(--slate-800); }
.drawer__footer button { margin-top: 16px; }
.drawer__footer p { font-size: 10px; color: var(--slate-400); text-align: center; margin-top: 8px; }

/* Cart item */
.cart-item {
  display: flex; gap: 16px;
  padding: 12px;
  border: 1px solid var(--slate-100);
  border-radius: var(--r-xl);
  transition: background var(--trans);
}
.cart-item + .cart-item { margin-top: 12px; }
.cart-item:hover { background: var(--slate-50); }
.cart-item__img {
  width: 64px; height: 64px;
  background: var(--slate-100); border-radius: var(--r-lg);
  overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-300);
}
.cart-item__img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-item__body { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cart-item__title { font-size: 12px; font-weight: 700; color: var(--slate-800); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cart-item__brand { font-size: 10px; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.12em; }
.cart-item__row { display: flex; justify-content: space-between; align-items: center; padding-top: 6px; }
.cart-item__price { font-size: 14px; font-weight: 900; color: var(--red); }
.cart-item__qty {
  display: flex; align-items: center; gap: 8px;
  background: var(--slate-100); padding: 4px;
  border-radius: var(--r-lg);
}
.cart-item__qty button {
  width: 20px; height: 20px;
  background: #fff; color: var(--slate-600);
  border: none; border-radius: 4px;
  font-size: 12px;
  transition: background var(--trans);
}
.cart-item__qty button:hover { background: var(--slate-200); }
.cart-item__qty span { font-size: 11px; font-weight: 700; padding: 0 4px; }

.cart-empty {
  height: 100%; min-height: 360px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 16px;
}
.cart-empty__icon { font-size: 40px; color: var(--slate-300); }
.cart-empty h4 { font-weight: 700; color: var(--slate-600); }
.cart-empty p { font-size: 12px; color: var(--slate-400); padding: 0 24px; }

/* Mobile drawer */
.drawer--left .drawer__body ul { display: flex; flex-direction: column; }
.drawer--left .drawer__body a {
  display: block; padding: 12px 4px;
  color: var(--slate-800); font-weight: 600; font-size: 15px;
  border-bottom: 1px solid var(--slate-100);
}
.drawer--left .drawer__body a:hover { color: var(--red); }

/* ============================================================================
   MODAL
   ============================================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(15,23,42,0.6);
  display: none; align-items: center; justify-content: center;
  padding: 16px;
  animation: fadeIn 200ms;
}
.modal-overlay.is-open { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--r-3xl);
  max-width: 32rem; width: 100%;
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 92vh; overflow-y: auto;
  animation: scaleUp 200ms ease;
}
@media (min-width: 768px) { .modal { padding: 32px; } }
.modal--lg { max-width: 36rem; }
@keyframes scaleUp { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none;
  color: var(--slate-400); font-size: 18px; font-weight: 700;
  transition: color var(--trans);
}
.modal__close:hover { color: var(--slate-700); }
.modal h3 { font-size: 20px; font-weight: 700; color: var(--slate-800); margin-bottom: 8px; }
.modal p.lead { font-size: 12px; color: var(--slate-400); }
.modal .modal-section + .modal-section { margin-top: 16px; }
.modal label { display: block; font-size: 12px; font-weight: 600; color: var(--slate-600); margin-bottom: 4px; }
.modal input, .modal textarea, .modal select {
  width: 100%;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  padding: 10px 16px;
  font-size: 12px;
  font-family: inherit;
}
.modal input:focus, .modal textarea:focus, .modal select:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(196,0,18,0.10);
}
.modal textarea { resize: vertical; min-height: 80px; }
.modal .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modal .actions { display: flex; gap: 12px; padding-top: 16px; }
.modal .actions .btn { flex: 1; }
.modal .checkbox { display: flex; align-items: flex-start; gap: 8px; font-size: 11px; color: var(--slate-500); margin-top: 8px; }
.modal .checkbox input { width: auto; margin-top: 2px; accent-color: var(--red); }
.modal .checkbox a { color: var(--red); text-decoration: underline; }
.modal .success { display: none; padding: 12px; background: rgba(16,185,129,0.1); color: #047857; border-radius: var(--r-xl); font-size: 12px; }
.modal.is-sent .success { display: block; }
.modal.is-sent form { display: none; }

/* ============================================================================
   TOAST
   ============================================================================ */
.toast {
  position: fixed; top: 20px; right: 20px;
  background: var(--emerald-500); color: #fff;
  font-size: 13px; font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  opacity: 0; transform: translateY(-10px);
  transition: opacity 220ms, transform 220ms;
  max-width: 360px;
}
.toast.is-visible { opacity: 1; transform: translateY(0); }
.toast-error { background: #ef4444; }
.toast-info  { background: #2563eb; }
@media (max-width: 480px) {
  .toast { left: 12px; right: 12px; max-width: none; top: auto; bottom: 12px; }
}

/* ============================================================================
   FOOTER — bg-slate-900
   ============================================================================ */
.footer {
  background: var(--slate-900);
  color: #fff;
  border-top: 1px solid var(--slate-800);
  padding: 48px var(--pad) 32px;
  margin-top: 48px;
}
.footer__grid {
  max-width: var(--container);
  margin-inline: auto;
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(4, 1fr); } }
.footer__brand { font-size: 22px; font-weight: 900; color: #fff; }
.footer__brand span { color: var(--red); }
.footer__about p { font-size: 12px; color: var(--slate-400); line-height: 1.55; margin-top: 12px; }
.footer__about .copy { font-size: 11px; color: var(--slate-500); margin-top: 12px; }
.footer h4 {
  font-size: 13px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer ul a, .footer ul button {
  font-size: 12px; color: var(--slate-400);
  background: none; border: none; padding: 0; text-align: left;
  font-family: inherit; transition: color var(--trans);
  display: inline-block;
}
.footer ul a:hover, .footer ul button:hover { color: var(--red); }
.footer__phone { font-size: 17px; font-weight: 700; color: var(--red); }
.footer__phone-hint { font-size: 11px; color: var(--slate-500); }

/* ============================================================================
   HERO SLIDER — вложенная витрина-карточка внутри promo-main
   ============================================================================ */
.hero-slider {
  width: 100%;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-3xl);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .hero-slider { padding: 24px; } }
.hero-slider__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) { .hero-slider__inner { grid-template-columns: 1.05fr 1fr; gap: 28px; } }

.hero-slider__media {
  position: relative;
  background: linear-gradient(135deg, var(--slate-50) 0%, #fff 100%);
  border: 1px solid var(--slate-100);
  border-radius: var(--r-2xl);
  aspect-ratio: 4 / 3;
  display: flex; align-items: stretch; justify-content: stretch;
  overflow: hidden;
  padding: 0;
}
@media (min-width: 768px) { .hero-slider__media { aspect-ratio: 3 / 4; min-height: 360px; } }
.hero-slider__media-tag {
  position: absolute;
  top: 12px; right: 12px;
  text-align: right;
  pointer-events: none;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  padding: 6px 10px;
  border-radius: 8px;
}
.hero-slider__media-tag .small { display: block; font-size: 9px; color: var(--slate-400); font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; }
.hero-slider__media-tag .big { font-size: 12px; font-weight: 800; color: var(--red); letter-spacing: 0.05em; }
.hero-slider__img-wrap {
  width: 100%; height: 100%;
  display: flex; align-items: stretch; justify-content: stretch;
  position: relative;
}
.hero-slider__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 380ms ease, transform 480ms cubic-bezier(.2,.7,.3,1);
}
.hero-slider__img.is-fading { opacity: 0; transform: scale(1.02) translateX(8px); }
.hero-slider__img--logo {
  width: auto; height: auto;
  max-width: 60%; max-height: 60%;
  object-fit: contain;
  opacity: 0.85;
  margin: auto;
}

.hero-slider__content {
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px;
}
.hero-slider__badge {
  display: inline-flex; align-items: center; align-self: flex-start;
  padding: 5px 12px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  border-radius: 999px;
  transition: opacity 280ms ease, transform 280ms ease;
}
.hero-slider__badge.is-fading { opacity: 0; transform: translateY(6px); }
.hero-slider__title {
  font-size: 22px; font-weight: 800; color: var(--slate-800);
  line-height: 1.2; margin: 0;
  transition: opacity 320ms ease, transform 320ms ease;
}
@media (min-width: 768px) { .hero-slider__title { font-size: 28px; } }
.hero-slider__title.is-fading { opacity: 0; transform: translateY(8px); }
.hero-slider__subtitle {
  font-size: 13px; color: var(--slate-500); line-height: 1.55; margin: 0;
  transition: opacity 320ms ease, transform 320ms ease;
}
@media (min-width: 768px) { .hero-slider__subtitle { font-size: 14px; } }
.hero-slider__subtitle.is-fading { opacity: 0; transform: translateY(8px); }

.hero-slider__price-block { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.hero-slider__price-label { font-size: 12px; color: var(--slate-400); }
.hero-slider__price {
  font-size: 26px; font-weight: 900; color: var(--red);
  font-variant-numeric: tabular-nums;
  line-height: 1; min-height: 26px;
}
@media (min-width: 768px) { .hero-slider__price { font-size: 32px; min-height: 32px; } }
.hero-slider__price-caret {
  display: inline-block; width: 2px; height: 0.9em;
  background: var(--red); margin-left: 2px; vertical-align: middle;
  animation: heroBlink 600ms steps(2) infinite;
}
.hero-slider__price-caret.is-hidden { animation: none; opacity: 0; }
@keyframes heroBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-slider__price-old { font-size: 14px; color: var(--slate-400); text-decoration: line-through; margin-left: 8px; font-weight: 400; }

.hero-slider__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.hero-slider__cta .btn { padding-left: 22px; padding-right: 22px; }
@media (max-width: 480px) { .hero-slider__cta .btn { flex: 1; } }

/* Controls — точки и стрелки */
.hero-slider__controls {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px;
  gap: 12px;
}
.hero-slider__dots {
  display: flex; align-items: center; gap: 8px;
}
.hero-slider__dot {
  width: 8px; height: 8px;
  background: var(--slate-200);
  border: none; border-radius: 999px;
  padding: 0; cursor: pointer;
  transition: width var(--trans), background var(--trans);
}
.hero-slider__dot:hover { background: var(--slate-300); }
.hero-slider__dot.is-active { width: 24px; background: var(--red); }
.hero-slider__arrows { display: flex; gap: 8px; }
.hero-slider__arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--slate-200);
  background: #fff;
  border-radius: 999px;
  color: var(--slate-600);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--trans);
}
.hero-slider__arrow:hover {
  background: var(--red); color: #fff; border-color: var(--red);
}
.hero-slider__arrow svg { width: 16px; height: 16px; }

/* Адаптация: на mobile content уменьшаем */
@media (max-width: 767px) {
  .hero-slider__content { min-height: 0; }
  .hero-slider__title { font-size: 20px; }
  .hero-slider__price { font-size: 24px; min-height: 24px; }
}

/* На время — promo-main можно сделать прозрачным (рамка теперь у slider) */
.promo-main:has(.hero-slider) {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  min-height: 0;
  display: block;
}
.promo-main:has(.hero-slider) .promo-main__tag,
.promo-main:has(.hero-slider) .promo-main__media,
.promo-main:has(.hero-slider) .promo-main__content { display: none; }

/* Уважение к motion-prefer */
@media (prefers-reduced-motion: reduce) {
  .hero-slider__img,
  .hero-slider__title,
  .hero-slider__subtitle,
  .hero-slider__badge { transition: none; }
  .hero-slider__price-caret { animation: none; }
}

/* ============================================================================
   PDP MODAL (полноценная карточка товара с галереей)
   ============================================================================ */
.modal--xl { max-width: 1080px; padding: 0; overflow: hidden; }
.pdp-modal { padding: 0; }
.pdp-modal .modal__close { background: rgba(255,255,255,0.95); border-radius: 999px; width: 36px; height: 36px; box-shadow: var(--shadow-sm); z-index: 10; }
.pdp-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 768px) { .pdp-grid { grid-template-columns: 1.1fr 1fr; } }

.pdp-gallery { background: var(--slate-50); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.pdp-main-img { aspect-ratio: 1/1; background: #fff; border-radius: var(--r-xl); overflow: hidden; padding: 24px; display: flex; align-items: center; justify-content: center; }
.pdp-main-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pdp-main-img svg { width: 80px; height: 80px; opacity: 0.4; }
.pdp-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-thumb { flex: 0 0 calc((100% - 32px) / 5); aspect-ratio: 1/1; background: #fff; border: 2px solid transparent; border-radius: var(--r-lg); overflow: hidden; padding: 4px; transition: border-color var(--trans); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp-thumb.is-active { border-color: var(--red); }
.pdp-thumb:hover { border-color: var(--slate-300); }
.pdp-thumb.is-active:hover { border-color: var(--red); }

.pdp-info { padding: 24px; display: flex; flex-direction: column; gap: 14px; max-height: 88vh; overflow-y: auto; }
@media (min-width: 768px) { .pdp-info { padding: 32px; } }
.pdp-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); margin: 0; }
.pdp-title { font-size: 22px; font-weight: 800; color: var(--slate-800); line-height: 1.25; margin: 0; }
@media (min-width: 768px) { .pdp-title { font-size: 26px; } }
.pdp-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--slate-500); flex-wrap: wrap; padding-bottom: 8px; border-bottom: 1px solid var(--slate-100); }
.pdp-sku { font-family: monospace; background: var(--slate-100); padding: 2px 8px; border-radius: 4px; }
.pdp-rating { color: var(--amber-500); font-weight: 700; }
.pdp-price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.pdp-price { font-size: 30px; font-weight: 900; color: var(--slate-900); font-variant-numeric: tabular-nums; }
.pdp-price-old { font-size: 16px; color: var(--slate-400); text-decoration: line-through; }
.pdp-price-req { font-size: 20px; font-weight: 700; color: var(--slate-700); }
.pdp-stock { font-size: 13px; font-weight: 600; }
.pdp-stock--in { color: var(--emerald-600); }
.pdp-stock--out { color: #dc2626; }

.pdp-variant { display: flex; flex-direction: column; gap: 6px; }
.pdp-variant-label { font-size: 12px; font-weight: 600; color: var(--slate-700); }
.pdp-variant-label span { color: var(--slate-500); font-weight: 500; }
.pdp-options { display: flex; flex-wrap: wrap; gap: 6px; }
.pdp-size { min-width: 40px; height: 36px; padding: 0 12px; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--r-lg); font-size: 13px; font-weight: 600; color: var(--slate-700); transition: all var(--trans); }
.pdp-size:hover { border-color: var(--red); color: var(--red); }
.pdp-size.is-active { background: var(--red); color: #fff; border-color: var(--red); }
.pdp-color { height: 36px; padding: 0 14px; background: #fff; border: 1px solid var(--slate-200); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--slate-700); transition: all var(--trans); }
.pdp-color:hover { border-color: var(--red); color: var(--red); }
.pdp-color.is-active { background: var(--red); color: #fff; border-color: var(--red); }

.pdp-cta { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 8px; }
.pdp-cta .btn { flex: 1 1 140px; }

.pdp-tabs { border-top: 1px solid var(--slate-200); padding: 0 24px 24px; }
@media (min-width: 768px) { .pdp-tabs { padding: 0 32px 32px; } }
.pdp-tabs-head { display: flex; gap: 0; border-bottom: 1px solid var(--slate-200); overflow-x: auto; scrollbar-width: none; }
.pdp-tabs-head::-webkit-scrollbar { display: none; }
.pdp-tab { background: none; border: none; padding: 14px 18px; font-size: 13px; font-weight: 600; color: var(--slate-500); white-space: nowrap; position: relative; transition: color var(--trans); }
.pdp-tab:hover { color: var(--slate-800); }
.pdp-tab.is-active { color: var(--red); }
.pdp-tab.is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--red); }
.pdp-tab-body { padding-top: 18px; font-size: 14px; line-height: 1.6; color: var(--slate-700); }
.pdp-tab-body p { margin: 0 0 10px; }
.pdp-tab-body a { color: var(--red); font-weight: 600; }
.pdp-specs { width: 100%; border-collapse: collapse; }
.pdp-specs td { padding: 10px 0; font-size: 13px; vertical-align: top; border-bottom: 1px solid var(--slate-100); }
.pdp-specs td:first-child { color: var(--slate-500); width: 45%; }
.pdp-specs td:last-child { font-weight: 600; color: var(--slate-800); }

/* Utils */
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
[hidden] { display: none !important; }
