/* ============================================================
   Odyssey Aerials — Underworld storefront
   ============================================================ */

/* ---- WordPress utilities ---- */
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px,1px,1px,1px); word-wrap: normal !important;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ember); color: #1a0600; padding: 10px 16px; border-radius: 0 0 10px 0;
  font-family: var(--font-display); font-weight: 600;
}
.skip-link:focus { left: 0; }
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }

/* ---- toast (add-to-cart confirmation) ---- */
.oa-toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px);
  z-index: 120; background: var(--bg-3); border: 1px solid var(--ember); color: var(--text);
  padding: 12px 20px; border-radius: 12px; font-family: var(--font-display); font-size: 14px;
  display: flex; gap: 10px; align-items: center; box-shadow: 0 0 30px var(--ember-glow);
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
}
.oa-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.oa-toast svg { color: var(--ember); }

:root {
  /* surfaces — warm-tinted near-black, like cooled obsidian */
  --bg-0: #0a0a0c;
  --bg-1: #101013;
  --bg-2: #16161b;
  --bg-3: #1d1d24;
  --surface-card: #131318;
  --border: #2a2a33;
  --border-soft: #20202708;

  /* text */
  --text: #ecedf0;
  --text-2: #b5b7c0;
  --text-3: #7d808c;
  --text-faint: #565963;

  /* accent — molten ember (tweakable) */
  --ember: #ff5a1f;
  --ember-bright: #ff7a3d;
  --ember-deep: #c43d10;
  --ember-glow: rgba(255, 90, 31, 0.45);
  --ember-wash: rgba(255, 90, 31, 0.09);
  --gold: #ffb24d;

  --glow-strength: 1;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Sora", system-ui, sans-serif;

  --shadow-card: 0 1px 0 rgba(255,255,255,0.03) inset, 0 18px 40px -24px rgba(0,0,0,0.9);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* molten atmosphere baked into the page background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 700px at 78% -8%, rgba(255,90,31,calc(0.16 * var(--glow-strength))), transparent 60%),
    radial-gradient(900px 700px at -5% 12%, rgba(120,50,200,calc(0.05 * var(--glow-strength))), transparent 55%),
    radial-gradient(1200px 900px at 50% 120%, rgba(255,120,40,calc(0.07 * var(--glow-strength))), transparent 60%);
}

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

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}

/* ---- eyebrow / section label ---- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--ember), transparent);
}

/* =================== NAV =================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px) saturate(1.2);
  background: linear-gradient(180deg, rgba(8,8,10,0.92), rgba(8,8,10,0.7));
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.16em;
  line-height: 1;
}
.brand-word span { display: block; font-size: 9px; font-weight: 400; letter-spacing: 0.55em; color: var(--text-3); margin-top: 3px; }

.nav-links { display: flex; gap: 4px; margin-left: 14px; list-style: none; padding: 0; }
.nav-links li { list-style: none; }
.nav-link,
.nav-links a {
  font-size: 14px;
  white-space: nowrap;
  color: var(--text-2);
  padding: 9px 14px;
  border-radius: 99px;
  transition: color .18s, background .18s;
  font-weight: 400;
}
.nav-link:hover,
.nav-links a:hover { color: var(--text); background: var(--bg-2); }
.nav-link.active,
.nav-links .current-menu-item > a { color: var(--text); }

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }

.nav-search {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 8px 15px;
  width: 230px;
  transition: border-color .18s, width .18s;
}
.nav-search:focus-within { border-color: var(--ember); width: 260px; }
.nav-search input {
  background: none; border: none; outline: none; color: var(--text);
  font-family: inherit; font-size: 13.5px; width: 100%;
}
.nav-search input::placeholder { color: var(--text-faint); }
.nav-search svg { color: var(--text-3); flex-shrink: 0; }

.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-2);
  transition: all .18s;
}
.icon-btn:hover { color: var(--text); border-color: var(--text-3); }
.cart-count {
  position: absolute; top: -7px; right: -7px;
  min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--ember); color: #150600;
  font-size: 11px; font-weight: 700; font-family: var(--font-display);
  border-radius: 99px; display: grid; place-items: center;
  box-shadow: 0 0 12px var(--ember-glow);
}
.cart-count:empty { display: none; }

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 500; font-size: 14px;
  padding: 13px 22px; border-radius: 12px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .12s, box-shadow .2s, background .2s, border-color .2s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--ember-bright), var(--ember));
  color: #1a0600;
  box-shadow: 0 0 0 1px rgba(255,90,31,0.4), 0 10px 30px -8px var(--ember-glow);
  font-weight: 600;
}
.btn-primary:hover { box-shadow: 0 0 0 1px rgba(255,90,31,0.6), 0 14px 38px -8px var(--ember-glow); }
.btn-ghost {
  background: var(--bg-2);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--text-3); background: var(--bg-3); }
.btn-sm { padding: 9px 15px; font-size: 13px; border-radius: 10px; }
.btn-block { width: 100%; }

/* =================== HERO =================== */
.hero { position: relative; padding-top: 64px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 560px;
}
.hero-copy { max-width: 540px; }
.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 600;
  margin: 22px 0 0;
  line-height: 0.95;
}
.hero h1 .molten {
  background: linear-gradient(100deg, var(--gold), var(--ember) 50%, var(--ember-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 28px var(--ember-glow));
}
.hero-sub { color: var(--text-2); font-size: 17.5px; margin: 24px 0 32px; max-width: 440px; }
.hero-cta { display: flex; gap: 13px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 46px; }
.hero-stat .n { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--text); }
.hero-stat .n span { color: var(--ember); }
.hero-stat .l { font-size: 12.5px; color: var(--text-3); letter-spacing: 0.04em; margin-top: 2px; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 0.92;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 70% 20%, rgba(255,90,31,0.18), transparent 55%),
    linear-gradient(160deg, #1a1a20, #0c0c0f);
  border: 1px solid var(--border);
  display: grid; place-items: center;
}
.hero-visual .ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.05);
}
.hero-orbit { position: absolute; inset: -30% -30% auto auto; width: 80%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, transparent 58%, rgba(255,90,31,0.10) 60%, transparent 64%); }

