:root {
  /* Cactus Sports Cards AZ palette — pulled from the eBay banner/logo */
  --green: #1d4a34;        /* deep saguaro green (logo linework) */
  --green-dark: #143726;
  --green-light: #2c6a4b;
  --cream: #faf6ec;        /* banner sky */
  --sand: #f0e6d2;         /* desert floor */
  --sand-deep: #e2d3b4;
  --orange: #d97b3f;       /* sunset mountains */
  --orange-deep: #b85f28;
  --red: #b3392b;          /* grade-badge red */
  --ink: #26241e;
  --ink-dim: #6d675c;
  --white: #ffffff;
  --line: #ddd2ba;
  --radius: 10px;
  font-size: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
button { font-family: inherit; }

/* ---------- top strips ---------- */
.shipping-bar {
  text-align: center; background: var(--green-dark); color: #cfe3d3;
  font-size: .82rem; padding: 6px; letter-spacing: .5px;
}

/* ---------- header ---------- */
.site-header { background: var(--white); border-bottom: 3px solid var(--green); position: sticky; top: 0; z-index: 50; }
.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { width: 54px; height: 54px; border-radius: 50%; }
.brand-name {
  color: var(--green); font-weight: 800; font-size: 1.25rem; letter-spacing: 2px;
  line-height: 1.1; display: flex; flex-direction: column;
}
.brand-sub { font-size: .82rem; letter-spacing: 6px; color: var(--orange-deep); }
.header-search { flex: 1; display: flex; justify-content: flex-end; }
.header-search input {
  background: var(--cream); border: 2px solid var(--sand-deep); color: var(--ink);
  padding: 10px 16px; border-radius: 22px; width: min(340px, 100%); font-size: .9rem; outline: none;
}
.header-search input:focus { border-color: var(--green); }

/* ---------- nav + dropdowns ---------- */
.main-nav { background: var(--green); }
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 16px;
  display: flex; flex-wrap: wrap;
}
.nav-link {
  background: none; border: none; color: #e9f2ea; cursor: pointer;
  padding: 12px 18px; font-size: .92rem; font-weight: 600; letter-spacing: .3px;
}
.nav-link:hover { background: var(--green-dark); color: #fff; }
.nav-deals { color: #ffd9a8; }
.caret { font-size: .7rem; opacity: .8; }
.nav-drop { position: relative; }
.drop-menu {
  position: absolute; top: 100%; left: 0; min-width: 200px; z-index: 60;
  background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--orange);
  border-radius: 0 0 var(--radius) var(--radius); box-shadow: 0 10px 24px rgba(38,36,30,.18);
  display: none; flex-direction: column; padding: 6px 0;
}
@media (hover: hover) { .nav-drop:hover .drop-menu { display: flex; } }
.nav-drop.open .drop-menu { display: flex; }
.drop-menu button {
  background: none; border: none; text-align: left; cursor: pointer;
  padding: 10px 18px; font-size: .9rem; color: var(--ink);
}
.drop-menu button:hover { background: var(--sand); color: var(--green); font-weight: 600; }

/* ---------- hero ---------- */
.hero { max-width: 1400px; margin: 18px auto 0; padding: 0 24px; width: 100%; }
.hero-banner {
  width: 100%; border-radius: 14px; display: block;
  box-shadow: 0 10px 30px rgba(38,36,30,.15);
}

/* ---------- home sections / carousels ---------- */
.home-sections { max-width: 1400px; margin: 0 auto; padding: 10px 24px 30px; width: 100%; }
.hrow { margin-top: 34px; }
.hrow-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px; }
.hrow-head h2 {
  font-size: 1.35rem; color: var(--green); letter-spacing: 1px; text-transform: uppercase;
  border-bottom: 3px solid var(--orange); padding-bottom: 4px;
}
.hrow-head .view-all {
  background: none; border: none; color: var(--orange-deep); cursor: pointer;
  font-size: .88rem; font-weight: 700;
}
.hrow-head .view-all:hover { text-decoration: underline; }
.hrow-head .spacer { flex: 1; }
.caro-btn {
  background: var(--white); border: 2px solid var(--sand-deep); color: var(--green);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1rem; font-weight: 700;
}
.caro-btn:hover { border-color: var(--green); }
.caro {
  display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth;
  padding: 4px 2px 12px; scrollbar-width: thin;
}
.caro .card { flex: 0 0 210px; }

