/* ============================================================
   Your Collected Room — Cozy Editorial Design System
   Palette: warm cream, deep sage, dusty blue
   Type: Boska (display) + Source Serif 4 (body)
   ============================================================ */

:root,
[data-theme='light'] {
  /* Surfaces — warm cream + sage/blue tints */
  --color-bg: #f7f5ef;
  --color-surface: #fffdf8;
  --color-surface-2: #edf4f5;
  --color-surface-offset: #e8eee8;
  --color-divider: #d8e1da;
  --color-border: #c2d0c7;

  /* Text — deep sage-espresso */
  --color-text: #24302a;
  --color-text-muted: #4f5f55;
  --color-text-faint: #5a675d;
  --color-text-inverse: #f8f6f1;

  /* Primary — deep sage */
  --color-primary: #3f5a46;
  --color-primary-hover: #334a3a;
  --color-primary-active: #26392d;
  --color-primary-highlight: #dfeef3;

  /* Secondary — sage */
  --color-sage: #4e6b55;
  --color-sage-highlight: #e2ece5;

  /* Accent — slate blue (from Coastal Blue option) */
  --color-blue: #2c4f63;
  --color-blue-highlight: #dbe9ef;

  /* Legacy gold (unused) */
  --color-gold: #2c4f63;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px oklch(0.25 0.02 60 / 0.08);
  --shadow-md: 0 6px 18px oklch(0.25 0.02 60 / 0.10);
  --shadow-lg: 0 18px 44px oklch(0.25 0.02 60 / 0.16);

  --content-narrow: 680px;
  --content-default: 1080px;
  --content-wide: 1240px;

  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.15rem, 1rem + 0.75vw, 1.45rem);
  --text-xl: clamp(1.6rem, 1.25rem + 1.4vw, 2.4rem);
  --text-2xl: clamp(2.1rem, 1.3rem + 2.6vw, 3.6rem);
  --text-3xl: clamp(2.6rem, 1rem + 5vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem; --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem; --space-20: 5rem; --space-24: 6rem; --space-32: 8rem;

  --font-display: 'Boska', 'Georgia', serif;
  --font-body: 'Source Serif 4', 'Georgia', serif;
}

[data-theme='dark'] {
  --color-bg: #101815;
  --color-surface: #16211d;
  --color-surface-2: #1d2a26;
  --color-surface-offset: #23322d;
  --color-divider: #30443d;
  --color-border: #3f564c;

  --color-text: #eaf0ea;
  --color-text-muted: #b8c4b9;
  --color-text-faint: #9caea2;
  --color-text-inverse: #132019;

  --color-primary: #9fc49f;
  --color-primary-hover: #b2d5b3;
  --color-primary-active: #89ad8c;
  --color-primary-highlight: #243b43;

  --color-sage: #abcdb0;
  --color-sage-highlight: #20372e;

  --color-blue: #9fc8d8;
  --color-blue-highlight: #243b43;

  --color-gold: #9fc8d8;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.25);
  --shadow-md: 0 6px 18px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 18px 44px oklch(0 0 0 / 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #101815;
    --color-surface: #16211d;
    --color-surface-2: #1d2a26;
    --color-surface-offset: #23322d;
    --color-divider: #30443d;
    --color-border: #3f564c;
    --color-text: #eaf0ea;
    --color-text-muted: #b8c4b9;
    --color-text-faint: #9caea2;
    --color-text-inverse: #132019;
    --color-primary: #9fc49f;
    --color-primary-hover: #b2d5b3;
    --color-primary-active: #89ad8c;
    --color-primary-highlight: #243b43;
    --color-sage: #abcdb0;
    --color-sage-highlight: #20372e;
    --color-blue: #9fc8d8;
    --color-blue-highlight: #243b43;
    --color-gold: #9fc8d8;
  }
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-16);
}

body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; text-wrap: balance; font-weight: 600; letter-spacing: -0.01em; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
a { color: var(--color-primary); text-underline-offset: 3px; }

::selection { background: var(--color-primary-highlight); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }

button { cursor: pointer; background: none; border: none; }

a, button, [role='button'], input, textarea, select {
  transition: color var(--transition-interactive), background var(--transition-interactive),
    border-color var(--transition-interactive), box-shadow var(--transition-interactive), transform var(--transition-interactive);
}

.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;
}

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

/* ---- Layout helpers ---- */
.container { width: min(100% - 2.5rem, var(--content-default)); margin-inline: auto; }
.container--wide { width: min(100% - 2.5rem, var(--content-wide)); margin-inline: auto; }
.container--narrow { width: min(100% - 2.5rem, var(--content-narrow)); margin-inline: auto; }
.section { padding-block: clamp(var(--space-12), 7vw, var(--space-24)); }

.eyebrow {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-primary);
  display: inline-block; margin-bottom: var(--space-4);
}

