/* ============================================================
   SEALED & REVEALED — Design System (v3, desktop-first reconstruction)
   Reference mockup treated as layout spec at 1440px viewport.
   ============================================================ */

:root {
  --bg: #0d0f14;
  --surface: #151820;
  --surface-2: #1b1e27;
  --text: #f7f5f8;
  --muted: #aaa7b2;
  --magenta: #ef3bad;
  --magenta-soft: #ff66c9;
  --teal: #27d8d1;
  --teal-soft: #72f3ed;
  --violet: #8b5cf6;
  --border: #303441;
  --success: #3ddc84;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --container-max: 1400px;
  --section-y: 36px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; }

:focus-visible { outline: 2px solid var(--teal-soft); outline-offset: 3px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--magenta); color: #16060f;
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-weight: 700; z-index: 100; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; }

/* ------------------------------------------------------------
   Background texture — dense low-contrast 90s carpet pattern
------------------------------------------------------------ */
body {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='none' stroke='%23ef3bad' stroke-width='1.4' opacity='0.055'%3E%3Ccircle cx='18' cy='22' r='2'/%3E%3Cpath d='M100 16l6 10-11 2z'/%3E%3Cpath d='M172 38q10 6 18 0'/%3E%3Cpath d='M55 82l3 8 8-3'/%3E%3Cpath d='M140 150l7-2-2-7z'/%3E%3C/g%3E%3Cg fill='none' stroke='%2327d8d1' stroke-width='1.4' opacity='0.055'%3E%3Ccircle cx='138' cy='64' r='1.6'/%3E%3Cpath d='M28 128l8 3-2-9z'/%3E%3Cpath d='M188 120q8-8 0-16'/%3E%3Ccircle cx='195' cy='175' r='2'/%3E%3Cpath d='M88 184l4 7 7-4'/%3E%3Cpath d='M12 190q6-6 12 0'/%3E%3C/g%3E%3Cg fill='none' stroke='%238b5cf6' stroke-width='1.2' opacity='0.05'%3E%3Ccircle cx='65' cy='175' r='1.6'/%3E%3Cpath d='M158 195q6 6 12 0'/%3E%3Ccircle cx='38' cy='55' r='1.3'/%3E%3Cpath d='M205 82l5 6 6-5'/%3E%3Cpath d='M105 105l6 2-2-6z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px 220px;
}

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 26px; }

.section { padding: var(--section-y) 0; }
.section h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.2px;
  color: var(--magenta-soft);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}
.section-icon { font-size: 0.85em; font-style: normal; }

.speed-lines {
  display: inline-flex;
  width: 34px; height: 14px;
  margin-left: 2px;
  background:
    linear-gradient(115deg, transparent 44%, var(--teal) 44%, var(--teal) 52%, transparent 52%),
    linear-gradient(115deg, transparent 64%, var(--teal-soft) 64%, var(--teal-soft) 70%, transparent 70%),
    linear-gradient(115deg, transparent 84%, var(--teal) 84%, var(--teal) 88%, transparent 88%);
  opacity: 0.9;
}

.section-head-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 18px;
}
.section-head-row h2 { margin-bottom: 0; }

.see-all { font-size: 0.85rem; font-weight: 600; color: var(--teal-soft); white-space: nowrap; }
.see-all:hover { color: var(--teal); }

.eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--magenta-soft); }
.eyebrow--teal { color: var(--teal-soft); }
.eyebrow--desktop { display: inline-flex; align-items: center; gap: 6px; }
.sparkle { color: var(--teal-soft); }
@media (max-width: 700px) { .eyebrow--desktop { display: none; } }