/* placeholder visual */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 10px, transparent 10px 20px),
    var(--bg-2);
  border: 1px dashed var(--border);
  display: grid; place-items: center; text-align: center;
  color: var(--text-faint);
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.04em;
  border-radius: var(--radius);
}
.ph .ph-tag {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 11px; color: var(--text-3);
  padding: 5px 10px; border: 1px solid var(--border); border-radius: 99px;
  background: rgba(0,0,0,0.3);
}
.ph svg { opacity: 0.25; margin-bottom: 12px; }

/* =================== SECTION HEADERS =================== */
section { position: relative; z-index: 1; }
.section { padding: 88px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 38px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head p { color: var(--text-3); margin: 12px 0 0; max-width: 460px; font-size: 15px; }

/* =================== CATEGORY RAIL =================== */
.cat-rail { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cat-card {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  overflow: hidden;
  text-align: left;
  display: flex; flex-direction: column; gap: 14px; min-height: 132px;
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--ember); box-shadow: 0 18px 40px -22px var(--ember-glow); }
.cat-card .cat-ico {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; color: var(--ember);
  background: var(--ember-wash); border: 1px solid rgba(255,90,31,0.2);
}
.cat-card .cat-name { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; }
.cat-card .cat-count { font-size: 12.5px; color: var(--text-3); margin-top: auto; }
.cat-card .arrow { position: absolute; top: 18px; right: 18px; color: var(--text-faint); transition: color .2s, transform .2s; }
.cat-card:hover .arrow { color: var(--ember); transform: translate(2px,-2px); }

/* =================== PARTS FINDER =================== */
.finder {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(700px 300px at 100% 0%, rgba(255,90,31,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.finder-top { display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-end; justify-content: space-between; }
.finder h2 { font-size: clamp(26px, 3.2vw, 38px); }
.finder p { color: var(--text-2); margin: 12px 0 0; max-width: 420px; font-size: 15px; }
.finder-controls { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.model-select {
  appearance: none;
  background: var(--bg-3); border: 1px solid var(--border); color: var(--text);
  font-family: var(--font-display); font-size: 15px; font-weight: 500;
  padding: 14px 44px 14px 18px; border-radius: 12px; cursor: pointer; min-width: 240px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff5a1f' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  transition: border-color .18s;
}
.model-select:focus { outline: none; border-color: var(--ember); }

.finder-results { margin-top: 30px; }
.finder-results-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 13.5px; color: var(--text-2); }
.finder-results-head b { color: var(--text); font-family: var(--font-display); }
.compat-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: #4ade80; background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.25); padding: 4px 11px; border-radius: 99px;
  font-family: var(--font-display); letter-spacing: 0.02em;
}
.finder-row { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; }
.finder-row::-webkit-scrollbar { height: 6px; }
.finder-row::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
.mini-part {
  flex: 0 0 188px;
  background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px; transition: border-color .2s, transform .2s;
}
.mini-part:hover { border-color: var(--ember); transform: translateY(-3px); }
.mini-part .mp-img { aspect-ratio: 4/3; border-radius: 10px; margin-bottom: 12px; }
.mini-part .mp-name { font-family: var(--font-display); font-weight: 500; font-size: 14px; line-height: 1.2; }
.mini-part .mp-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.mini-part .mp-price { font-family: var(--font-display); font-weight: 600; color: var(--text); }

/* =================== SHOP / PRODUCT GRID =================== */
.shop-bar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  font-family: var(--font-display); font-size: 13.5px; font-weight: 500;
  padding: 9px 16px; border-radius: 99px; border: 1px solid var(--border);
  background: transparent; color: var(--text-2); transition: all .18s; white-space: nowrap;
}
.filter-tab:hover { color: var(--text); border-color: var(--text-3); }
.filter-tab.active { background: var(--ember-wash); border-color: var(--ember); color: var(--ember-bright); }

.shop-tools { display: flex; gap: 10px; align-items: center; }
.shop-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px;
  padding: 9px 13px; width: 210px;
}
.shop-search input { background: none; border: none; outline: none; color: var(--text); font-family: inherit; font-size: 13.5px; width: 100%; }
.shop-search input::placeholder { color: var(--text-faint); }
.shop-search svg { color: var(--text-3); }
.sort-select {
  appearance: none; background: var(--bg-2); border: 1px solid var(--border); color: var(--text-2);
  font-family: var(--font-body); font-size: 13.5px; padding: 9px 32px 9px 13px; border-radius: 10px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237d808c' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .22s cubic-bezier(.2,.7,.3,1), border-color .22s, box-shadow .22s;
  position: relative;
}
.card:hover { transform: translateY(-5px); border-color: var(--border); box-shadow: 0 26px 50px -28px rgba(0,0,0,0.95), 0 0 0 1px rgba(255,90,31,0.25); }
.card-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: linear-gradient(160deg, var(--bg-3), var(--bg-1)); }
.card-media .ph { position: absolute; inset: 0; border: none; border-radius: 0; }
.card-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; z-index: 2; }
.badge {
  font-family: var(--font-display); font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 7px; backdrop-filter: blur(6px);
}
.badge-flag { background: linear-gradient(180deg, var(--ember-bright), var(--ember)); color: #1a0600; }
.badge-new { background: rgba(74,222,128,0.16); color: #6ee7a0; border: 1px solid rgba(74,222,128,0.3); }
.badge-stock { background: rgba(0,0,0,0.5); color: var(--text-2); border: 1px solid var(--border); }
.card-fav {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: rgba(0,0,0,0.45); border: 1px solid var(--border); color: var(--text-2);
  backdrop-filter: blur(6px); opacity: 0; transform: translateY(-4px); transition: all .2s;
}
.card:hover .card-fav { opacity: 1; transform: translateY(0); }
.card-fav:hover, .card-fav.on { color: var(--ember); border-color: var(--ember); }

.card-body { padding: 17px 17px 18px; display: flex; flex-direction: column; flex: 1; }
.card-cat { font-size: 11.5px; color: var(--text-3); letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--font-display); }
.card-name { font-family: var(--font-display); font-weight: 500; font-size: 16.5px; margin-top: 6px; line-height: 1.2; }
.card-desc { font-size: 13px; color: var(--text-3); margin-top: 6px; flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; gap: 10px; }
.card-price { font-family: var(--font-display); font-size: 19px; font-weight: 600; }
.card-price .free { color: #6ee7a0; font-size: 15px; }
.add-btn {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--ember-wash); border: 1px solid rgba(255,90,31,0.3); color: var(--ember-bright);
  transition: all .16s;
}
.add-btn:hover { background: var(--ember); color: #1a0600; box-shadow: 0 0 18px var(--ember-glow); }
.add-btn.wide { width: auto; padding: 0 16px; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; }

.empty-state { grid-column: 1/-1; text-align: center; padding: 70px 20px; color: var(--text-3); }
.empty-state svg { opacity: 0.3; margin-bottom: 14px; }

/* =================== BEYOND =================== */
.beyond-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.beyond-card {
  padding: 30px 28px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); border: 1px solid var(--border);
  position: relative; overflow: hidden; transition: border-color .2s;
}
.beyond-card:hover { border-color: var(--ember); }
.beyond-card .b-ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--ember-wash); color: var(--ember); border: 1px solid rgba(255,90,31,0.2); margin-bottom: 22px; }
.beyond-card h3 { font-size: 21px; }
.beyond-card p { color: var(--text-2); font-size: 14.5px; margin: 12px 0 20px; }
.beyond-tags { display: flex; gap: 9px; flex-wrap: wrap; }
.tag-btn {
  font-family: var(--font-display); font-size: 13px; font-weight: 500; color: var(--text);
  padding: 8px 16px; border-radius: 99px; border: 1px solid var(--border); background: var(--bg-3); transition: all .18s;
}
.tag-btn:hover { border-color: var(--ember); color: var(--ember-bright); }
.read-more { display: inline-flex; align-items: center; gap: 8px; color: var(--ember-bright); font-family: var(--font-display); font-weight: 500; font-size: 14px; }
.read-more svg { transition: transform .2s; }
.beyond-card:hover .read-more svg { transform: translateX(4px); }