.lead { font-size: var(--text-lg); color: var(--color-text-muted); line-height: 1.5; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); padding-block: var(--space-4); }
.brand { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; color: var(--color-text); }
.brand__mark { width: 38px; height: 38px; flex-shrink: 0; color: var(--color-primary); }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); letter-spacing: -0.01em; line-height: 1; }
.brand__name small { display: block; font-family: var(--font-body); font-size: var(--text-xs); font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); }

.nav__links { display: flex; align-items: center; gap: var(--space-8); }
.nav__links a { text-decoration: none; color: var(--color-text-muted); font-size: var(--text-sm); font-weight: 500; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--color-primary); }

.nav__actions { display: flex; align-items: center; gap: var(--space-4); }

.theme-toggle {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: var(--radius-full);
  color: var(--color-text-muted); border: 1px solid var(--color-border);
}
.theme-toggle:hover { color: var(--color-primary); border-color: var(--color-primary); background: var(--color-surface-2); }

.nav__toggle { display: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  padding: 0.7rem 1.4rem; border-radius: var(--radius-full); text-decoration: none;
  border: 1px solid transparent; cursor: pointer; letter-spacing: 0.01em;
}
.btn--primary { background: var(--color-primary); color: var(--color-text-inverse); }
.btn--primary:hover { background: var(--color-primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; }
.hero__media { position: relative; min-height: clamp(420px, 70vh, 720px); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(in oklab, color-mix(in oklab, var(--color-bg) 32%, transparent) 0%, color-mix(in oklab, var(--color-bg) 58%, transparent) 42%, color-mix(in oklab, var(--color-bg) 90%, transparent) 100%);
}
.hero__content .eyebrow, .hero__title, .hero__sub { text-shadow: 0 1px 10px color-mix(in oklab, var(--color-bg) 75%, transparent); }
.hero__content { position: relative; z-index: 2; padding-block: clamp(var(--space-16), 12vw, var(--space-32)); }
.hero__title { font-size: var(--text-3xl); max-width: 16ch; color: var(--color-text); line-height: 1.18; }
.hero__sub { margin-top: var(--space-6); font-size: var(--text-lg); color: var(--color-text); max-width: 46ch; }
.hero__cta { margin-top: var(--space-8); display: flex; gap: var(--space-4); flex-wrap: wrap; }

/* ---- Cards / grid ---- */
.grid { display: grid; gap: var(--space-8); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--color-surface); border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: var(--color-text);
  display: flex; flex-direction: column; transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--color-primary); }
.card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--color-surface-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms cubic-bezier(0.16,1,0.3,1); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.card__tag { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-primary); }
.card__title { font-size: var(--text-lg); }
.card__meta { margin-top: auto; font-size: var(--text-sm); color: var(--color-text-muted); }

/* ---- Feature / split ---- */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-12); align-items: center; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }

/* ---- Section heading ---- */
.section-head { max-width: 64ch; margin-inline: auto; margin-bottom: var(--space-12); text-align: center; }
.section-head h2 { font-size: var(--text-2xl); margin-bottom: var(--space-4); }
.section-head p { color: var(--color-text-muted); font-size: var(--text-lg); }

/* ---- Product list (shop the room) ---- */
.product-list { display: grid; gap: var(--space-6); }
.product {
  display: grid; grid-template-columns: 120px 1fr auto; gap: var(--space-6); align-items: center;
  background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); padding: var(--space-5);
}
.product__icon {
  width: 120px; height: 120px; border-radius: var(--radius-md); display: grid; place-items: center;
  background: var(--color-surface-2); color: var(--color-primary); font-size: 2.4rem;
}
.product__img { width: 120px; height: 120px; object-fit: cover; border-radius: var(--radius-md); display: block; background: var(--color-surface-2); }
.product__name { font-family: var(--font-display); font-size: var(--text-lg); margin-bottom: var(--space-2); }
.product__desc { color: var(--color-text-muted); font-size: var(--text-sm); }
.product__price { font-weight: 600; color: var(--color-text); white-space: nowrap; }
.product__cta { display: block; margin-top: var(--space-2); }
.product__link { display: inline-block; margin-top: var(--space-2); color: var(--color-text-muted); font-size: var(--text-sm); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--color-divider); transition: color .15s ease, text-decoration-color .15s ease; }
.product__link:hover { color: var(--color-sage); text-decoration-color: var(--color-sage); }