.text-gradient {
  background: linear-gradient(90deg, var(--magenta-soft), var(--violet) 55%, var(--teal-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- Buttons — rectangular signage style ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.6px; text-transform: uppercase;
  padding: 13px 20px; border-radius: 7px; border: 1.5px solid transparent;
  background: var(--surface);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--magenta {
  color: var(--magenta-soft); border-color: rgba(239,59,173,0.7);
  box-shadow: 0 0 12px rgba(239,59,173,0.2), inset 0 0 0 1px rgba(239,59,173,0.2);
}
.btn--magenta:hover { background: rgba(239,59,173,0.1); box-shadow: 0 0 24px rgba(239,59,173,0.35), inset 0 0 0 1px rgba(239,59,173,0.5); }
.btn--teal {
  color: var(--teal-soft); border-color: rgba(39,216,209,0.65);
  box-shadow: 0 0 12px rgba(39,216,209,0.18), inset 0 0 0 1px rgba(39,216,209,0.2);
}
.btn--teal:hover { background: rgba(39,216,209,0.1); box-shadow: 0 0 24px rgba(39,216,209,0.32), inset 0 0 0 1px rgba(39,216,209,0.5); }

/* ============================================================
   HEADER — one compact band, 88-96px
============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,11,15,0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(239,59,173,0.3), 0 2px 10px rgba(239,59,173,0.06);
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, var(--magenta), var(--teal)) 1;
}
.header-inner { display: flex; align-items: center; gap: 30px; padding: 14px 0; min-height: 60px; }

.logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  transform: rotate(-1.5deg);
}
.logo-icon { width: 46px; height: auto; flex-shrink: 0; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-text-img { display: block; height: auto; }
.logo-text-img--1 { width: 108px; }
.logo-text-img--2 { width: 122px; }

.primary-nav ul { display: flex; gap: 26px; }
.primary-nav a { font-size: 0.9rem; font-weight: 500; color: var(--text); padding: 6px 2px; position: relative; }
.primary-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--teal));
  transform: scaleX(0); transform-origin: left; transition: transform 0.2s var(--ease);
}
.primary-nav a:hover::after { transform: scaleX(1); }
.primary-nav a:hover { color: var(--teal-soft); }

.header-actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }

.search-form {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1.5px solid rgba(239,59,173,0.5);
  border-radius: 999px; padding: 9px 18px; min-width: 320px; color: var(--muted);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 0 10px rgba(239,59,173,0.1);
}
.search-form:focus-within { border-color: var(--magenta); box-shadow: 0 0 16px rgba(239,59,173,0.35); }
.search-form .icon { color: var(--magenta-soft); width: 17px; height: 17px; }
.search-form input { border: none; background: transparent; outline: none; color: var(--text); font-family: var(--font-body); font-size: 0.86rem; width: 100%; }
.search-form input::placeholder { color: var(--muted); }

.cart-link { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; position: relative; flex-shrink: 0; }
.cart-link:hover { color: var(--teal-soft); }
.cart-badge {
  position: absolute; top: -8px; left: 12px; background: var(--magenta); color: #16060f;
  font-size: 0.65rem; font-weight: 700; min-width: 16px; height: 16px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}

.menu-toggle { display: none; padding: 4px; }
.mobile-nav { border-top: 1px solid var(--border); background: var(--bg); }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a { display: block; padding: 14px 26px; font-size: 0.95rem; font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { color: var(--teal-soft); background: var(--surface); }

@media (max-width: 900px) { .primary-nav { display: none; } .search-form { min-width: 0; flex: 1; } }
@media (max-width: 700px) { .cart-label { display: none; } .menu-toggle { display: flex; } .header-inner { gap: 16px; } }

/* ============================================================
   HERO — 39/57 split, ~460px target height
============================================================ */
.hero { padding: 34px 0 40px; }
.hero-inner { display: grid; grid-template-columns: 0.68fr 1fr; gap: 44px; align-items: center; }

.hero-copy { position: relative; }
.hero-star { position: absolute; top: -22px; left: -6px; width: 22px; height: 22px; }

.hero-heading {
  font-size: clamp(2.6rem, 3.6vw, 4.1rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.5px; margin: 6px 0 18px;
}
.hero-sub { color: var(--muted); font-size: 1rem; max-width: 400px; margin: 0 0 24px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-collage { position: relative; aspect-ratio: 12 / 9; }
.collage-main {
  position: absolute; left: 0; top: 4%; width: 72%; height: 92%;
  object-fit: cover; border-radius: var(--radius-lg);
  border: 3px solid var(--teal);
  box-shadow: 0 0 30px rgba(39,216,209,0.25), 0 24px 55px -20px rgba(0,0,0,0.7);
  z-index: 1;
}
.collage-frame {
  position: absolute; width: 38%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--radius-md); border: 7px solid var(--surface-2);
  box-shadow: 0 16px 34px -10px rgba(0,0,0,0.75);
  z-index: 2;
}
.collage-frame--1 {
  top: -4%; right: 0%; transform: rotate(7deg);
  border-color: #efe7da;
  box-shadow: 0 16px 34px -10px rgba(0,0,0,0.75), 0 0 18px rgba(239,59,173,0.2);
}
.collage-frame--2 {
  bottom: 6%; right: 2%; width: 32%; transform: rotate(-6deg);
  border-color: var(--surface-2); z-index: 3;
  box-shadow: 0 16px 34px -10px rgba(0,0,0,0.75), 0 0 18px rgba(39,216,209,0.18);
}
.collage-starburst { position: absolute; top: -9%; right: 24%; width: 60px; height: 60px; z-index: 4; filter: drop-shadow(0 0 8px rgba(39,216,209,0.65)); }
.collage-badge {
  position: absolute; bottom: -3%; right: 22%; width: 54px; height: 54px; border-radius: 50%;
  background: var(--surface); border: 2.5px solid var(--teal); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 16px rgba(39,216,209,0.45); z-index: 4;
}
.collage-badge svg { width: 27px; height: 27px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 34px; }
  .hero-collage { max-width: 480px; margin: 0 auto; aspect-ratio: 4 / 3.4; }
}
@media (max-width: 480px) {
  .hero-sub { max-width: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
}

/* ============================================================
   SHOP BY BRAND — unified directory board
============================================================ */
.section--brand { padding-top: 8px; }
.brand-panel {
  border: 2.5px solid var(--magenta);
  border-radius: var(--radius-lg);
  padding: 20px 24px 24px;
  background: radial-gradient(ellipse 60% 60% at 12% 0%, rgba(239,59,173,0.09), transparent 60%), var(--surface);
  box-shadow: 0 0 28px rgba(239,59,173,0.16), inset 0 0 0 1px rgba(39,216,209,0.14);
  position: relative;
}
.brand-panel-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.brand-panel-head h2 { margin-bottom: 0; }

.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 18px; }
.brand-col { display: flex; flex-direction: column; gap: 9px; }

.brand-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px; min-height: 46px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 5px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.brand-link .icon { transition: transform 0.2s var(--ease); color: var(--teal-soft); }
.brand-link:hover { border-color: rgba(39,216,209,0.65); box-shadow: 0 0 12px rgba(39,216,209,0.22); }
.brand-link:hover .icon { transform: translateX(3px); }
.brand-link--all {
  border-color: rgba(39,216,209,0.6); color: var(--teal-soft);
  background: rgba(39,216,209,0.08); position: relative;
}
.brand-link--all::after { content: '✦'; position: absolute; top: -7px; right: -4px; color: var(--teal-soft); font-size: 0.8rem; }
.brand-link--all:hover { border-color: var(--teal); box-shadow: 0 0 18px rgba(39,216,209,0.3); }
.brand-link--all .icon { color: var(--teal-soft); }

@media (max-width: 700px) { .brand-panel { padding: 18px; } .brand-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SHOP BY CATEGORY — wide squat illuminated panels
============================================================ */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card {
  border-radius: var(--radius-md); overflow: hidden; border: 1.5px solid var(--border); background: var(--surface);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.category-card:nth-child(odd) { border-color: rgba(239,59,173,0.45); }
.category-card:nth-child(even) { border-color: rgba(39,216,209,0.45); }
.category-card:hover { transform: translateY(-3px); }
.category-card:nth-child(odd):hover { border-color: var(--magenta); box-shadow: 0 0 20px rgba(239,59,173,0.28); }
.category-card:nth-child(even):hover { border-color: var(--teal); box-shadow: 0 0 20px rgba(39,216,209,0.28); }
.category-card img { aspect-ratio: 5 / 3; object-fit: cover; }
.category-card-foot { display: flex; align-items: center; justify-content: space-between; padding: 10px 13px; background: var(--surface-2); }
.category-card-title { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; display: flex; align-items: center; gap: 6px; }

@media (max-width: 900px) { .category-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .category-grid { grid-template-columns: 1fr; } }

/* ============================================================
   NEW ARRIVALS / PRODUCT CARDS — compact, image-dominant
============================================================ */
.product-rail-wrap { position: relative; }
.product-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(210px, 1fr); gap: 14px;
  align-items: stretch;
  overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.product-rail::-webkit-scrollbar { height: 6px; }
.product-rail::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }

.rail-arrow {
  position: absolute; top: 38%; z-index: 5; width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--text);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
.rail-arrow:hover { border-color: var(--teal); color: var(--teal-soft); box-shadow: 0 0 14px rgba(39,216,209,0.3); }
.rail-arrow--prev { left: -18px; }
.rail-arrow--next { right: -18px; }
@media (max-width: 900px) { .rail-arrow { display: none; } }

.product-card {
  scroll-snap-align: start; background: var(--surface); border: 1px solid rgba(239,59,173,0.35);
  border-radius: var(--radius-md); overflow: hidden; height: 100%;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); border-color: var(--magenta); box-shadow: 0 0 20px rgba(239,59,173,0.25); }
.product-card-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s var(--ease); }
.product-card:hover .product-card-media img { transform: scale(1.02); }

.product-card-fav {
  position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(13,15,20,0.72); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; color: var(--text);
}
.product-card-fav:hover { color: var(--magenta-soft); }
.product-card-fav[aria-pressed="true"] { color: var(--magenta); }
.product-card-fav svg { width: 15px; height: 15px; }

.product-card-body { padding: 9px 11px 11px; background: var(--bg); display: flex; flex-direction: column; flex: 1; }
.product-card-vendor { display: none; } /* not shown per reference — data still present on the object */
.product-card-title {
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--text);
  margin: 0 0 6px; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: calc(1.3em * 2);
}
.product-card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product-card-price { color: var(--magenta-soft); font-weight: 700; font-family: var(--font-display); font-size: 0.94rem; }
.product-card-price .compare-at { color: var(--muted); text-decoration: line-through; font-weight: 500; font-size: 0.82em; margin-left: 6px; }
.stock { display: inline-flex; align-items: center; gap: 5px; font-size: 0.68rem; color: var(--muted); }
.stock-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 4px rgba(61,220,132,0.7); }
.stock--sold-out .stock-dot { background: var(--muted); box-shadow: none; }
.stock--sold-out { color: var(--muted); }