/* =================== TESTIMONIALS =================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi {
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--surface-card); border: 1px solid var(--border); position: relative;
}
.testi .quote-mark { font-family: var(--font-display); font-size: 56px; line-height: 0.5; color: var(--ember); opacity: 0.5; height: 26px; }
.testi-text { font-size: 16px; color: var(--text); margin: 8px 0 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(140deg, var(--ember-deep), var(--bg-3)); flex-shrink: 0; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: var(--text); }
.testi-name { font-family: var(--font-display); font-weight: 500; font-size: 14.5px; }
.testi-stars { color: var(--ember); font-size: 12px; letter-spacing: 2px; margin-top: 2px; }

/* =================== FOOTER =================== */
.footer { border-top: 1px solid var(--border); margin-top: 40px; padding: 64px 0 40px; background: var(--bg-1); position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-2); font-size: 14px; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--ember-bright); }
.footer-blurb { color: var(--text-3); font-size: 14px; max-width: 280px; margin: 16px 0 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--border); color: var(--text-faint); font-size: 13px; }

/* =================== CART DRAWER =================== */
.drawer-scrim { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(3px); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .25s; }
.drawer-scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100vw); z-index: 100;
  background: var(--bg-1); border-left: 1px solid var(--border);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); box-shadow: -30px 0 80px -30px rgba(0,0,0,0.9); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--border); }