/* ---- Affiliate disclosure banner (subtle) ---- */
.disclosure {
  background: transparent; border: none; border-left: 2px solid var(--color-border);
  border-radius: 0; padding: 0 0 0 var(--space-4); font-size: var(--text-xs); color: var(--color-text-faint);
  display: flex; gap: var(--space-3); align-items: flex-start; font-style: italic; margin-bottom: var(--space-6);
}
.disclosure svg { flex-shrink: 0; color: var(--color-text-faint); margin-top: 1px; width: 14px; height: 14px; }
.disclosure--bar { border-left: none; background: var(--color-surface-2); border-radius: var(--radius-md); padding: var(--space-4) var(--space-6); justify-content: center; text-align: center; align-items: center; margin-bottom: var(--space-12); }
.disclosure a { color: var(--color-text-muted); text-decoration: underline; }
.disclosure strong { font-weight: 600; color: var(--color-text-muted); }

/* ---- Room Ideas: filter + imagined room ---- */
.filter-bar { display:flex; flex-wrap:wrap; gap:var(--space-2); justify-content:center; margin-bottom: var(--space-10); }
.filter-chip { font: inherit; font-size: var(--text-sm); color: var(--color-text-muted); background: var(--color-surface-2); border:1px solid var(--color-border); padding: 0.5rem 1rem; border-radius: var(--radius-full); cursor:pointer; transition: all .15s ease; }
.filter-chip:hover { color: var(--color-text); }
.filter-chip--active { background: var(--color-surface); color: var(--color-text); border-color: var(--color-accent); }
.imagined-room { display:grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-10); align-items:center; margin-top: var(--space-16); padding: var(--space-10); background: var(--color-surface-2); border-radius: var(--radius-lg); }
.imagined-room__media img { width:100%; aspect-ratio: 4/3; object-fit:cover; border-radius: var(--radius-md); transition: opacity .4s ease; }
.imagined-room__note { font-size: var(--text-xs); color: var(--color-text-faint); font-style: italic; margin-top: var(--space-3); }
.collect-next { margin-top: var(--space-16); text-align:center; max-width: 56ch; margin-inline:auto; }
.collect-next h3 { font-family: var(--font-display); font-size: var(--text-xl); margin: var(--space-4) 0; }
@media (max-width:768px){ .imagined-room{ grid-template-columns:1fr; gap: var(--space-6); padding: var(--space-6);} }

/* ---- Newsletter ---- */
.newsletter {
  background: var(--color-surface-offset); border-radius: var(--radius-xl); padding: clamp(var(--space-10), 6vw, var(--space-20));
  text-align: center; position: relative; overflow: hidden;
}
.newsletter h2 { font-size: var(--text-2xl); margin-bottom: var(--space-4); }
.newsletter p { color: var(--color-text-muted); margin-inline: auto; max-width: 48ch; }
.newsletter__form { display: flex; gap: var(--space-3); max-width: 460px; margin: var(--space-8) auto 0; flex-wrap: wrap; }
.newsletter__cta { text-align: center; margin-top: var(--space-8); }
.newsletter__cta .btn { margin-bottom: var(--space-4); }
.newsletter__form input {
  flex: 1; min-width: 220px; padding: 0.8rem 1.2rem; border-radius: var(--radius-full);
  border: 1px solid var(--color-border); background: var(--color-surface); color: var(--color-text);
}
.newsletter__form input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-highlight); }
.newsletter__note { font-size: var(--text-xs); color: var(--color-text-faint); margin-top: var(--space-4); }

/* ---- Article / content page ---- */
.article__head { padding-block: clamp(var(--space-12), 8vw, var(--space-20)); border-bottom: 1px solid var(--color-divider); }
.article__title { font-size: var(--text-2xl); max-width: 18ch; }
.article__meta { display: flex; gap: var(--space-6); margin-top: var(--space-5); font-size: var(--text-sm); color: var(--color-text-muted); flex-wrap: wrap; }
.article__hero { margin-top: var(--space-8); border-radius: var(--radius-lg); overflow: hidden; }
.article__body { padding-block: var(--space-16); }
.article__body h2 { font-size: var(--text-xl); line-height: 1.3; margin-top: var(--space-12); margin-bottom: var(--space-4); }
.article__body h3 { font-size: var(--text-lg); line-height: 1.3; margin-top: var(--space-8); margin-bottom: var(--space-3); color: var(--color-primary); }
.article__body p { margin-bottom: var(--space-5); }
.article__body ul, .article__body ol { margin: var(--space-5) 0 var(--space-5) var(--space-6); }
.article__body li { margin-bottom: var(--space-3); }
.article__body blockquote {
  border-left: 3px solid var(--color-primary); padding-left: var(--space-6);
  font-size: var(--text-lg); font-style: italic; color: var(--color-text-muted); margin: var(--space-8) 0;
}