.product-card-add {
  width: 100%; margin-top: 9px; padding: 8px 10px;
  border-radius: 5px; border: 1.5px solid rgba(39,216,209,0.5);
  background: transparent; color: var(--teal-soft);
  font-family: var(--font-display); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.product-card-add:hover:not(:disabled) {
  background: rgba(39,216,209,0.1); border-color: var(--teal);
  box-shadow: 0 0 12px rgba(39,216,209,0.25);
}
.product-card-add:disabled { opacity: 0.5; cursor: not-allowed; }

/* ============================================================
   FEATURED: ODDYSSEY SLIMES — full-bleed cinematic banner (~5:1)
============================================================ */
.section--featured { padding-top: 8px; }
#shop-oddyssey { scroll-margin-top: 96px; }
.featured-panel {
  display: grid;
  grid-template-columns: 0.75fr 0.75fr 1fr;
  align-items: center;
  gap: 28px;
  min-height: 210px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--violet);
  background:
    radial-gradient(ellipse 55% 100% at 92% 50%, rgba(139,92,246,0.22), transparent 65%),
    radial-gradient(ellipse 40% 80% at 15% 10%, rgba(239,59,173,0.14), transparent 60%),
    radial-gradient(ellipse 35% 70% at 5% 95%, rgba(39,216,209,0.12), transparent 55%),
    var(--surface);
  box-shadow: 0 0 30px rgba(139,92,246,0.16);
}
.featured-identity { display: flex; flex-direction: column; justify-content: center; padding-left: 28px; }
.featured-title {
  margin: 8px 0 0;
}
.featured-logo-link { display: inline-block; }
.featured-logo { display: block; width: 100%; max-width: 220px; height: auto; }
.featured-copy { display: flex; flex-direction: column; justify-content: center; }
.featured-tagline { font-family: var(--font-display); font-weight: 600; color: var(--text); margin: 0 0 10px; font-size: 0.98rem; }
.featured-body { color: var(--muted); font-size: 0.86rem; margin: 0 0 16px; max-width: 320px; }
.featured-media { height: 100%; align-self: stretch; }
.featured-image { width: 100%; height: 100%; min-height: 210px; object-fit: cover; object-position: center 40%; display: block; }

