:root {
    --ink: #111827;
    --muted: #657386;
    --line: #d9e2ec;
    --paper: #ffffff;
    --soft: #f4f7fb;
    --header: #08111f;
    --accent: #0d7c80;
    --accent-2: #c46a18;
    --link: #145cb3;
    --gold: #f6c85f;
    --shadow: 0 18px 42px rgba(17, 24, 39, .11);
    --shadow-soft: 0 8px 22px rgba(17, 24, 39, .07);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        linear-gradient(180deg, #f2f6fb 0, #ffffff 360px, #f7f9fb 100%);
    line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--link); }

img { max-width: 100%; display: block; }

.skip-link {
    position: absolute;
    left: -999px;
    top: 8px;
    background: #fff;
    padding: 8px 12px;
    z-index: 20;
}
.skip-link:focus { left: 8px; }

.shell {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    background: var(--header);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 8px 24px rgba(8, 17, 31, .18);
    position: sticky;
    top: 0;
    z-index: 15;
}

.nav-shell {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    font-weight: 850;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    letter-spacing: 0;
}
.brand span {
    color: var(--gold);
    text-shadow: 0 0 18px rgba(246, 200, 95, .28);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .95rem;
}
.main-nav a {
    color: #dbe4ef;
    padding: 8px 10px;
    border-radius: 6px;
}
.main-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,.1);
}

.home-search {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #0b1220;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.home-search::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(8, 17, 31, .98) 0%, rgba(8, 17, 31, .88) 42%, rgba(8, 17, 31, .42) 100%),
        linear-gradient(180deg, rgba(13, 124, 128, .2), rgba(196, 106, 24, .13));
}
.hero-posters {
    position: absolute;
    inset: -42px -80px -42px auto;
    z-index: -2;
    width: min(720px, 58vw);
    display: grid;
    grid-template-columns: repeat(3, minmax(110px, 1fr));
    gap: 14px;
    opacity: .52;
    transform: rotate(-5deg);
    pointer-events: none;
}
.hero-posters img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 18px 42px rgba(0,0,0,.28);
}
.hero-posters img:nth-child(2n) { margin-top: 52px; }
.hero-posters img:nth-child(3n) { margin-top: 22px; }

.home-search__grid {
    min-height: 430px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 410px);
    align-items: center;
    gap: 40px;
    padding: 58px 0;
    position: relative;
    z-index: 1;
}
.hero-copy {
    max-width: 780px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--accent-2);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.home-search .eyebrow { color: var(--gold); }

h1, h2, h3 { line-height: 1.12; margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); max-width: 760px; }
h2 { font-size: clamp(1.35rem, 2.2vw, 2rem); }
.home-search h1 {
    color: #fff;
    text-wrap: balance;
}

.lead {
    color: #354152;
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    max-width: 720px;
}
.home-search .lead {
    color: #d7e2ef;
    max-width: 640px;
}
.hero-stats,
.hero-format-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.hero-stats {
    margin-top: 22px;
}
.hero-stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 5px 10px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: #dbe4ef;
    font-size: .82rem;
    font-weight: 750;
}
.hero-stats strong {
    color: #fff;
    font-size: 1rem;
}
.hero-format-links {
    margin-top: 12px;
}
.hero-format-links a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 4px 9px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    background: rgba(255,255,255,.07);
    font-size: .8rem;
    font-weight: 800;
}
.hero-format-links a:hover {
    background: rgba(246, 200, 95, .18);
    color: #fff;
}

.search-panel {
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 20px;
    color: var(--ink);
    backdrop-filter: blur(12px);
}
.search-panel label,
.filter-bar label {
    display: block;
    font-size: .86rem;
    font-weight: 750;
    margin-bottom: 8px;
}
.search-panel p { margin: 10px 0 0; color: var(--muted); font-size: .92rem; }

.search-row,
.filter-bar {
    display: flex;
    gap: 10px;
}

input, select, button {
    font: inherit;
}