/* ---- Footer ---- */
.site-footer { background: var(--color-surface-offset); border-top: 1px solid var(--color-divider); padding-block: var(--space-16); margin-top: var(--space-24); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--space-12); }
.footer__brand .brand { margin-bottom: var(--space-4); }
.footer__about { color: var(--color-text-muted); font-size: var(--text-sm); max-width: 36ch; }
.footer__social { display: flex; gap: var(--space-5); margin-top: var(--space-5); }
.footer__social a { font-size: var(--text-sm); color: var(--color-text); text-decoration: none; display: inline-flex; align-items: center; gap: var(--space-2); }
.footer__social a:hover { color: var(--color-primary); }
.footer__col h4 { font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: var(--space-4); }
.footer__col a { display: block; text-decoration: none; color: var(--color-text); font-size: var(--text-sm); margin-bottom: var(--space-3); }
.footer__col a:hover { color: var(--color-primary); }
.footer__bottom { margin-top: var(--space-12); padding-top: var(--space-6); border-top: 1px solid var(--color-border); display: flex; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; font-size: var(--text-xs); color: var(--color-text-faint); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__actions .btn--primary { display: none; }
  .nav__toggle { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--color-border); border-radius: var(--radius-full); color: var(--color-text); }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .product { grid-template-columns: 80px 1fr; }
  .product__icon { width: 80px; height: 80px; font-size: 1.8rem; }
  .product__img { width: 80px; height: 80px; }
  .product > div:last-child { grid-column: 1 / -1; text-align: center; }
  .product__cta { display: inline-flex; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---- Books for this room callout ---- */
.bookroom{border:1px solid var(--color-divider);border-radius:var(--radius-xl);padding:var(--space-12);background:var(--color-surface);}
.bookroom__head{margin-bottom:var(--space-8);}
.bookroom__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:var(--space-5);margin-bottom:var(--space-10);}
.bookroom__card{border:1px solid var(--color-divider);border-radius:var(--radius-lg);padding:var(--space-6);background:var(--color-bg);display:flex;flex-direction:column;gap:var(--space-3);}
.bookroom__tag{font-size:var(--text-xs);letter-spacing:.08em;text-transform:uppercase;color:var(--color-text-faint);font-weight:600;}
.bookroom__title{font-family:var(--font-display);font-size:var(--text-lg);color:var(--color-text);line-height:1.2;}
.bookroom__why{font-size:var(--text-sm);color:var(--color-text-muted);flex:1;}
.bookroom__ai{border-top:1px dashed var(--color-divider);padding-top:var(--space-8);display:grid;grid-template-columns:1fr 1fr;gap:var(--space-8);align-items:center;}
@media (max-width:720px){.bookroom__ai{grid-template-columns:1fr;}}
.bookroom__ai-badge{display:inline-flex;align-items:center;gap:var(--space-2);background:var(--color-blue-highlight);color:var(--color-blue);border:1px solid var(--color-blue);border-radius:var(--radius-full);padding:var(--space-1) var(--space-4);font-size:var(--text-xs);font-weight:600;width:fit-content;}
.bookroom__ai-title{font-family:var(--font-display);font-size:var(--text-xl);color:var(--color-text);margin:var(--space-4) 0 var(--space-3);font-style:italic;line-height:1.15;}
.bookroom__ai-premise{color:var(--color-text-muted);margin-bottom:var(--space-5);font-size:var(--text-sm);}
.bookroom__ai-img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:var(--radius-lg);border:1px solid var(--color-divider);box-shadow:var(--shadow-md);}
.bookroom__ai-caption{font-size:var(--text-xs);color:var(--color-text-faint);margin-top:var(--space-3);text-align:center;}

/* ---- Book cards (portrait covers, full-card clickable) ---- */
.book-card { display: flex; flex-direction: column; }
.book-card .card__media { aspect-ratio: 2 / 3; background: var(--color-surface-2); }
.book-card .card__media img { object-fit: contain; padding: var(--space-4); transition: transform 400ms cubic-bezier(0.16,1,0.3,1); }
.book-card:hover .card__media img { transform: scale(1.03); }
.book-card .card__body { gap: var(--space-2); }
.book-card .card__author { font-size: var(--text-sm); color: var(--color-text-muted); font-style: italic; }
.book-card .card__desc { font-size: var(--text-sm); color: var(--color-text-muted); }
.book-card .card__cta { margin-top: auto; padding-top: var(--space-2); color: var(--color-primary); font-weight: 600; font-size: var(--text-sm); }

/* ---- Reading gear list (Kindle section) ---- */
.gear-list { list-style: none; margin: var(--space-6) 0 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-4); }
.gear-list li { display: flex; flex-direction: column; gap: 2px; padding-bottom: var(--space-4); border-bottom: 1px solid var(--color-divider); }
.gear-list li:last-child { border-bottom: none; padding-bottom: 0; }
.gear-link { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-primary); text-decoration: none; }
.gear-link:hover { color: var(--color-primary-hover); }
.gear-list span { font-size: var(--text-sm); color: var(--color-text-muted); }
