@font-face {
  font-family: "Awesome Newbie";
  src: url("../assets/fonts/AwesomeNewbie.otf") format("opentype");
  font-display: swap;
}

:root {
  --navy: #081e41;
  --teal: #56ccd2;
  --pink: #d08f8f;
  --paper: #faf8f4;
  --paper-2: #f1ede5;
  --ink: #0d1224;
  --ink-2: #2c324a;
  --muted: #80849a;
  --line: rgba(8, 30, 65, 0.08);
  --line-2: rgba(8, 30, 65, 0.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.fnt-display { font-family: "Awesome Newbie", "Inter", sans-serif; font-weight: normal; }
.kicker { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-2); }

/* TOP BAR */
.top-bar {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.top-bar .inner {
  max-width: 1400px; margin: 0 auto; padding: 8px 32px;
  display: flex; justify-content: space-between;
}
.top-bar a { color: rgba(255,255,255,0.85); text-decoration: underline; text-underline-offset: 3px; }

/* HEADER */
.header {
  background: var(--paper); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header-row {
  max-width: 1400px; margin: 0 auto; padding: 22px 32px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.logo img { height: 42px; }
.nav { display: flex; gap: 32px; justify-self: end; }
.nav a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; color: var(--ink-2);
  position: relative; padding: 6px 0;
}
.nav a:hover, .nav a.on { color: var(--navy); }
.nav a.on::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--pink); }
.header-actions { display: flex; gap: 22px; justify-self: start; align-items: center; }
.header-actions a { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-2); display: inline-flex; gap: 6px; align-items: center; }
.header-actions .cart-num { background: var(--ink); color: white; font-size: 10px; padding: 1px 6px; border-radius: 4px; font-weight: 700; }

/* HERO */
.hero {
  max-width: 1400px; margin: 0 auto; padding: 80px 32px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.hero h1 {
  font-family: "Awesome Newbie", sans-serif; font-weight: normal;
  font-size: clamp(56px, 7vw, 96px); line-height: 0.95; color: var(--navy); margin: 18px 0 24px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: normal; color: var(--pink); }
.hero p { font-size: 17px; color: var(--ink-2); max-width: 460px; margin-bottom: 28px; }
.hero .meta-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid var(--line); padding-top: 20px; gap: 20px; max-width: 460px; }
.hero .meta-row div .num { font-family: "Awesome Newbie", sans-serif; color: var(--navy); font-size: 30px; line-height: 1; }
.hero .meta-row div .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-top: 4px; }

.hero-img {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper-2);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img .tag {
  position: absolute; top: 24px; left: 24px;
  background: var(--paper); padding: 10px 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-img .price-tag {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--navy); color: var(--paper); padding: 14px 18px;
  display: flex; gap: 12px; align-items: baseline;
}
.hero-img .price-tag .pr { font-family: "Awesome Newbie", sans-serif; font-size: 36px; line-height: 1; color: var(--teal); }
.hero-img .price-tag .nm { font-size: 12px; max-width: 130px; line-height: 1.3; }

.btns { display: flex; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1.5px solid var(--navy); cursor: pointer; transition: background 0.2s;
}
.btn-primary { background: var(--navy); color: var(--paper); }
.btn-primary:hover { background: var(--ink); }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--paper); }
.btn .arr { transition: transform 0.2s; }
.btn:hover .arr { transform: translateX(4px); }

/* ANNOUNCEMENT */
.announce {
  max-width: 1400px; margin: 110px auto 0; padding: 0 32px;
}
.announce-card {
  background: var(--navy); color: var(--paper); padding: 56px 64px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 56px; align-items: center;
  position: relative; overflow: hidden;
}
.announce-card .ribbon {
  position: absolute; top: 22px; right: -50px; transform: rotate(35deg);
  background: var(--pink); color: var(--navy); padding: 4px 60px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
}
.announce-num {
  font-family: "Awesome Newbie", sans-serif; font-size: 110px; line-height: 0.85; color: var(--teal);
}
.announce-num .pct { color: var(--pink); }
.announce h2 { font-family: "Awesome Newbie", sans-serif; font-weight: normal; font-size: 46px; margin: 0 0 8px; line-height: 1; }
.announce p { color: rgba(255,248,238,0.75); margin: 0; max-width: 480px; }
.announce .when { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; margin-top: 16px; color: rgba(255,248,238,0.6); }
.announce-cta .btn { background: var(--pink); border-color: var(--pink); color: var(--navy); }
.announce-cta .btn:hover { background: var(--paper); border-color: var(--paper); }