@media (max-width: 900px) {
  .featured-panel { grid-template-columns: 1fr; min-height: 0; text-align: center; }
  .featured-identity { padding-left: 0; align-items: center; }
  .featured-copy { align-items: center; }
  .featured-image { max-height: 240px; }
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer { border-top: 1px solid var(--border); padding-top: 40px; background: var(--bg); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 26px; padding-bottom: 30px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-col h3 { font-size: 0.76rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.87rem; color: var(--text); }
.footer-col a:hover { color: var(--teal-soft); }
.footer-bottom { border-top: 1px solid var(--border); padding: 18px 26px; color: var(--muted); font-size: 0.8rem; }

@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

/* ============================================================
   CART DRAWER — opens from the right, matching the existing
   header cart icon position. Add to Cart never leaves the page;
   Checkout inside this drawer is the only exit to Shopify.
============================================================ */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 59;
  background: rgba(5,4,8,0.65);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 60;
  width: 82%; max-width: 380px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  padding: 68px 24px 24px;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s var(--ease);
}
.cart-drawer.is-open { transform: translateX(0); }

.drawer-close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px;
  background: none; border: none;
  color: var(--text); font-size: 1.1rem; cursor: pointer;
}
.drawer-close:hover { color: var(--magenta-soft); }

.cart-drawer-title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin: 0 0 16px; color: var(--text); }
.cart-empty { color: var(--muted); font-size: 0.9rem; }
.cart-lines { display: flex; flex-direction: column; gap: 16px; }
.cart-line { display: flex; gap: 12px; }
.cart-line-image { width: 64px; height: 64px; flex-shrink: 0; border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); }
.cart-line-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-title { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; margin: 0 0 4px; line-height: 1.3; color: var(--text); }
.cart-line-price { color: var(--magenta-soft); font-weight: 700; font-size: 0.82rem; margin: 0 0 8px; }
.cart-line-qty { display: flex; align-items: center; gap: 8px; }
.cart-qty-btn {
  width: 26px; height: 26px; border-radius: 5px;
  border: 1px solid var(--border);
  background: none; color: var(--text);
  font-size: 1rem; line-height: 1; cursor: pointer;
}
.cart-qty-btn:hover { border-color: var(--teal); color: var(--teal-soft); }
.cart-qty-value { font-family: var(--font-display); font-size: 0.85rem; min-width: 16px; text-align: center; color: var(--text); }
.cart-remove-btn {
  margin-left: auto; background: none; border: none;
  color: var(--muted); font-size: 0.7rem; letter-spacing: 0.5px; text-transform: uppercase;
  text-decoration: underline; cursor: pointer; padding: 0;
}
.cart-remove-btn:hover { color: var(--magenta-soft); }