.deals-strip {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 14px; padding: 22px; margin-top: 34px;
}
.deals-strip .hrow-head h2 { color: #ffd9a8; border-color: var(--orange); }
.deals-strip .hrow-head .view-all { color: #f5c689; }
.deals-strip .caro-btn { background: var(--green-dark); border-color: var(--green-light); color: #e9f2ea; }

/* ---------- signup strip ---------- */
.signup-strip { background: var(--sand); border-top: 1px solid var(--line); margin-top: 20px; }
.signup-inner { max-width: 700px; margin: 0 auto; padding: 40px 24px; text-align: center; }
.signup-inner h2 { color: var(--green); margin-bottom: 6px; }
.signup-inner p { color: var(--ink-dim); font-size: .92rem; }
.signup-inner form { display: flex; gap: 10px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.signup-inner input {
  background: var(--white); border: 2px solid var(--sand-deep); border-radius: 8px;
  padding: 11px 14px; width: min(320px, 100%); font-size: .92rem; outline: none;
}
.signup-inner input:focus { border-color: var(--green); }
.signup-inner button {
  background: var(--orange); color: #fff; border: none; border-radius: 8px;
  padding: 11px 24px; font-weight: 700; cursor: pointer;
}
.signup-inner button:hover { background: var(--orange-deep); }
.signup-done { color: var(--green); font-weight: 700; margin-top: 12px; }

/* ---------- browse view ---------- */
.browse-head { max-width: 1400px; margin: 0 auto; padding: 22px 24px 0; width: 100%; }
.browse-head h1 { color: var(--green); font-size: 1.5rem; letter-spacing: 1px; margin-bottom: 12px; }
.sport-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.sport-pills button {
  background: var(--white); border: 2px solid var(--sand-deep); color: var(--ink-dim);
  padding: 6px 16px; border-radius: 18px; cursor: pointer; font-size: .88rem;
}
.sport-pills button:hover { color: var(--green); border-color: var(--green); }
.sport-pills button.active {
  background: var(--green); border-color: var(--green); color: #fff; font-weight: 700;
}
.layout {
  max-width: 1400px; margin: 0 auto; padding: 20px 24px; width: 100%;
  display: grid; grid-template-columns: 220px 1fr; gap: 28px; flex: 1;
}
.filters h2 { font-size: .95rem; letter-spacing: 1px; margin-bottom: 12px; color: var(--ink-dim); text-transform: uppercase; }
.filters fieldset {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 14px; margin-bottom: 14px; background: var(--white);
}
.filters legend { padding: 0 6px; font-size: .78rem; color: var(--orange-deep); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.filters label { display: block; padding: 4px 0; font-size: .9rem; cursor: pointer; }
.filters input[type=checkbox] { accent-color: var(--green); margin-right: 8px; }
.price-inputs { display: flex; align-items: center; gap: 8px; }
.price-inputs input {
  width: 70px; background: var(--cream); border: 1px solid var(--line);
  color: var(--ink); padding: 6px 8px; border-radius: 6px;
}
.btn-ghost {
  background: none; border: 1px solid var(--line); color: var(--ink-dim);
  padding: 8px 14px; border-radius: 8px; cursor: pointer; width: 100%;
}
.btn-ghost:hover { color: var(--green); border-color: var(--green); }
.results-bar {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px;
  color: var(--ink-dim); font-size: .9rem;
}
.results-bar select {
  background: var(--white); color: var(--ink); border: 1px solid var(--line);
  padding: 7px 10px; border-radius: 8px;
}

/* ---------- card tiles ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 18px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; display: flex; flex-direction: column;
  transition: transform .12s ease, box-shadow .12s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(38,36,30,.14); }
.card-img {
  aspect-ratio: 5 / 6; background: var(--sand); display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.card-img img { max-width: 88%; max-height: 92%; object-fit: contain; filter: drop-shadow(0 5px 10px rgba(38,36,30,.28)); }
.card-img .noimg { color: var(--ink-dim); font-size: .8rem; }
/* z-index 2: the card <img> below carries a drop-shadow filter, which creates
   its own stacking context and would otherwise paint OVER these flags */
.sale-flag {
  position: absolute; top: 10px; left: 0; background: var(--red); color: #fff;
  font-size: .7rem; font-weight: 800; padding: 4px 10px 4px 8px; letter-spacing: .5px;
  border-radius: 0 4px 4px 0; z-index: 2;
}
.hot-flag {
  position: absolute; top: 10px; left: 0; background: linear-gradient(90deg, #b3392b, var(--orange-deep, #b85f28));
  color: #fff; font-size: .68rem; font-weight: 800; padding: 4px 10px 4px 8px;
  letter-spacing: .4px; border-radius: 0 4px 4px 0; z-index: 2;
  animation: hotpulse 2.2s ease-in-out infinite;
}
@keyframes hotpulse { 0%,100% { opacity: 1; } 50% { opacity: .82; } }
.new-flag {
  position: absolute; top: 10px; left: 0; background: var(--green); color: #fff;
  font-size: .68rem; font-weight: 800; padding: 4px 10px 4px 8px;
  letter-spacing: .4px; border-radius: 0 4px 4px 0; z-index: 2;
}
.heart {
  position: absolute; top: 8px; right: 8px; z-index: 2; background: rgba(255,255,255,.85);
  border: none; border-radius: 50%; width: 30px; height: 30px; cursor: pointer;
  color: #c9beab; font-size: .95rem; line-height: 1; transition: color .12s, transform .12s;
}
.heart:hover { transform: scale(1.15); }
.heart.on { color: var(--red); }
.card.sold .card-img::after {
  content: "SOLD"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(38,36,30,.62); color: #ffb4a8; font-weight: 800; font-size: 1.6rem; letter-spacing: 4px;
}
.badges { display: flex; gap: 5px; flex-wrap: wrap; }
.card .badges { padding: 10px 12px 0; }
.badge {
  font-size: .66rem; font-weight: 700; letter-spacing: .5px; padding: 3px 7px;
  border-radius: 4px; text-transform: uppercase; color: #fff;
}
.badge.grade { background: var(--red); }
.badge.rc { background: #2f5f8f; }
.badge.auto { background: var(--green-light); }
.badge.serial { background: #6a4fa3; }
.badge.mem { background: #8a6a30; }
.card-title { padding: 8px 12px 4px; font-size: .86rem; line-height: 1.35; flex: 1; }
.card-price { padding: 4px 12px 12px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.card-price .amt { color: var(--green); font-weight: 800; font-size: 1.05rem; }
.card-price .amt.sale { color: var(--red); }
.card-price .was { color: var(--ink-dim); font-size: .8rem; text-decoration: line-through; }
.card-price .pct { color: var(--red); font-size: .74rem; font-weight: 800; }
.card-price .obo { color: var(--ink-dim); font-size: .72rem; }
.empty { color: var(--ink-dim); padding: 40px; text-align: center; }
.btn-more {
  display: block; margin: 22px auto 0; background: var(--white); color: var(--green);
  border: 2px solid var(--green); border-radius: 8px; padding: 12px 30px;
  font-weight: 800; cursor: pointer; font-size: .95rem;
}
.btn-more:hover { background: var(--green); color: #fff; }

/* ---------- header cart / wishlist ---------- */
.header-actions { display: flex; gap: 8px; margin-left: auto; }
.hdr-btn {
  position: relative; background: var(--sand); border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 12px; font-size: 1.05rem; cursor: pointer;
}
.hdr-btn:hover { background: var(--sand-deep); }
.hdr-count {
  position: absolute; top: -7px; right: -7px; background: var(--orange-deep);
  color: #fff; border-radius: 10px; min-width: 18px; height: 18px; font-size: .68rem;
  font-weight: 800; display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.hdr-count:empty { display: none; }

/* ---------- cart & wishlist views ---------- */
#cartView, #wishView { max-width: 1100px; margin: 0 auto; padding: 26px 24px 60px; }
.wish-note { color: var(--ink-dim); font-size: .88rem; margin: -8px 0 18px; }
.cart-list { background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.cart-row {
  display: grid; grid-template-columns: 64px 1fr auto 36px; gap: 14px;
  align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--line);
}
.cart-row:last-child { border-bottom: none; }
.cart-row.sold { opacity: .55; }
.cart-thumb img { width: 56px; height: 70px; object-fit: contain; }
.cart-info { cursor: pointer; }
.cart-title { font-weight: 600; font-size: .92rem; }
.cart-sku { color: var(--ink-dim); font-size: .76rem; margin-top: 2px; }
.cart-price { font-weight: 800; color: var(--green); white-space: nowrap; }
.cart-remove {
  background: none; border: none; color: var(--ink-dim); font-size: 1.3rem;
  cursor: pointer; border-radius: 6px;
}
.cart-remove:hover { color: var(--red); background: var(--sand); }
.cart-foot { margin-top: 18px; text-align: right; }
.cart-total { font-size: 1.25rem; margin-bottom: 6px; }
.cart-ship { color: var(--orange-deep); font-weight: 700; font-size: .9rem; min-height: 1.2em; margin-bottom: 12px; }
.cart-foot .btn-buy { padding: 13px 42px; }
.cart-foot .offer-note { margin-top: 10px; color: var(--ink-dim); font-size: .8rem; }
.order-summary {
  max-width: 480px; margin-left: auto; background: var(--white);
  border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; margin-bottom: 18px;
  text-align: left;
}
.sum-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: .95rem; }
.sum-total { border-top: 2px solid var(--sand-deep); margin-top: 6px; padding-top: 10px;
  font-weight: 800; font-size: 1.1rem; color: var(--green); }
.cart-nudge { color: var(--orange-deep); font-weight: 700; font-size: .85rem; padding-top: 8px; }
.ship-pick { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin: 8px 0; padding: 10px 0; display: flex; flex-direction: column; gap: 8px; }
.ship-pick.free { color: var(--green); font-size: .95rem; }
.ship-pick.single { font-size: .92rem; }
.ship-pick.single small { display: block; color: var(--ink-dim); font-weight: 400; }
.ship-opt { display: flex; gap: 10px; align-items: flex-start; cursor: pointer;
  padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; font-size: .9rem; }
.ship-opt:has(input:checked) { border-color: var(--green); background: #f2f7f0; }
.ship-opt input { accent-color: var(--green); margin-top: 4px; }
.ship-opt small { color: var(--ink-dim); font-weight: 400; }
.checkout-form { max-width: 480px; margin-left: auto; text-align: left; }
.co-head { color: var(--green); font-size: .95rem; letter-spacing: .5px;
  text-transform: uppercase; margin: 16px 0 8px; }
.co-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.co-field { display: flex; flex-direction: column; gap: 4px; font-size: .78rem;
  font-weight: 700; color: var(--ink-dim); }
.co-opt { font-weight: 400; }
.co-wide { grid-column: span 6; }
.co-half { grid-column: span 3; }
.co-third { grid-column: span 3; }
@media (min-width: 520px) { .co-third { grid-column: span 2; } .co-half.co-city { grid-column: span 2; } }
.checkout-form input, .checkout-form select {
  padding: 11px 12px; border: 1px solid var(--line); border-radius: 8px;
  background: var(--white); font-size: .95rem; font-family: inherit; font-weight: 400;
  color: var(--ink); width: 100%;
}
.checkout-form input:focus, .checkout-form select:focus {
  outline: 2px solid var(--green); outline-offset: 1px; border-color: var(--green);
}
.checkout-form .btn-buy { width: 100%; margin-top: 16px; padding: 14px; font-size: 1rem; }
.co-err { color: var(--red); font-weight: 700; font-size: .88rem; }
.order-done {
  background: var(--white); border: 2px solid var(--green); border-radius: 12px;
  padding: 34px; text-align: center;
}
.order-done h2 { color: var(--green); margin-bottom: 10px; }
.order-done .order-id { color: var(--ink-dim); font-size: .85rem; margin-bottom: 14px; word-break: break-all; }

/* ---------- modal extras ---------- */
.btn-wish {
  background: var(--white); color: var(--red); border: 2px solid var(--red);
  border-radius: 8px; padding: 12px 18px; font-weight: 800; cursor: pointer; font-size: .95rem;
}
.btn-wish:hover { background: #fdf0ee; }
.badge.hot { background: var(--red); }

/* ---------- sign-in & card watch ---------- */
.hdr-signin { font-size: .85rem; font-weight: 700; color: var(--green); }
.signin-modal { max-width: 420px; }
.signin-body { padding: 34px; text-align: center; }
.signin-body h2 { color: var(--green); margin-bottom: 8px; }
.signin-body p { color: var(--ink-dim); font-size: .9rem; margin-bottom: 16px; }
.signin-body form { display: flex; flex-direction: column; gap: 10px; }
.signin-body input[type=email] {
  padding: 12px; border: 1px solid var(--line); border-radius: 8px; font-size: .95rem;
}
.si-msg { margin-top: 14px; font-weight: 700; color: var(--green); font-size: .9rem; }
.wantlist { margin-top: 34px; background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 22px; }
.wantlist h2 { color: var(--green); font-size: 1.15rem; margin-bottom: 4px; }
.want-list { margin: 12px 0; }
.want-row { display: flex; justify-content: space-between; align-items: center;
  padding: 9px 4px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.want-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px; margin-top: 14px; }
.want-form input, .want-form select {
  padding: 10px 11px; border: 1px solid var(--line); border-radius: 8px;
  background: var(--cream, #faf6ec); font-size: .9rem; font-family: inherit;
}
.want-form .btn-buy { grid-column: 1 / -1; }
.modal-related { padding: 0 28px 24px; }
.modal-related .hrow { margin-top: 6px; }
.modal-related h2 { font-size: 1rem; }

/* ---------- modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(20,25,20,.72); z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--cream); border-radius: 14px;
  max-width: 900px; width: 100%; max-height: 92vh; overflow: auto; position: relative;
}
.modal-close {
  position: absolute; top: 10px; right: 14px; background: none; border: none;
  color: var(--ink-dim); font-size: 1.8rem; cursor: pointer; z-index: 2;
}
.modal-close:hover { color: var(--ink); }
.modal-body { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 28px; }
.modal-img { display: flex; align-items: center; justify-content: center; background: var(--sand); border-radius: 10px; padding: 16px; }
.modal-img img { max-width: 100%; max-height: 60vh; object-fit: contain; }
.modal-info h2 { font-size: 1.15rem; line-height: 1.4; margin: 10px 0 12px; color: var(--ink); }
.modal-price { font-size: 1.7rem; font-weight: 800; color: var(--green); margin-bottom: 14px; }
.modal-price .was { color: var(--ink-dim); font-size: 1rem; text-decoration: line-through; font-weight: 400; margin-left: 10px; }
.modal-price.sale { color: var(--red); }
.modal-meta { font-size: .88rem; color: var(--ink-dim); margin-bottom: 18px; line-height: 1.7; }
.modal-meta b { color: var(--ink); font-weight: 600; }
.modal-actions { display: flex; gap: 10px; margin-bottom: 14px; }
.btn-buy {
  background: var(--green); color: #fff; border: none; font-weight: 800;
  padding: 12px 26px; border-radius: 8px; cursor: pointer; font-size: .95rem;
}
.btn-buy:hover { background: var(--green-light); }
.btn-buy:disabled { background: var(--ink-dim); cursor: default; }
.btn-offer {
  background: none; border: 2px solid var(--orange); color: var(--orange-deep);
  padding: 11px 22px; border-radius: 8px; cursor: pointer; font-size: .95rem; font-weight: 700;
}
.btn-offer:hover { background: rgba(217,123,63,.1); }
.offer-form { border: 1px solid var(--line); background: var(--white); border-radius: 10px; padding: 16px; margin-bottom: 12px; }
.offer-form label { display: block; font-size: .85rem; color: var(--ink-dim); margin-bottom: 10px; }
.offer-form input {
  display: block; width: 100%; margin-top: 4px; background: var(--cream);
  border: 1px solid var(--line); color: var(--ink); padding: 9px 10px; border-radius: 6px;
}
.offer-note { font-size: .75rem; color: var(--ink-dim); margin-top: 10px; }
.sku-line { font-size: .75rem; color: var(--ink-dim); }

/* ---------- footer ---------- */
.site-footer { background: var(--green-dark); color: #cfe3d3; margin-top: auto; }
.footer-cols {
  max-width: 1400px; margin: 0 auto; padding: 36px 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px;
}
.footer-col h3 { color: #ffd9a8; font-size: .85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.footer-col button, .footer-col a, .footer-col span {
  display: block; background: none; border: none; color: #cfe3d3; text-align: left;
  font-size: .88rem; padding: 3px 0; cursor: pointer; text-decoration: none;
}
.footer-col button:hover, .footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-col span { cursor: default; }
.footer-logo { width: 64px; height: 64px; border-radius: 50%; background: #fff; margin-bottom: 10px; }
.footer-base {
  border-top: 1px solid rgba(255,255,255,.14); text-align: center;
  padding: 14px; font-size: .8rem; color: #9dbfa6;
}

/* mobile filter collapse */
.filter-toggle { display: none; }
@media (max-width: 860px) {
  .layout { grid-template-columns: 1fr; }
  .modal-body { grid-template-columns: 1fr; }
  .brand-name { font-size: 1rem; }
  .caro .card { flex-basis: 175px; }
  .filter-toggle {
    display: block; width: 100%; background: var(--white); color: var(--green);
    border: 2px solid var(--sand-deep); border-radius: 8px; padding: 11px;
    font-weight: 800; font-size: .92rem; cursor: pointer; letter-spacing: .5px;
  }
  .filters { display: none; }
  .filters.open { display: block; }
}
