:root {
  --bg: #07100b;
  --bg-2: #0e1710;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --card: #101913;
  --card-2: #162119;
  --ink: #f5f2e8;
  --muted: #b8bca5;
  --line: rgba(222, 226, 196, 0.16);
  --khaki: #9da56b;
  --khaki-2: #c7cd92;
  --moss: #586341;
  --sand: #e6d2a6;
  --amber: #d7a447;
  --danger: #e37b63;
  --green: #77b56d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(157, 165, 107, .14), transparent 36%),
    linear-gradient(180deg, var(--bg), #0b120d 42%, #0a0f0b);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled {
  cursor: not-allowed;
  opacity: .55;
  filter: grayscale(.25);
}
img, svg { display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 11, .88);
  backdrop-filter: blur(18px);
}
.promo-bar {
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(90deg, #616a43, #9da56b, #6f744c);
  color: #07100b;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 0;
}
.promo-track {
  display: flex;
  gap: 28px;
  width: max-content;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.promo-track span::before { content: "\25C6"; margin: 0 12px 0 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

.nav-shell {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 15px 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}
.brand > span:last-child span { color: var(--khaki-2); }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--khaki-2), var(--moss));
  color: #07100b;
  font-size: 13px;
  box-shadow: 0 8px 22px rgba(157,165,107,.24);
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}
.main-nav a:hover, .mobile-nav a:hover, .site-footer a:hover { color: var(--khaki-2); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.pill-btn {
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.pill-btn:hover { border-color: rgba(199,205,146,.44); color: var(--ink); }
.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: transparent;
  color: var(--ink);
}
.icon-btn:hover { border-color: var(--line); background: var(--surface); color: var(--khaki-2); }
.icon-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-button { position: relative; }
.cart-button span {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--khaki-2);
  color: #07100b;
  font-size: 11px;
  line-height: 18px;
  font-weight: 900;
}
.mobile-only, .mobile-nav { display: none; }
.mobile-nav {
  padding: 0 20px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

#app { min-height: 70vh; }
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 74px 20px;
}
.narrow { max-width: 860px; }
.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: grid;
  align-items: center;
  padding: 80px 20px 96px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(199,205,146,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,205,146,.18) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(199,205,146,.26);
  border-radius: 999px;
  background: rgba(157,165,107,.1);
  color: var(--khaki-2);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
}
.text-gradient {
  color: transparent;
  background: linear-gradient(90deg, #f5f2e8, var(--khaki-2), var(--sand));
  -webkit-background-clip: text;
  background-clip: text;
}
.lead {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.hero-promo {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
}
.code-chip, .badge, .tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(157,165,107,.14);
  color: var(--khaki-2);
  border: 1px solid rgba(199,205,146,.18);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 26px;
}
.countdown span {
  min-width: 74px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 10px;
  color: var(--khaki-2);
  font-size: 22px;
  font-weight: 950;
}
.countdown small { display: block; color: var(--muted); font-size: 10px; margin-top: 4px; }
.button-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.primary-btn, .secondary-btn, .ghost-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid transparent;
}
.primary-btn {
  color: #07100b;
  background: linear-gradient(135deg, var(--khaki-2), var(--khaki));
  box-shadow: 0 14px 32px rgba(157,165,107,.24);
}
.primary-btn:hover { filter: brightness(1.06); }
.secondary-btn {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}
.ghost-btn {
  color: var(--khaki-2);
  background: transparent;
  border-color: rgba(199,205,146,.22);
}
.wide { width: 100%; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}
.trust-card, .card, .product-card, .filter-panel, .checkout-card, .article-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset;
}
.trust-card { padding: 18px; color: var(--muted); text-align: left; }
.trust-card b { display: block; color: var(--ink); margin-bottom: 4px; }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}
.section-head h1 { font-size: clamp(36px, 5vw, 58px); }
.section-head h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 12px; }
.grid { display: grid; gap: 20px; }
.products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.catalog-grid { grid-template-columns: 270px 1fr; align-items: start; }
.catalog-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-card {
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.product-card:hover, .article-card:hover, .stack-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199,205,146,.36);
  box-shadow: var(--shadow);
}
.product-visual {
  position: relative;
  height: 220px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 28% 20%, rgba(230,210,166,.2), transparent 24%),
    linear-gradient(140deg, rgba(199,205,146,.18), rgba(255,255,255,.04));
  overflow: hidden;
}
.product-visual::before {
  content: "";
  width: 58px;
  height: 132px;
  border-radius: 20px 20px 26px 26px;
  background:
    linear-gradient(#f7f4e8 0 22%, var(--khaki-2) 22% 74%, #eef0d5 74%);
  box-shadow: 0 24px 40px rgba(0,0,0,.28);
}
.product-visual::after {
  content: attr(data-label);
  position: absolute;
  color: #07100b;
  background: rgba(245,242,232,.82);
  border: 1px solid rgba(7,16,11,.08);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 950;
}
.product-visual.accessory::before { width: 84px; height: 84px; border-radius: 26px; background: linear-gradient(145deg, #f7f4e8, var(--sand)); }
.product-body { padding: 18px; }
.product-body h3 { margin-bottom: 8px; font-size: 18px; }
.muted { color: var(--muted); }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { color: var(--khaki-2); font-size: 20px; font-weight: 950; }
.old-price { color: var(--muted); text-decoration: line-through; font-size: 13px; }
.stock-dot {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(119,181,109,.18);
  color: #a8e39d;
  border: 1px solid rgba(119,181,109,.34);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}
.stock-dot.out { background: rgba(227,123,99,.14); color: #ffb19f; border-color: rgba(227,123,99,.34); }
.filter-panel {
  position: sticky;
  top: 98px;
  padding: 18px;
  display: grid;
  gap: 15px;
}
label { color: var(--muted); font-size: 13px; font-weight: 850; }
.filter-panel label, .field { display: grid; gap: 7px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}
select option { background: #101913; color: var(--ink); }
input:focus, select:focus, textarea:focus {
  border-color: rgba(199,205,146,.6);
  box-shadow: 0 0 0 4px rgba(157,165,107,.14);
}
.product-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 42px;
  align-items: start;
}
.product-page .product-visual {
  height: min(560px, 62vw);
  border-radius: 26px;
  border: 1px solid var(--line);
}
.product-info h1 { font-size: clamp(34px, 5vw, 64px); }
.spec-list { display: grid; gap: 10px; margin: 22px 0; }
.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  color: var(--muted);
}
.spec-list b { color: var(--ink); }
.qty-row { display: flex; gap: 12px; align-items: end; margin: 18px 0; }
.qty-row input { width: 96px; }
.tabs { margin-top: 28px; }
.tab-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.tab-buttons button, .tag-filter button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  padding: 8px 12px;
  font-weight: 900;
}
.tab-buttons button.active, .tag-filter button.active { background: var(--khaki-2); color: #07100b; border-color: var(--khaki-2); }
.tab-panel { margin-top: 14px; color: var(--muted); line-height: 1.75; }
.card, .checkout-card, .article-card { padding: 22px; }
.stack-card { padding: 24px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.stack-products { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.stack-products span { background: rgba(255,255,255,.08); border-radius: 999px; padding: 6px 10px; color: var(--muted); font-size: 12px; font-weight: 900; }
.save { color: #a8e39d; font-weight: 950; }
.blog-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.article-card {
  display: grid;
  gap: 12px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.article-card h3 { margin: 0; font-size: 22px; }
.article-meta, .tag-row { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 900; }
.tag-row span { border: 1px solid var(--line); border-radius: 999px; padding: 5px 9px; background: rgba(255,255,255,.06); }
.article { color: var(--muted); line-height: 1.8; }
.article h2 { color: var(--ink); margin-top: 28px; }
.quiz-options { display: grid; gap: 10px; }
.choice {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  padding: 14px;
  text-align: left;
}
.choice.active { border-color: var(--khaki-2); box-shadow: inset 0 0 0 1px var(--khaki-2); }
.calc-output {
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(157,165,107,.22), rgba(230,210,166,.1));
  border: 1px solid rgba(199,205,146,.24);
  padding: 22px;
  display: grid;
  gap: 10px;
}
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 18px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 950;
}
.accordion-panel { display: none; color: var(--muted); line-height: 1.7; padding-bottom: 18px; }
.accordion-item.open .accordion-panel { display: block; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field.full { grid-column: 1 / -1; }
.payment-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 14px 0; }
.payment-tabs button {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--muted);
  padding: 12px 8px;
  font-weight: 900;
}
.payment-tabs button.active { background: var(--khaki-2); color: #07100b; border-color: var(--khaki-2); }
.payment-box {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0,0,0,.16);
  padding: 18px;
  color: var(--muted);
}
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 22px;
}
.admin-toolbar.compact { margin-bottom: 12px; }
.admin-nav {
  position: sticky;
  top: 92px;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: -10px auto 24px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 16, 11, .82);
  backdrop-filter: blur(14px);
}
.admin-nav button {
  border: 1px solid rgba(199,205,146,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 950;
}
.admin-nav button:hover {
  border-color: rgba(199,205,146,.52);
  color: var(--ink);
}
.admin-section {
  scroll-margin-top: 132px;
  margin-top: 28px;
}
.admin-section-head { margin-bottom: 14px; }
.admin-section-head h2 {
  margin: 5px 0 0;
  font-size: 26px;
}
.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.admin-stat {
  display: grid;
  gap: 6px;
}
.admin-stat span,
.admin-stat small {
  color: var(--muted);
  font-weight: 850;
}
.admin-stat b {
  color: var(--khaki-2);
  font-size: 32px;
  line-height: 1;
}
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.admin-actions .secondary-btn,
.admin-actions .ghost-btn {
  flex: 1 1 150px;
  justify-content: center;
}
.admin-order-list {
  display: grid;
  gap: 14px;
}
.order-admin-card {
  display: grid;
  gap: 16px;
}
.order-admin-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}
.order-admin-head h3 {
  margin: 6px 0 2px;
}
.order-admin-total {
  display: grid;
  gap: 4px;
  justify-items: end;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
.order-admin-total b {
  color: var(--khaki-2);
  font-size: 24px;
}
.order-admin-grid {
  align-items: start;
}
.order-admin-grid h4 {
  margin: 0 0 8px;
  color: var(--ink);
}
.order-admin-grid p {
  margin: 5px 0;
}
.order-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.order-admin-actions .secondary-btn,
.order-admin-actions .ghost-btn {
  min-height: 38px;
  padding: 0 12px;
  font-size: 12px;
}
.stack-product-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.stack-product-picker label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  padding: 9px 10px;
  color: var(--ink);
}
.stack-product-picker input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.danger-action:hover {
  border-color: rgba(227,123,99,.64);
  color: #ffb19f;
}
.checkout-card h3 {
  color: var(--ink);
  margin: 0 0 4px;
}
input[type="color"] {
  min-height: 48px;
  padding: 4px;
}
.admin-split { margin-top: 20px; }
.import-label {
  position: relative;
  overflow: hidden;
}
.import-label input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.checkout-card h2.field,
.checkout-card h2 {
  color: var(--ink);
}
.copy-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}
.copy-row code {
  flex: 1;
  overflow-wrap: anywhere;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  padding: 10px;
  color: var(--ink);
}
.order-done {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.search-modal {
  width: min(820px, calc(100% - 28px));
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #101913;
  color: var(--ink);
  padding: 16px;
  box-shadow: var(--shadow);
}
.search-modal::backdrop { background: rgba(0,0,0,.55); backdrop-filter: blur(4px); }
.modal-head { display: flex; gap: 10px; align-items: center; }
.search-results { display: grid; gap: 10px; margin-top: 14px; max-height: 58vh; overflow: auto; }
.search-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 14px;
}
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  background: rgba(0,0,0,0);
  transition: background .22s ease;
}
.cart-drawer.open { pointer-events: auto; background: rgba(0,0,0,.55); }
.drawer-panel {
  margin-left: auto;
  width: min(450px, 100%);
  height: 100%;
  background: #0b120d;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .24s ease;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}
.cart-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h2 { margin: 0; }
.cart-items { overflow: auto; padding: 16px; display: grid; align-content: start; gap: 12px; }
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 12px;
}
.cart-controls { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.mini-btn {
  min-width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: var(--ink);
}
.coupon-box {
  border-top: 1px solid var(--line);
  padding: 16px;
}
.coupon-box > div { display: flex; gap: 8px; margin-top: 7px; }
.coupon-box small { color: var(--green); display: block; margin-top: 7px; }
.cart-summary {
  border-top: 1px solid var(--line);
  padding: 18px 20px 22px;
  display: grid;
  gap: 11px;
  background: rgba(255,255,255,.04);
}
.cart-summary div { display: flex; justify-content: space-between; color: var(--muted); }
.cart-summary .total { color: var(--ink); font-size: 19px; }
.assistant-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
}
.assistant-toggle {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(199,205,146,.28);
  border-radius: 999px;
  background: var(--khaki-2);
  color: #07100b;
  padding: 12px 16px;
  font-weight: 950;
  box-shadow: var(--shadow);
}
.assistant-panel {
  display: none;
  width: min(340px, calc(100vw - 36px));
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #101913;
  color: var(--muted);
  padding: 14px;
  box-shadow: var(--shadow);
}
.assistant-panel.open { display: grid; gap: 10px; }
#assistantLog { max-height: 260px; overflow: auto; font-size: 13px; line-height: 1.5; }
#assistantForm { display: flex; gap: 8px; }
#assistantForm button {
  border: 0;
  border-radius: 10px;
  background: var(--khaki-2);
  color: #07100b;
  padding: 0 12px;
  font-weight: 900;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 90;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  border-radius: 999px;
  background: var(--khaki-2);
  color: #07100b;
  padding: 12px 16px;
  font-weight: 900;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.2);
}
.footer-grid {
  max-width: 1220px;
  margin: 0 auto;
  padding: 44px 20px 26px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 28px;
}
.site-footer nav { display: grid; align-content: start; gap: 10px; color: var(--muted); font-size: 14px; }
.site-footer b { color: var(--ink); }
.site-footer p { color: var(--muted); line-height: 1.65; }
.footer-note {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px 34px;
  color: var(--muted);
  font-size: 13px;
}
hr { border: 0; border-top: 1px solid var(--line); margin: 18px 0; }

@media (max-width: 1060px) {
  .main-nav { display: none; }
  .mobile-only { display: inline-grid; }
  .mobile-nav.open { display: grid; gap: 12px; }
  .products-grid, .catalog-list, .trust-row, .three-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-grid, .product-page, .two-grid { grid-template-columns: 1fr; }
  .admin-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filter-panel { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-shell { padding: 12px 14px; gap: 10px; }
  .brand > span:last-child { display: none; }
  .pill-btn { display: none; }
  .container { padding: 52px 14px; }
  .hero { min-height: 610px; padding: 58px 14px 72px; }
  .admin-nav { top: 76px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .trust-row, .products-grid, .catalog-list, .three-grid, .two-grid, .blog-list, .form-grid, .footer-grid, .payment-tabs, .admin-stat-grid, .stack-product-picker { grid-template-columns: 1fr; }
  .order-admin-head { display: grid; }
  .order-admin-total { justify-items: start; }
  .countdown span { min-width: 62px; font-size: 18px; }
  .coupon-box > div, .copy-row, .qty-row { flex-direction: column; align-items: stretch; }
}