input[type="search"],
select {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    min-height: 44px;
    padding: 0 12px;
    background: #fff;
    color: var(--ink);
    transition: border-color .14s ease, box-shadow .14s ease;
}
input[type="search"] { width: 100%; min-width: 0; }
input[type="search"]:focus,
select:focus {
    outline: 0;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(13, 124, 128, .16);
}

button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border: 0;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    font-weight: 750;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(13, 124, 128, .18);
    transition: transform .14s ease, background .14s ease, box-shadow .14s ease;
}
button:hover,
.button:hover {
    background: #09666a;
    color: #fff;
    box-shadow: 0 12px 24px rgba(13, 124, 128, .24);
    transform: translateY(-1px);
}

.button-light {
    background: #edf2f7;
    color: var(--ink);
    box-shadow: none;
}
.button-light:hover {
    background: #dde7f1;
    color: var(--ink);
}

.amazon-button {
    background: #f2a71b;
    color: #111827;
    box-shadow: 0 8px 18px rgba(242, 167, 27, .22);
}
.amazon-button:hover { background: #d98a08; color: #111827; }

.section-block { padding: 38px 0; }
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.series-grid,
.product-grid,
.guide-grid {
    display: grid;
    gap: 12px;
}
.series-grid { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
.product-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.guide-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.series-card,
.product-card,
.guide-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.series-card:hover,
.product-card:hover,
.guide-card:hover {
    transform: translateY(-3px);
    border-color: #afc3d4;
    box-shadow: 0 18px 34px rgba(17, 24, 39, .13);
}

.series-card__image,
.product-card__image {
    display: block;
    background: var(--soft);
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.series-card__image img,
.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .18s ease, filter .18s ease;
}
.series-card:hover .series-card__image img,
.product-card:hover .product-card__image img {
    transform: scale(1.035);
    filter: saturate(1.06);
}
.series-card__body,
.product-card__body {
    padding: 10px 11px 11px;
    display: flex;
    min-height: 0;
    flex-direction: column;
}
.series-card h2,
.product-card h2 {
    font-size: .94rem;
    line-height: 1.25;
    margin: 4px 0;
}
.series-card h2 a,
.product-card h2 a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: anywhere;
}
.series-card h2 a {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.product-card h2 a {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.series-card p,
.product-card p {
    color: var(--muted);
    margin: 0 0 8px;
    font-size: .8rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-kicker,
.card-meta,
.card-foot {
    color: var(--muted);
    font-size: .74rem;
    line-height: 1.35;
}
.card-kicker {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    font-weight: 750;
}
.card-meta {
    margin: 0 0 6px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.card-foot {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin-top: auto;
    padding-top: 7px;
    border-top: 1px solid var(--line);
}

.badge-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    line-height: 1.25;
}
.product-card .badge-row {
    flex-wrap: nowrap;
    min-width: 0;
}
.badge {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 1px 6px;
    border-radius: 5px;
    border: 1px solid rgba(13, 124, 128, .14);
    background: #e8f7f4;
    color: #08676b;
    font-size: .68rem;
    font-weight: 800;
}
.badge-soft {
    border-color: rgba(196, 106, 24, .18);
    background: #fff6e8;
    color: #97450f;
}
.muted, .fine-print { color: var(--muted); }
.fine-print { font-size: .88rem; margin: 10px 0 0; }
.series-link, .text-link {
    color: var(--link);
    font-weight: 750;
}
.text-link:hover {
    color: #0c4488;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.product-card .series-link {
    font-size: .72rem;
    line-height: 1.25;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.guide-card {
    padding: 14px;
}
.guide-card h2 {
    font-size: 1.04rem;
    margin: 8px 0 6px;
}
.guide-card p {
    color: var(--muted);
    margin: 0 0 10px;
}
.guide-card__movie {
    color: #354152;
    font-size: .88rem;
    font-weight: 750;
}
.guide-detail {
    max-width: 920px;
    padding-top: 38px;
}
.guide-detail__head {
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
    margin-bottom: 24px;
}
.guide-content {
    display: grid;
    gap: 22px;
}
.guide-section,
.guide-verdict {
    border-top: 3px solid var(--accent);
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
    background: #fff;
    padding: 16px 14px 14px;
    box-shadow: var(--shadow-soft);
}
.guide-section h2,
.guide-verdict h2 {
    margin-bottom: 8px;
}
.guide-section p,
.guide-verdict p {
    color: #354152;
}
.series-card .card-kicker {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.series-card .card-kicker span + span::before {
    content: " / ";
}
.series-card .badge-row {
    flex-wrap: nowrap;
    overflow: hidden;
}
.series-card .badge-row .badge {
    flex: 0 0 auto;
}
.series-card .badge-row .muted {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-header {
    padding: 42px 0 22px;
}
.filter-bar {
    margin-top: 18px;
    align-items: center;
    width: 100%;
    max-width: 860px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-soft);
}
.filter-bar input { flex: 1; }
.result-count { color: var(--muted); margin-bottom: 16px; }

.notice-band {
    margin-top: 36px;
    padding: 28px;
    border: 1px solid #facc15;
    border-radius: 8px;
    background: #fffbeb;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 18px;
    color: var(--muted);
    font-size: .9rem;
}
.breadcrumbs a { color: var(--link); }

.detail-hero,
.product-detail {
    display: grid;
    grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
    gap: 38px;
    padding: 42px 0 28px;
}
.detail-copy,
.product-copy {
    min-width: 0;
}
.hero-badges {
    margin-top: 12px;
}

.poster-wrap,
.gallery-main {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.poster {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}
.series-cover {
    display: grid;
    align-content: start;
    gap: 12px;
}
.cover-note {
    display: grid;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 12px;
    box-shadow: var(--shadow-soft);
}
.cover-note strong { font-size: 1.55rem; line-height: 1; }
.cover-note span,
.cover-note small { color: var(--muted); }
.cover-note small { font-size: .82rem; }

.stat-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
    gap: 10px;
    margin: 20px 0 4px;
}
.stat-strip div {
    min-height: 74px;
    display: grid;
    align-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 10px 12px;
    box-shadow: var(--shadow-soft);
}
.stat-strip strong {
    font-size: 1.28rem;
    line-height: 1;
}
.stat-strip span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}
.product-stat-strip {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px 18px;
    margin: 22px 0 0;
}
.facts div {
    border-top: 1px solid var(--line);
    padding-top: 8px;
}
.facts dt {
    color: var(--muted);
    font-size: .78rem;
    text-transform: uppercase;
    font-weight: 800;
}
.facts dd { margin: 2px 0 0; font-weight: 650; }
.facts-compact {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    margin-top: 18px;
}

.detail-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin: 18px 0 0;
}

.series-info-grid,
.product-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.info-block {
    border-top: 3px solid var(--accent);
    border-bottom: 1px solid var(--line);
    background: #fff;
    border-radius: 0 0 8px 8px;
    padding: 16px 14px 14px;
    box-shadow: var(--shadow-soft);
}
.info-block h2 { margin-bottom: 8px; }
.info-block p { color: #354152; margin: 0 0 10px; }

.format-hero {
    padding-bottom: 12px;
}
.region-hero {
    padding-bottom: 12px;
}
.format-jump-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.format-jump-links a,
.footer-link {
    color: var(--link);
    font-weight: 750;
}
.format-jump-links a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    padding: 5px 10px;
    box-shadow: var(--shadow-soft);
}
.format-summary-grid,
.format-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.format-summary {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 16px;
    box-shadow: var(--shadow-soft);
}
.format-summary h2 {
    margin: 8px 0 8px;
}
.format-summary p {
    color: #354152;
    margin: 0 0 14px;
}
.format-summary dl {
    display: grid;
    gap: 8px;
    margin: 0;
}
.format-summary dl div {
    border-top: 1px solid var(--line);
    padding-top: 8px;
}
.format-summary dt {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 850;
    text-transform: uppercase;
}
.format-summary dd {
    margin: 2px 0 0;
    font-weight: 650;
}
.format-chip {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 2px 8px;
    border-radius: 5px;
    background: #e8f7f4;
    color: #08676b;
    font-size: .72rem;
    font-weight: 850;
}
.comparison-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}
.format-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: .93rem;
}
.format-table th,
.format-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}
.format-table thead th {
    background: #f4f7fb;
    color: #354152;
    font-size: .78rem;
    text-transform: uppercase;
}
.format-table tbody th {
    color: #0b4e52;
    white-space: nowrap;
}
.format-table tr:last-child th,
.format-table tr:last-child td {
    border-bottom: 0;
}
.faq-list {
    display: grid;
    gap: 10px;
}
.faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}
.faq-list summary {
    cursor: pointer;
    padding: 13px 14px;
    font-weight: 850;
}
.faq-list p {
    margin: 0;
    padding: 0 14px 14px;
    color: #354152;
}
.source-block ul {
    margin: 10px 0 0;
    padding-left: 20px;
}
.source-block li + li {
    margin-top: 5px;
}
.region-answer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}
.region-answer {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 16px;
    box-shadow: var(--shadow-soft);
}
.region-answer h2 {
    margin: 8px 0;
}
.region-answer p {
    color: #354152;
    margin: 0;
}
.buyer-checklist {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: buyer-step;
}
.buyer-checklist li {
    position: relative;
    min-height: 54px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 12px 14px 12px 52px;
    box-shadow: var(--shadow-soft);
}
.buyer-checklist li::before {
    counter-increment: buyer-step;
    content: counter(buyer-step);
    position: absolute;
    left: 14px;
    top: 12px;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e8f7f4;
    color: #08676b;
    font-size: .82rem;
    font-weight: 900;
}