.cart-drawer-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.cart-subtotal { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin: 0 0 12px; color: var(--text); }
.cart-checkout-btn {
  display: block; width: 100%; text-align: center; text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: #16060f; background: var(--magenta);
  border-radius: var(--radius-sm); padding: 13px;
}
.cart-checkout-btn[aria-disabled="true"] { opacity: 0.4; pointer-events: none; }

/* ============================================================
   RESTOCK NOTIFY FORM — replaces the Add to Cart button on any
   sold-out product card. Sits in the same spot .product-card-add
   normally occupies (same margin-top), so the card layout doesn't
   shift depending on which one renders.
============================================================ */
.notify-area { margin-top: 9px; }
.notify-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 10px; border-radius: 5px; border: none;
  background: var(--magenta); color: #16060f;
  font-family: var(--font-display); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer;
  transition: background 0.18s var(--ease), transform 0.12s var(--ease);
}
.notify-btn:hover { background: var(--magenta-soft); }
.notify-btn:active { transform: scale(0.98); }

.notify-form { display: flex; flex-direction: column; gap: 8px; }
.notify-input {
  width: 100%; font-family: var(--font-body); font-size: 0.82rem;
  color: var(--text); background: var(--surface-2);
  border: 1px solid var(--border); border-radius: 5px; padding: 8px 10px;
}
.notify-input::placeholder { color: var(--muted); }
.notify-checkbox-row { display: flex; align-items: flex-start; gap: 7px; font-size: 0.7rem; line-height: 1.3; color: var(--muted); cursor: pointer; }
.notify-checkbox-row input { margin-top: 2px; }
.notify-submit {
  font-family: var(--font-display); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: #16060f; background: var(--teal-soft);
  border: none; border-radius: 5px; padding: 8px 10px; cursor: pointer;
}
.notify-submit:disabled { opacity: 0.6; cursor: default; }
.notify-message { font-size: 0.75rem; margin: 0; }
.notify-message.is-success { color: var(--success); }
.notify-message.is-error { color: var(--magenta-soft); }