/* SECTION */
.sec-head {
  max-width: 1400px; margin: 110px auto 32px; padding: 0 32px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: end;
}
.sec-head h2 { font-family: "Awesome Newbie", sans-serif; font-weight: normal; font-size: 56px; margin: 12px 0 0; color: var(--navy); line-height: 1; }
.sec-head .line { height: 1px; background: var(--line-2); margin-bottom: 24px; }
.sec-head .lnk { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); border-bottom: 1px solid var(--navy); padding-bottom: 4px; }

.cats { max-width: 1400px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat {
  background: var(--paper-2); aspect-ratio: 4 / 5; padding: 28px; cursor: pointer;
  display: grid; grid-template-rows: auto 1fr auto; gap: 12px;
  position: relative; overflow: hidden;
}
.cat .num { font-family: "Awesome Newbie", sans-serif; font-size: 80px; color: var(--navy); opacity: 0.15; line-height: 1; position: absolute; top: 14px; right: 24px; }
.cat .img { aspect-ratio: 1; background: white; overflow: hidden; }
.cat .img img { width: 100%; height: 100%; object-fit: cover; }
.cat .meta { display: flex; justify-content: space-between; align-items: end; }
.cat h3 { font-family: "Awesome Newbie", sans-serif; font-weight: normal; font-size: 32px; margin: 0; color: var(--navy); line-height: 1; }
.cat .sub { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-top: 4px; }
.cat .arrow { font-size: 18px; color: var(--navy); }

/* PRODUCT GRID */
.products {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 24px;
}
.product { cursor: pointer; }
.product .ph { aspect-ratio: 4 / 5; background: var(--paper-2); overflow: hidden; position: relative; margin-bottom: 14px; }
.product .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product:hover .ph img { transform: scale(1.04); }
.product .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--paper); padding: 4px 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.product .badge.sale { background: var(--pink); color: var(--navy); }
.product .quick {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  background: var(--navy); color: var(--paper); padding: 11px;
  text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px); transition: all 0.2s;
}
.product:hover .quick { opacity: 1; transform: translateY(0); }
.product .meta { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.product .nm-col { flex: 1; }
.product .brand { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.product .name { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.product .price { font-family: "Awesome Newbie", sans-serif; font-size: 22px; color: var(--pink); line-height: 1; white-space: nowrap; }

/* EDITORIAL */
.editorial {
  margin-top: 130px; background: var(--paper-2); padding: 96px 32px;
}
.editorial-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.editorial img { aspect-ratio: 5 / 6; object-fit: cover; }
.editorial .body .kicker { color: var(--pink); }
.editorial h3 { font-family: "Awesome Newbie", sans-serif; font-weight: normal; font-size: 56px; line-height: 1; color: var(--navy); margin: 14px 0 20px; }
.editorial p { font-size: 17px; line-height: 1.6; color: var(--ink-2); margin-bottom: 18px; max-width: 540px; }
.editorial blockquote {
  margin: 28px 0 0 0; padding: 0 0 0 20px; border-left: 2px solid var(--pink);
  font-family: "Awesome Newbie", sans-serif; font-size: 24px; color: var(--navy); line-height: 1.25;
}
.editorial .sig { font-size: 12px; color: var(--muted); margin-top: 10px; letter-spacing: 0.06em; }

/* FOOTER */
.footer { background: var(--navy); color: rgba(255,248,238,0.85); padding: 80px 32px 32px; margin-top: 0; }
.footer-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 48px; }
.footer h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { font-size: 14px; color: rgba(255,248,238,0.85); }
.footer a:hover { color: var(--pink); }
.footer .brand-col img { filter: brightness(0) invert(1); height: 38px; margin-bottom: 18px; }
.footer .brand-col p { font-size: 14px; max-width: 280px; line-height: 1.6; }
.footer .news input { background: rgba(255,255,255,0.06); color: var(--paper); border: 1px solid rgba(255,255,255,0.15); padding: 12px 14px; width: 100%; font-size: 13px; }
.footer .news button { background: var(--pink); color: var(--navy); border: none; padding: 12px; width: 100%; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; margin-top: 8px; }
.footer-bottom { max-width: 1400px; margin: 60px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,248,238,0.5); letter-spacing: 0.04em; }

/* SHOP PAGE */
.shop-head {
  max-width: 1400px; margin: 0 auto; padding: 56px 32px 36px;
  border-bottom: 1px solid var(--line);
}
.crumbs { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.crumbs a { color: var(--muted); }
.crumbs span { margin: 0 8px; }
.shop-head h1 { font-family: "Awesome Newbie", sans-serif; font-weight: normal; font-size: clamp(56px, 8vw, 96px); margin: 14px 0 0; color: var(--navy); line-height: 0.95; }
.shop-head .summary { font-size: 14px; color: var(--ink-2); margin-top: 16px; max-width: 600px; }

.shop-controls {
  max-width: 1400px; margin: 24px auto 0; padding: 16px 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  border-bottom: 1px solid var(--line);
}
.shop-controls .left { display: flex; gap: 18px; align-items: center; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); font-weight: 600; }
.shop-controls .left .ct { color: var(--muted); }
.toggles { display: flex; gap: 6px; }
.toggle { width: 32px; height: 32px; border: 1px solid var(--line-2); background: var(--paper); display: grid; place-items: center; cursor: pointer; }
.toggle.on { border-color: var(--navy); background: var(--navy); color: var(--paper); }
.sort {
  background: var(--paper); border: 1px solid var(--line-2); padding: 9px 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; display: inline-flex; gap: 8px; align-items: center;
}

.shop-layout {
  max-width: 1400px; margin: 0 auto; padding: 32px 32px 96px;
  display: grid; grid-template-columns: 240px 1fr; gap: 56px;
}
.filters { font-size: 13px; }
.filter-group { padding: 22px 0; border-bottom: 1px solid var(--line); }
.filter-group:first-child { padding-top: 0; }
.filter-group h4 { font-family: "Inter", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 14px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; }
.filter-group h4 .toggle-icon { color: var(--muted); font-weight: 600; }
.checks { display: flex; flex-direction: column; gap: 10px; }
.checks label { display: flex; gap: 10px; align-items: center; cursor: pointer; font-size: 13px; }
.checks label input { width: 14px; height: 14px; accent-color: var(--navy); }
.checks .ct { margin-left: auto; color: var(--muted); font-size: 11px; }
.size-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.size-grid .sz { padding: 8px 4px; text-align: center; font-size: 11px; font-weight: 600; border: 1px solid var(--line-2); cursor: pointer; background: var(--paper); }
.size-grid .sz.on { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.price-row { display: flex; gap: 8px; align-items: center; font-size: 12px; }
.price-row input { padding: 8px 10px; border: 1px solid var(--line-2); background: var(--paper); width: 100%; font-family: inherit; font-size: 13px; }

.shop-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 24px; }
.shop-active {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.act-pill { background: var(--paper-2); padding: 6px 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; display: inline-flex; gap: 8px; align-items: center; }
.act-pill button { background: none; border: none; padding: 0; cursor: pointer; color: var(--muted); font-size: 14px; }
.shop-active .clear { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-left: auto; padding-bottom: 0; }

.pagination { margin-top: 56px; display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); }
.pagination .pages { display: flex; gap: 4px; }
.pg-btn { width: 38px; height: 38px; display: grid; place-items: center; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid transparent; }
.pg-btn.on { background: var(--navy); color: var(--paper); }
.pg-btn:not(.on):hover { border-color: var(--line-2); }
.pagination .nav-btn { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); display: inline-flex; gap: 8px; align-items: center; }