.variation-stack {
    display: grid;
    gap: 22px;
}
.variation-group {
    display: grid;
    gap: 12px;
}
.variation-group__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}
.variation-group__head h3 {
    font-size: 1.05rem;
}
.variation-group__head span {
    color: var(--muted);
    font-size: .9rem;
}

.gallery { min-width: 0; }

.prose p { max-width: 860px; }
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px 24px;
    padding-left: 20px;
}
.product-details-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.episode-guide {
    display: grid;
    gap: 12px;
}
.episode-season-public {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}
.episode-season-public summary {
    cursor: pointer;
    padding: 12px 14px;
    font-weight: 800;
}
.episode-season-public summary span {
    color: var(--muted);
    font-weight: 600;
    margin-left: 8px;
}
.episode-season-public ol {
    margin: 0;
    padding: 0 16px 14px 42px;
}
.episode-season-public li {
    padding: 9px 0;
}
.episode-season-public li span {
    display: block;
    color: var(--muted);
    font-size: .88rem;
}
.episode-season-public li p {
    margin: 4px 0 0;
    color: #354152;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f8fafc, #dfe8f1);
    color: #64748b;
    font-weight: 900;
    letter-spacing: 0;
}

.site-footer {
    margin-top: 44px;
    padding: 34px 0;
    background: #08111f;
    color: #e5e7eb;
    border-top: 1px solid rgba(255,255,255,.12);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 460px);
    gap: 24px;
}
.site-footer p { margin: 4px 0 0; color: #cbd5e1; }
.affiliate { font-size: .9rem; }

@media (max-width: 760px) {
    .nav-shell { align-items: flex-start; padding: 14px 0; flex-direction: column; }
    .main-nav { width: 100%; justify-content: space-between; }
    .main-nav a { padding-inline: 7px; }
    .home-search__grid,
    .detail-hero,
    .product-detail,
    .format-summary-grid,
    .format-choice-grid,
    .region-answer-grid,
    .series-info-grid,
    .product-info-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .home-search__grid { min-height: 0; padding: 32px 0; }
    .search-row,
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .section-heading { align-items: flex-start; flex-direction: column; }
    .series-grid,
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    .guide-grid { grid-template-columns: 1fr; }
    .series-card__body,
    .product-card__body {
        min-height: 0;
        padding: 9px;
    }
    .series-card h2,
    .product-card h2 { font-size: .88rem; }
    .series-card p,
    .product-card p { font-size: .76rem; }
    .badge {
        min-height: 18px;
        font-size: .64rem;
    }
    .card-foot { flex-direction: column; }
    .stat-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 360px) {
    .series-grid,
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(135px, 1fr)); }
}