/* ============================================================
   LEFT-SIDE CATEGORY DRAWER — used on shop-plush.html for its
   Aphmau/Moriah Elizabeth/Palm Pals/Nintendo/FNAF category filter.
   Independent from .cart-drawer (right side) above — this one
   slides in from the left, matching the pattern from Oddyssey
   Slimes' Full Catalog page tonight.
============================================================ */
.hamburger-btn {
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  width: 34px; height: 34px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.hamburger-btn span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; }

.plush-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 60;
  width: 82%; max-width: 320px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 68px 24px 24px;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.28s var(--ease);
}
.plush-drawer.is-open { transform: translateX(0); }

.plush-drawer-link {
  display: block; width: 100%; text-align: left;
  background: none; border: none; text-decoration: none;
  color: var(--text);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.plush-drawer-link:last-child { border-bottom: none; }
.plush-drawer-link:hover, .plush-drawer-link:focus-visible { color: var(--teal-soft); }
.plush-drawer-link:disabled { opacity: 0.4; cursor: default; }
.plush-drawer-link:disabled:hover { color: var(--text); }

/* ============================================================
   SHOP ALL PLUSH PAGE — product grid + status/count text, reusing
   the same .product-card component styles already established.
============================================================ */
.plush-page-main { padding: 32px 0 80px; }
.plush-page-status { text-align: center; color: var(--muted); padding: 40px 0; }
.plush-page-count { text-align: center; color: var(--muted); font-size: 0.85rem; margin: 0 0 24px; }
.plush-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  list-style: none; margin: 0; padding: 0;
}
@media (max-width: 640px) {
  .plush-page-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.plush-page-hero { padding: 48px 0 24px; text-align: center; }
.plush-page-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 12px; color: var(--text); }
.plush-page-hero p { color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ============================================================
   PRODUCT DETAIL PAGE (product.html) — reuses .product-card-add,
   .notify-*, .stock, and .compare-at styles already defined above
   for consistency with every product card on the site.
============================================================ */
.product-detail-main { padding: 32px 0 80px; }
.product-detail-status { text-align: center; color: var(--muted); padding: 60px 0; }
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 800px) { .product-detail-layout { grid-template-columns: 1fr; gap: 28px; } }

.product-detail-media { display: flex; flex-direction: column; gap: 12px; }
.product-detail-main-image {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: var(--surface-2);
}
.product-detail-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.product-detail-thumb {
  width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); cursor: pointer;
}
.product-detail-thumb:hover { border-color: var(--teal); }

.product-detail-vendor { color: var(--muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; }
.product-detail-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 6px 0 16px; color: var(--text); }
.product-detail-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.product-detail-price { color: var(--magenta-soft); font-weight: 700; font-family: var(--font-display); font-size: 1.3rem; }
.product-detail-description { color: var(--muted); line-height: 1.6; margin-top: 24px; white-space: pre-line; }

/* Detail-page action buttons are bigger than the compact card versions */
.product-detail-body .product-card-add,
.product-detail-body .notify-btn {
  width: auto; min-width: 220px; padding: 13px 28px; font-size: 0.85rem;
}