/* DASHBOARD (Consignor) */
body.dash { background: var(--paper); }
.app-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.sidebar { background: var(--paper-2); border-right: 1px solid var(--line); padding: 24px 16px; display: flex; flex-direction: column; }
.side-logo { display: flex; gap: 10px; align-items: center; padding: 4px 12px 22px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.side-logo .mark { width: 34px; height: 34px; background: var(--navy); color: var(--paper); display: grid; place-items: center; font-family: "Awesome Newbie", sans-serif; font-size: 18px; }
.side-logo .name { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--navy); }
.side-section { font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); padding: 18px 12px 6px; font-weight: 700; }
.side-link { display: flex; gap: 12px; align-items: center; padding: 9px 12px; font-size: 13px; font-weight: 500; color: var(--ink-2); cursor: pointer; }
.side-link:hover { background: rgba(8,30,65,0.04); }
.side-link.on { background: var(--navy); color: var(--paper); }
.side-link .ic { width: 16px; opacity: 0.85; }

.app-main { display: grid; grid-template-rows: auto 1fr; }
.topbar {
  background: var(--paper); padding: 18px 32px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.topbar h1 { font-family: "Awesome Newbie", sans-serif; font-weight: normal; font-size: 32px; margin: 0; color: var(--navy); line-height: 1; }
.topbar .crumb { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.topbar .right { display: flex; gap: 14px; align-items: center; }
.topbar .pill { background: var(--paper-2); padding: 8px 14px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; }
.topbar .av { width: 36px; height: 36px; background: var(--pink); display: grid; place-items: center; font-family: "Awesome Newbie", sans-serif; color: var(--navy); }

.dash-body { padding: 32px; display: grid; grid-template-columns: 2.4fr 1fr; gap: 28px; }

.kpi-row { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.kpi { background: var(--paper); border: 1px solid var(--line); padding: 22px 24px; }
.kpi .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); font-weight: 700; }
.kpi .val { font-family: "Awesome Newbie", sans-serif; font-size: 42px; line-height: 1; color: var(--navy); margin: 10px 0 6px; }
.kpi .val.pink { color: var(--pink); }
.kpi .val.teal { color: var(--teal); }
.kpi .delta { font-size: 12px; font-weight: 600; }
.kpi .delta.up { color: #1f8a5c; }
.kpi .delta.flat { color: var(--muted); }
.kpi .spark { margin-top: 12px; height: 32px; }

.panel { background: var(--paper); border: 1px solid var(--line); }
.panel-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; border-bottom: 1px solid var(--line); }
.panel-head h3 { font-family: "Awesome Newbie", sans-serif; font-weight: normal; font-size: 22px; margin: 0; color: var(--navy); }
.panel-head .pill { font-size: 11px; padding: 5px 10px; background: var(--paper-2); letter-spacing: 0.04em; font-weight: 600; }
.panel-head .seg { display: flex; }
.panel-head .seg button { font-size: 11px; padding: 6px 12px; border: 1px solid var(--line-2); background: var(--paper); cursor: pointer; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.panel-head .seg button.on { background: var(--navy); color: var(--paper); border-color: var(--navy); }

.chart { padding: 28px 28px 20px; }
.chart svg { width: 100%; height: 220px; display: block; }
.chart .legend { display: flex; gap: 24px; padding: 0 4px 8px; font-size: 12px; color: var(--ink-2); }
.chart .legend span { display: inline-flex; gap: 6px; align-items: center; }
.chart .legend i { width: 10px; height: 10px; display: inline-block; }

table.items { width: 100%; border-collapse: collapse; font-size: 13px; }
table.items th { text-align: left; font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 700; padding: 10px 24px; background: var(--paper-2); }
table.items td { padding: 12px 24px; border-bottom: 1px solid var(--line); vertical-align: middle; }
table.items tr:last-child td { border-bottom: none; }
table.items td.thumb { width: 56px; padding-right: 0; }
table.items td.thumb img { width: 44px; height: 44px; object-fit: cover; }
table.items .nm { font-weight: 600; color: var(--ink); }
table.items .sku { font-size: 11px; color: var(--muted); margin-top: 2px; letter-spacing: 0.04em; }
table.items .price { font-family: "Awesome Newbie", sans-serif; font-size: 18px; color: var(--pink); }
.status { font-size: 10px; padding: 3px 8px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.status.live { background: #d6efe2; color: #1f8a5c; }
.status.sold { background: var(--paper-2); color: var(--ink); }
.status.hold { background: #fcecd0; color: #8a6614; }

.right-col { display: grid; gap: 24px; align-content: start; }
.payout-card { background: var(--navy); color: var(--paper); padding: 28px; }
.payout-card .lbl { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,248,238,0.6); font-weight: 700; }
.payout-card .val { font-family: "Awesome Newbie", sans-serif; font-size: 56px; line-height: 1; margin: 12px 0; color: var(--teal); }
.payout-card .meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 18px; font-size: 12px; }
.payout-card .meta .k { color: rgba(255,248,238,0.6); font-size: 11px; letter-spacing: 0.06em; }
.payout-card .meta .v { font-weight: 600; margin-top: 2px; }
.payout-card .btn { background: var(--pink); color: var(--navy); border-color: var(--pink); width: 100%; justify-content: center; margin-top: 22px; }

.payouts-list { padding: 0; }
.payout-row { display: grid; grid-template-columns: 1fr auto; padding: 14px 24px; border-bottom: 1px solid var(--line); align-items: center; gap: 12px; }
.payout-row:last-child { border-bottom: none; }
.payout-row .when { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }
.payout-row .nm { font-size: 13px; font-weight: 600; margin-top: 2px; }
.payout-row .amt { font-family: "Awesome Newbie", sans-serif; color: var(--navy); font-size: 22px; line-height: 1; }
.payout-row .meth { font-size: 10px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; text-align: right; margin-top: 2px; }

@media (max-width: 1100px) {
  .hero, .editorial-inner, .announce-card { grid-template-columns: 1fr; }
  .cats, .products, .shop-products { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .dash-body { grid-template-columns: 1fr; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
}
