/* Marburn Curtain & Home — site styles */
:root {
  --red: #C8102E;
  --red-deep: #9C0C24;
  --ink: #1F1F1F;
  --ink-soft: #4A4F55;
  --paper: #FFFFFF;
  --sheer: #EEF1F4;
  --line: #D6DBE0;
  --foot: #1B1D20;

  --f-display: "Zilla Slab", "Rockwell", Georgia, serif;
  --f-body: "Albert Sans", "Segoe UI", Helvetica, Arial, sans-serif;

  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem; --s-5: 1.5rem;
  --s-6: 2rem; --s-7: 3rem; --s-8: 4.5rem;
  --wrap: 1200px;
  --radius: 3px;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--f-body); font-size: 1.0625rem; line-height: 1.6; color: var(--ink); background: var(--paper); }
img { max-width: 100%; height: auto; }
a { color: var(--red-deep); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--red); }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
.vh { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: var(--s-2) var(--s-4); z-index: 50; }
.skip:focus { left: var(--s-4); }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--s-5); }
.muted { color: var(--ink-soft); }
h1, h2, h3, h4, h5, h6 { font-family: var(--f-display); font-weight: 600; line-height: 1.15; color: var(--ink); margin: 1.6em 0 .5em; }

/* ---------- buttons ---------- */
.btn { display: inline-block; font: 600 1rem/1 var(--f-body); padding: .9rem 1.35rem; border-radius: var(--radius); border: 2px solid transparent; text-decoration: none; cursor: pointer; transition: background-color .15s, color .15s, border-color .15s; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); color: #fff; }
.btn-line { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-line:hover { background: var(--ink); color: #fff; }
.btn-white { background: #fff; color: var(--red-deep); }
.btn-white:hover { background: var(--ink); color: #fff; }

/* ---------- header ---------- */
.announce { background: var(--ink); color: #fff; font-size: .875rem; line-height: 1.4; padding: .55rem 0; text-align: center; }
.site-head { border-bottom: 4px solid var(--red); background: #fff; position: relative; z-index: 20; }
.head-row { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); min-height: 96px; }
.brand img { display: block; width: 132px; height: auto; }
.site-nav > ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: var(--s-1); }
.site-nav a, .sub-toggle { display: block; font: 600 .95rem/1.2 var(--f-body); color: var(--ink); text-decoration: none; padding: .7rem .8rem; background: none; border: 0; cursor: pointer; border-radius: var(--radius); }
.site-nav a:hover, .sub-toggle:hover, .sub-toggle[aria-expanded="true"] { color: var(--red); }
.site-nav a[aria-current="page"] { color: var(--red); box-shadow: inset 0 -3px 0 var(--red); border-radius: 0; }
.sub-toggle::after { content: ""; display: inline-block; width: .45em; height: .45em; margin-left: .45em; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-.2em) rotate(45deg); }
.has-sub { position: relative; }
.sub { list-style: none; margin: 0; padding: var(--s-2) 0; position: absolute; right: 0; top: 100%; min-width: 280px; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--red); box-shadow: 0 12px 24px -12px rgba(20, 20, 20, .35); display: none; }
.has-sub.open .sub { display: block; }
.sub a { font-weight: 500; padding: .55rem 1rem; }
.nav-search a { display: flex; align-items: center; gap: .35rem; }
.nav-search-label { display: none; }
.nav-toggle { display: none; }

@media (max-width: 1000px) {
  .head-row { min-height: 76px; }
  .brand img { width: 104px; }
  .nav-toggle { display: inline-flex; align-items: center; gap: .6rem; font: 600 1rem var(--f-body); background: none; border: 2px solid var(--ink); border-radius: var(--radius); padding: .5rem .9rem; color: var(--ink); cursor: pointer; }
  .bars, .bars::before, .bars::after { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
  .bars::before, .bars::after { content: ""; position: absolute; left: 0; }
  .bars::before { top: -6px; } .bars::after { top: 6px; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 4px solid var(--red); box-shadow: 0 16px 24px -16px rgba(0,0,0,.3); }
  .site-nav.open { display: block; }
  .site-nav > ul { flex-direction: column; align-items: stretch; padding: var(--s-2) var(--s-5) var(--s-4); gap: 0; }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav a, .sub-toggle { padding: .95rem 0; width: 100%; text-align: left; font-size: 1.05rem; }
  .sub { position: static; border: 0; box-shadow: none; padding: 0 0 var(--s-2) var(--s-4); min-width: 0; }
  .site-nav a[aria-current="page"] { box-shadow: none; }
  .nav-search-label { display: inline; }
}

/* ---------- breadcrumbs ---------- */
.crumbs ol { list-style: none; margin: 0; padding: var(--s-4) 0 0; display: flex; flex-wrap: wrap; font-size: .875rem; color: var(--ink-soft); }
.crumbs li + li::before { content: "/"; margin: 0 .5rem; color: var(--line); }
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--red); }

/* ---------- hero (the one bold moment) ---------- */
.hero { padding: var(--s-7) 0 var(--s-8); background: var(--sheer); }
.hero-grid { display: grid; grid-template-columns: 5fr 7fr; gap: var(--s-7); align-items: center; }
.hero-title { font-size: clamp(2.8rem, 6vw, 4.75rem); line-height: .95; margin: 0 0 var(--s-5); letter-spacing: -.01em; font-weight: 700; }
.hero-lede { font-size: 1.2rem; max-width: 34em; margin: 0 0 var(--s-6); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin: 0; }
.window { margin: 0; }
.window-valance { height: 34px; margin: 0 -18px; background:
  repeating-linear-gradient(90deg, #a90d27 0 6px, var(--red) 6px 22px, #de2a45 22px 26px, var(--red) 26px 34px);
  border-radius: 3px 3px 10px 10px; box-shadow: 0 6px 10px -4px rgba(0,0,0,.35); position: relative; z-index: 2; }
.window-pane { position: relative; overflow: hidden; border: 10px solid #fff; outline: 1px solid var(--line); background: var(--sheer); aspect-ratio: 16 / 9; }
.window-pane img { display: block; width: 100%; height: 100%; object-fit: cover; }
.drape { position: absolute; top: 0; bottom: 0; width: 11%; background:
  repeating-linear-gradient(90deg, #8f0a20 0 5px, var(--red) 5px 18px, #e03a53 18px 21px, #b40e29 21px 30px);
  box-shadow: 0 0 18px rgba(0,0,0,.35); }
.drape-l { left: 0; transform-origin: left; border-bottom-right-radius: 40% 12%; }
.drape-r { right: 0; transform-origin: right; border-bottom-left-radius: 40% 12%; }
.drape { animation: drape-open 1.6s cubic-bezier(.2,.7,.2,1) .35s both; }
@keyframes drape-open { from { transform: scaleX(3.1); } to { transform: scaleX(1); } }
.window figcaption { font-size: .85rem; color: var(--ink-soft); margin-top: var(--s-2); }
@media (prefers-reduced-motion: reduce) { .drape { animation: none; } }
@media (max-width: 860px) {
  .hero { padding: var(--s-5) 0 var(--s-7); }
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .window-valance { margin: 0 -8px; height: 24px; }
}

/* ---------- home sections ---------- */
.band { padding: var(--s-8) 0; }
.band-sheer { background: var(--sheer); }
.sec-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 var(--s-4); }
.cat-grid { list-style: none; margin: var(--s-6) 0 0; padding: 0; display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--s-5); }
.cat { grid-column: span 3; }
.cat-wide { grid-column: span 6; }
.cat a { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: var(--ink); }
.cat-img { display: block; aspect-ratio: 1; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.cat-wide .cat-img { aspect-ratio: 16 / 10; }
.cat-img img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform .4s; }
.cat a:hover .cat-img img { transform: scale(1.03); }
.cat-name { font: 600 1.35rem/1.2 var(--f-display); margin: var(--s-3) 0 var(--s-1); }
.cat a:hover .cat-name { color: var(--red); }
.cat-desc { font-size: .9rem; color: var(--ink-soft); line-height: 1.45; }
@media (max-width: 900px) { .cat, .cat-wide { grid-column: span 6; } }
@media (max-width: 520px) { .cat-grid { gap: var(--s-5) var(--s-3); } .cat, .cat-wide { grid-column: span 6; } .cat-wide:last-child { grid-column: span 12; } .cat-name { font-size: 1.1rem; } .cat-desc { font-size: .8rem; } }

.feature { padding: 0 0 var(--s-8); }
.feature-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: var(--s-7); align-items: center; border-top: 1px solid var(--line); padding-top: var(--s-8); }
.feature-grid img { width: 100%; display: block; border: 1px solid var(--line); }
.feature-grid p { max-width: 38em; }
@media (max-width: 760px) { .feature-grid { grid-template-columns: 1fr; gap: var(--s-5); } }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; gap: var(--s-7); } }
.guide-list { list-style: none; margin: var(--s-5) 0 0; padding: 0; border-top: 1px solid var(--line); }
.guide-list li { border-bottom: 1px solid var(--line); }
.guide-list a { display: block; padding: .85rem 0; font-weight: 600; color: var(--ink); text-decoration: none; }
.guide-list a:hover { color: var(--red); }
.state-list { list-style: none; margin: var(--s-5) 0 0; padding: 0; display: grid; gap: var(--s-3); }
.state-list a { display: flex; align-items: center; gap: var(--s-4); background: #fff; border: 1px solid var(--line); padding: var(--s-3) var(--s-4); text-decoration: none; color: var(--ink); font: 600 1.25rem var(--f-display); }
.state-list a:hover { border-color: var(--red); color: var(--red); }
.st { display: inline-grid; place-items: center; width: 3rem; height: 3rem; background: var(--red); color: #fff; font: 700 1rem var(--f-body); border-radius: 50%; }

.newsletter { background: var(--red); color: #fff; padding: var(--s-7) 0; }
.newsletter .sec-title { color: #fff; }
.newsletter-row { display: flex; justify-content: space-between; align-items: center; gap: var(--s-5); flex-wrap: wrap; }
.newsletter-row p { margin: 0; }

/* ---------- swing-tag price ---------- */
.tag { margin: var(--s-4) 0 var(--s-5); display: flex; align-items: center; gap: var(--s-3); flex-wrap: wrap; }
.tag-price { position: relative; display: inline-block; background: var(--red); color: #fff; font: 700 1.6rem/1 var(--f-display); padding: .5rem 1rem .5rem 2.1rem; clip-path: polygon(14px 0, 100% 0, 100% 100%, 14px 100%, 0 50%); }
.tag-price::before { content: ""; position: absolute; left: 14px; top: 50%; width: 9px; height: 9px; margin-top: -4.5px; border-radius: 50%; background: #fff; }
.tag-was { color: var(--ink-soft); font-size: 1.1rem; }

/* ---------- product ---------- */
.product { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--s-7); padding-top: var(--s-5); padding-bottom: var(--s-8); align-items: start; }
.gallery { position: sticky; top: var(--s-4); }
.gallery-main { background: #fff; border: 1px solid var(--line); aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-empty span { color: var(--ink-soft); font-size: .9rem; }
.thumbs { list-style: none; margin: var(--s-3) 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: var(--s-2); }
.thumbs button { display: block; width: 100%; aspect-ratio: 1; padding: 2px; background: #fff; border: 1px solid var(--line); cursor: pointer; }
.thumbs button[aria-current="true"] { border: 2px solid var(--red); padding: 1px; }
.thumbs img { width: 100%; height: 100%; object-fit: contain; display: block; }
.vendor { margin: 0; font-size: .9rem; color: var(--ink-soft); font-weight: 600; }
.p-title { font-size: clamp(2rem, 3.6vw, 2.8rem); margin: .2em 0 0; }
.mini-h { font: 700 1rem/1.3 var(--f-body); margin: 0 0 var(--s-3); color: var(--ink); }
.variants { margin: var(--s-5) 0; }
.opt-label { font-size: .85rem; font-weight: 600; color: var(--ink-soft); margin: var(--s-3) 0 var(--s-2); }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--s-2); }
.chips li { display: inline-block; border: 1px solid var(--line); padding: .3rem .7rem; font-size: .9rem; border-radius: 99px; background: #fff; }
.chips-nav .chips li { border: 0; padding: 0; background: none; }
.chips-nav .chips a { display: inline-block; border: 1px solid var(--line); padding: .35rem .8rem; font-size: .9rem; border-radius: 99px; color: var(--ink); text-decoration: none; background: #fff; }
.chips a:hover { border-color: var(--red); color: var(--red); }
.opt-rows { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.opt-rows li { border-bottom: 1px solid var(--line); padding: .5rem 0; font-size: .95rem; }
.pickup { margin-top: var(--s-6); background: var(--sheer); padding: var(--s-5); border-left: 4px solid var(--red); }
.pickup p { font-size: .95rem; }
.pickup p:last-child { margin-bottom: 0; }
.related { padding-bottom: var(--s-8); }
@media (max-width: 860px) { .product { grid-template-columns: 1fr; gap: var(--s-5); } .gallery { position: static; } }

/* ---------- tables ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: var(--s-4) 0; }
.data-table { border-collapse: collapse; width: 100%; font-size: .95rem; }
.data-table th, .data-table td { text-align: left; padding: .55rem .75rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table thead th, .data-table tr:first-child th { background: var(--sheer); font-weight: 600; }
.data-table .num { white-space: nowrap; font-weight: 600; }
.data-table s { color: var(--ink-soft); font-weight: 400; }

/* ---------- listings & cards ---------- */
.listing { padding-top: var(--s-4); padding-bottom: var(--s-8); }
.list-head { margin-bottom: var(--s-5); }
.page-title { font-size: clamp(2.1rem, 4.2vw, 3.2rem); margin: var(--s-3) 0 var(--s-3); font-weight: 700; }
.lede { font-size: 1.15rem; max-width: 42em; margin: 0 0 var(--s-3); }
.count { font-size: .9rem; }
.list-desc { margin-bottom: var(--s-6); }
.chips-nav { margin: 0 0 var(--s-6); }
.grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--s-6) var(--s-5); }
.card-link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: var(--ink); }
.card-img { display: grid; place-items: center; aspect-ratio: 1; background: #fff; border: 1px solid var(--line); overflow: hidden; margin-bottom: var(--s-3); }
.card-img img { width: 100%; height: 100%; object-fit: contain; }
.card-noimg { width: 100%; height: 100%; background: repeating-linear-gradient(90deg, var(--sheer) 0 10px, #fff 10px 20px); }
.grid-tiles .card-img { aspect-ratio: 6 / 5; }
.grid-tiles .card-img img { object-fit: contain; }
.card-title { font-weight: 600; line-height: 1.35; }
a.card-link:hover .card-title { color: var(--red); text-decoration: underline; text-underline-offset: .18em; }
a.card-link:hover .card-img { border-color: var(--ink-soft); }
.card-desc, .card-sku, .card-note { font-size: .875rem; color: var(--ink-soft); margin-top: var(--s-1); }
.card-price { display: inline-block; align-self: flex-start; margin-top: var(--s-2); font-weight: 700; color: var(--red-deep); }
.card-price s { color: var(--ink-soft); font-weight: 400; }
@media (max-width: 600px) { .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-5) var(--s-3); } .card-title { font-size: .95rem; } }
.badges { display: flex; gap: var(--s-1); margin: 0 0 var(--s-2); }
.badge { display: inline-block; font: 700 .72rem/1 var(--f-body); letter-spacing: .02em; background: var(--ink); color: #fff; padding: .3rem .5rem; border-radius: 2px; }
.pager ul { list-style: none; margin: var(--s-7) 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--s-2); }
.pager a, .pager span { display: inline-grid; place-items: center; min-width: 2.75rem; height: 2.75rem; padding: 0 .8rem; border: 1px solid var(--line); text-decoration: none; color: var(--ink); font-weight: 600; }
.pager a:hover { border-color: var(--red); color: var(--red); }
.pager span[aria-current] { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- content pages ---------- */
.page-grid { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: var(--s-8); padding-top: var(--s-4); padding-bottom: var(--s-8); }
.page-body { min-width: 0; }
.side { padding-top: var(--s-7); }
.side-box { border-top: 3px solid var(--red); padding-top: var(--s-3); margin-bottom: var(--s-6); }
.side-box ul { list-style: none; margin: 0; padding: 0; }
.side-box li { border-bottom: 1px solid var(--line); }
.side-box a { display: block; padding: .55rem 0; color: var(--ink); text-decoration: none; font-size: .95rem; }
.side-box a:hover, .side-box a[aria-current] { color: var(--red); }
@media (max-width: 900px) { .page-grid { grid-template-columns: 1fr; gap: var(--s-5); } .side { padding-top: 0; } }

.prose { max-width: 46rem; overflow-wrap: anywhere; }
.prose > :first-child { margin-top: 0; }
.prose h2 { font-size: 1.75rem; }
.prose h3 { font-size: 1.35rem; }
.prose h4, .prose h5, .prose h6 { font-size: 1.1rem; font-family: var(--f-body); font-weight: 700; margin: 1.4em 0 .3em; }
.prose p, .prose ul, .prose ol { margin: 0 0 1em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .35em; }
.prose img { display: block; margin: var(--s-4) 0; max-height: 640px; width: auto; }
.prose a img { display: inline-block; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: var(--s-5) 0; }
.prose blockquote { margin: var(--s-5) 0; padding-left: var(--s-5); border-left: 4px solid var(--red); }
.prose iframe { width: 100%; min-height: 320px; border: 0; }
.prose .option-list { list-style: none; padding: 0; border-top: 1px solid var(--line); }
.prose .option-list li { border-bottom: 1px solid var(--line); padding: .45rem 0; margin: 0; }
.l-grid { margin: var(--s-4) 0; }
.l-row { display: flex; flex-wrap: wrap; gap: var(--s-5); margin-bottom: var(--s-4); }
.l-cell { flex: 1 1 260px; min-width: 0; }
.l-media { flex: 0 1 240px; }
.l-cell > :first-child { margin-top: 0; }
.l-cell img { margin-top: 0; }
.p-desc { margin-top: var(--s-5); }

/* ---------- forms ---------- */
.contact-form { margin-top: var(--s-6); background: var(--sheer); padding: var(--s-5); max-width: 46rem; }
.contact-form label { display: flex; flex-direction: column; gap: var(--s-1); font-weight: 600; font-size: .95rem; margin-bottom: var(--s-4); flex: 1 1 220px; }
.field-row { display: flex; flex-wrap: wrap; gap: 0 var(--s-4); }
input, select, textarea { font: 400 1rem var(--f-body); color: var(--ink); padding: .7rem .8rem; border: 1px solid #aeb5bc; border-radius: var(--radius); background: #fff; width: 100%; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--red); outline-offset: 0; border-color: var(--red); }
.form-status { font-weight: 600; margin: 0; }
.search-form { display: flex; gap: var(--s-2); max-width: 40rem; margin: var(--s-4) 0; }
.search-form input { flex: 1; font-size: 1.1rem; }
.search-page, .sitemap-page, .notfound { padding-bottom: var(--s-8); }
.search-results { margin-top: var(--s-6); }
.notfound .guide-list { max-width: 30rem; }

/* ---------- site map ---------- */
.sm-group { border-top: 1px solid var(--line); }
.sm-group:last-child { border-bottom: 1px solid var(--line); }
.sm-group summary { cursor: pointer; padding: var(--s-4) 0; font: 600 1.3rem var(--f-display); display: flex; justify-content: space-between; }
.sm-group summary .muted { font: 400 .95rem var(--f-body); }
.sm-list { columns: 3 240px; column-gap: var(--s-6); list-style: none; padding: 0 0 var(--s-5); margin: 0; font-size: .95rem; }
.sm-list li { break-inside: avoid; padding: .2rem 0; }

/* ---------- footer ---------- */
.site-foot { background: var(--foot); color: #D9DDE1; font-size: .95rem; }
.site-foot a { color: #fff; text-decoration: none; }
.site-foot a:hover { text-decoration: underline; color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1.3fr; gap: var(--s-6); padding-top: var(--s-7); padding-bottom: var(--s-6); }
.foot-logo { display: block; background: #fff; padding: 6px; margin-bottom: var(--s-4); }
.foot-h { font: 700 1rem var(--f-body); color: #fff; margin: 0 0 var(--s-3); }
.foot-links { list-style: none; margin: 0; padding: 0; }
.foot-links li { margin-bottom: .45rem; }
.foot-policy { margin: 0; line-height: 1.55; }
.foot-base { border-top: 1px solid #34383d; padding-top: var(--s-4); padding-bottom: var(--s-5); font-size: .875rem; }
.foot-base p { margin: 0; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Amazon affiliate ---------- */
:root { --amz: #FF9900; --amz-deep: #E47911; }
.btn-amz { background: var(--amz); color: #111; border-color: var(--amz); }
.btn-amz:hover { background: var(--amz-deep); border-color: var(--amz-deep); color: #111; }
.amz-note { font-size: .8rem; color: var(--ink-soft); margin: var(--s-2) 0 0; }
.announce { font-size: .8rem; padding: .4rem 0; }
.announce a { color: #fff; }
.amz-box { margin-top: var(--s-6); background: #FFF6E8; padding: var(--s-5); border-left: 4px solid var(--amz); }
.amz-box p { font-size: .95rem; }
.amz-box .amz-note { margin-bottom: 0; }
.listing .amz-box { max-width: 760px; margin: var(--s-7) 0 var(--s-5); }
.list-cta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3) var(--s-4); margin: var(--s-4) 0 var(--s-6); }
.list-cta .amz-note { margin: 0; }
.amz-cats { list-style: none; margin: var(--s-5) 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: var(--s-3); }
.amz-cats a { display: flex; align-items: center; justify-content: space-between; gap: var(--s-2); min-height: 3.2rem; padding: .7rem 1rem; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--amz); color: var(--ink); font-weight: 600; text-decoration: none; }
.amz-cats a::after { content: "Amazon"; font-size: .72rem; font-weight: 600; color: var(--ink-soft); }
.amz-cats a:hover { border-color: var(--amz-deep); color: var(--ink); background: #FFF6E8; }
.side-box .amz-note { margin-top: var(--s-2); }
.window-portrait .window-pane { aspect-ratio: 4 / 5; max-width: 460px; margin: 0 auto; }
.window-portrait .window-valance { max-width: 500px; margin-left: auto; margin-right: auto; }
.window-portrait .window-pane img { object-fit: cover; object-position: center 30%; }
.story img { display: block; width: 100%; border: 1px solid var(--line); margin: var(--s-4) 0; }

/* ---------- category guide (home) ---------- */
.cat-guide-intro { max-width: 46em; }
.cat-group-title { font: 600 1.45rem/1.2 var(--f-display); margin: var(--s-7) 0 var(--s-4); padding-bottom: var(--s-2); border-bottom: 2px solid var(--line); }
.amz-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-5); }
.amz-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); }
.amz-card-img { display: block; aspect-ratio: 4 / 3; background: #fff; border-bottom: 1px solid var(--line); overflow: hidden; }
.amz-card-img img { width: 100%; height: 100%; object-fit: contain; display: block; padding: var(--s-2); }
.amz-card-body { display: flex; flex-direction: column; flex: 1; padding: var(--s-4); }
.amz-card-title { font: 600 1.2rem/1.2 var(--f-display); margin: 0 0 var(--s-2); }
.amz-card-desc { font-size: .92rem; line-height: 1.5; color: var(--ink-soft); margin: 0 0 var(--s-4); }
.amz-card-actions { margin: auto 0 0; display: flex; flex-direction: column; align-items: stretch; gap: var(--s-3); }
.amz-card-actions .btn { font-size: .95rem; padding: .8rem 1rem; line-height: 1.2; text-align: center; }
.amz-grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--s-4); }
.amz-card-more { font-size: .88rem; color: var(--ink); }
.amz-card-more:hover { color: var(--red); }
.cat-guide .amz-note { margin-top: var(--s-6); }
@media (max-width: 1080px) { .amz-grid, .amz-grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 780px) { .amz-grid, .amz-grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-4); } }
@media (max-width: 480px) { .amz-grid, .amz-grid-5 { grid-template-columns: 1fr; } .amz-card { flex-direction: row; } .amz-card-img { width: 38%; flex: none; aspect-ratio: auto; border-bottom: 0; border-right: 1px solid var(--line); } .amz-card-body { padding: var(--s-3); } .amz-card-desc { font-size: .85rem; } .amz-card-actions .btn { width: 100%; text-align: center; } }
.story-row { display: grid; grid-template-columns: 180px minmax(0, 620px); gap: var(--s-7); align-items: center; }
.story-row img { width: 100%; display: block; border: 1px solid var(--line); }
.story-row .sec-title { margin-top: 0; }
@media (max-width: 760px) { .story-row { grid-template-columns: 1fr; gap: var(--s-5); } }
.story-row img.story-ad { width: 180px; height: auto; }
@media (max-width: 760px) { .story-row img.story-ad { margin: 0 auto; } }