.drawer-head h3 { font-size: 18px; letter-spacing: 0.02em; }
.drawer-items { flex: 1; overflow-y: auto; padding: 14px 18px; }
.drawer-empty { display: grid; place-items: center; height: 100%; color: var(--text-3); text-align: center; gap: 14px; }
.cart-item { display: flex; gap: 13px; padding: 14px 6px; border-bottom: 1px solid var(--border); }
.cart-item .ci-img { width: 64px; height: 64px; border-radius: 10px; flex-shrink: 0; background: var(--bg-3); }
.cart-item .ci-name { font-family: var(--font-display); font-weight: 500; font-size: 14.5px; line-height: 1.2; }
.cart-item .ci-cat { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 9px; margin-top: 10px; overflow: hidden; }
.qty button { width: 28px; height: 28px; background: var(--bg-2); border: none; color: var(--text-2); font-size: 15px; display: grid; place-items: center; }
.qty button:hover { color: var(--ember); }
.qty span { min-width: 30px; text-align: center; font-family: var(--font-display); font-size: 13.5px; }
.ci-right { margin-left: auto; text-align: right; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; }
.ci-price { font-family: var(--font-display); font-weight: 600; }
.ci-remove { color: var(--text-faint); font-size: 12px; background: none; border: none; padding: 4px; transition: color .15s; }
.ci-remove:hover { color: var(--ember); }
.drawer-foot { padding: 20px 24px 24px; border-top: 1px solid var(--border); }
.drawer-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-2); margin-bottom: 8px; }
.drawer-total { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text); margin: 14px 0 18px; }

/* =================== misc =================== */
.divider-label { display:flex; align-items:center; gap:16px; color: var(--text-faint); font-family: var(--font-display); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; }
.divider-label::before, .divider-label::after { content:""; height:1px; flex:1; background: var(--border); }

/* fade-up on load — base state is the visible end-state so print/capture/reduced-motion show content */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: fadeUp .6s cubic-bezier(.2,.7,.3,1); }
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-rail { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
  .beyond-grid, .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-search { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-rail { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 22px; flex-wrap: wrap; }
  .section { padding: 60px 0; }
  .shop-bar { flex-direction: column; align-items: stretch; }
}
@media (max-width: 460px) {
  .product-grid { grid-template-columns: 1fr; }
}
