:root {
    --bg: #fafafa;
    --ink: #1a140f;
    --muted: #525252;
    --line: #e5e5e5;
    --brand: #2f7a4a;
    --brand-deep: #215c37;
    --brand-soft: #eef6f1;
    --brand-mid: #d7eadf;
    --green: #0a7a3e;
    --rise: #b42318;
    --hover: var(--brand-soft);
    --max: 1200px;
}

* { box-sizing: border-box; }

html, body { margin: 0; }

html {
    overflow-x: clip;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Inter, system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.5;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

::selection {
    background: var(--brand);
    color: #fff;
}

::-moz-selection {
    background: var(--brand);
    color: #fff;
}

a,
a:hover,
a:focus,
a:active {
    color: inherit;
    text-decoration: none;
}

a:hover { color: var(--brand); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

button { cursor: pointer; }

.sr {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

main {
    flex: 1 0 auto;
}

.bar,
main,
.foot {
    width: min(var(--max), calc(100% - 32px));
    margin-inline: auto;
}

.chrome--top {
    position: relative;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.bar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 12px;
    padding: 4px 0;
}

.bar .search {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    max-width: none;
    order: 3;
}

.brand {
    flex: 1;
    min-width: 0;
}

.logo {
    display: inline-block;
    width: max-content;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-decoration: none;
    color: var(--brand);
}

.logo:hover { color: var(--brand-deep); }

.site-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--ink);
    list-style: none;
}

.site-menu-toggle::-webkit-details-marker,
.site-menu-toggle::marker {
    display: none;
}

.site-menu-toggle:hover {
    background: var(--hover);
    color: var(--brand-deep);
}

.site-menu-toggle .ico-svg {
    width: 20px;
    height: 20px;
}

.site-menu[open] .site-menu-ico--open,
.site-menu:not([open]) .site-menu-ico--close,
.site-menu.is-open .site-menu-ico--open,
.site-menu:not(.is-open) .site-menu-ico--close {
    display: none;
}

.site-menu-panel {
    display: none;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 30;
    padding: 8px 0 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(26, 20, 15, 0.08);
}

.site-menu[open] .site-menu-panel,
.site-menu.is-open .site-menu-panel {
    display: flex;
}

.site-menu-panel .search,
.site-menu-panel nav {
    width: min(var(--max), calc(100% - 32px));
    margin-inline: auto;
}

.bar nav {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    font-size: 0.95rem;
}

.bar nav a {
    flex: 0 0 auto;
    width: max-content;
}

.bar nav a:hover,
.bar nav a.is-on { color: var(--brand); }

.hero { padding: 36px 0 28px; }

.lede {
    margin: 0;
    color: var(--muted);
    max-width: 46em;
}

.stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 28px 0 0;
    padding: 0;
}

.stats div {
    margin: 0;
    padding: 12px 0 0;
    border-top: 1px solid var(--line);
}

.stats dt {
    font-size: 0.78rem;
    color: var(--muted);
}

.stats dd {
    margin: 4px 0 0;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.cats {
    list-style: none;
    margin: 0 0 48px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px 12px;
    border: 0;
}

.cats li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border: 0;
    background: none;
    box-shadow: none;
}

.cats .cat-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: 100%;
    padding: 4px 0 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.cats .cat-main:hover {
    background: none;
    color: var(--brand);
}

.cats .cat-main:hover .ico {
    background: none;
    color: var(--brand-deep);
}

.cat-subs {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0;
    margin: 0 0 10px 38px;
    padding: 0;
    color: var(--muted);
    font-size: 0.88rem;
    letter-spacing: -0.04em;
    line-height: 1.45;
}

.cat-subs .cat-dot {
    color: var(--muted);
    padding: 0 4px;
    letter-spacing: 0;
    user-select: none;
}

.cat-subs .cat-dot {
    color: var(--muted);
    padding: 0 4px;
    letter-spacing: 0;
    user-select: none;
}

.cat-subs a {
    color: var(--muted);
}

.cat-subs a:hover {
    color: var(--brand);
}

.ico {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 0;
    background: none;
    color: var(--brand);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.ico-svg,
.ico svg {
    width: 20px;
    height: 20px;
    display: block;
}

.cat-text,
.cat-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.25;
}

.cat-name,
.cat-name { font-weight: 500; }

.cat-dir {
    display: grid;
    gap: 36px 56px;
    margin: 0 0 56px;
}

.cat-dir-head {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.25;
}

.cat-dir-head:hover {
    color: var(--brand);
}

.cat-dir-head:hover .ico {
    color: var(--brand-deep);
}

.cat-dir-kids {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px 20px;
    margin: 0;
    padding: 0 0 0 38px;
}

.cat-dir-kids a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.cat-dir-kids a:hover {
    color: var(--brand);
}

.chips,
.brands,
.lows {
    list-style: none;
    margin: 0 0 48px;
    padding: 0;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chips a {
    display: block;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 0.92rem;
}

.chips a:hover {
    border-color: var(--brand);
    background: var(--brand-soft);
    color: var(--brand-deep);
}

.chips a.chip-brand {
    font-weight: 500;
}

.dot-links {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.dot-links li {
    display: inline;
}

.dot-links li:not(:last-child)::after {
    content: " · ";
    color: #a3a3a3;
    font-weight: 400;
}

.dot-links a:hover {
    color: var(--brand);
}

.chips:empty {
    display: none;
    margin: 0;
}

.category-brands {
    margin: 0 0 48px;
}

.category-related {
    margin: 0 0 48px;
}

.category-related h2,
.category-brands h2 {
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 600;
}

.category-related .chips,
.category-brands .dot-links {
    margin: 0;
}

.brands {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px 24px;
    background: none;
    border: 0;
}

.brands a {
    display: inline-flex;
    justify-content: flex-start;
    gap: 12px;
    width: max-content;
    max-width: 100%;
    padding: 6px 0;
    background: none;
    border: 0;
}

.brands a:hover {
    background: none;
    color: var(--brand);
}

.brands .count {
    color: #a3a3a3;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.4;
    align-self: baseline;
}

.brands a:hover .count {
    color: #a3a3a3;
}

.lows {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
}

.lows li {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.lows .thumb,
.table .thumb {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    background: #fff;
}

.table [data-thumb-zoom] {
    cursor: zoom-in;
}

.lows-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
}

.lows .product {
    display: inline;
    width: max-content;
    max-width: 100%;
    font-weight: 500;
}

.lows .product:hover { color: var(--brand); }

.how {
    margin: 8px 0 36px;
    padding: 24px 20px 28px;
    background: #e4efe8;
    border-radius: 12px;
}

.how ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.how li span {
    display: block;
    color: var(--brand);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    margin-bottom: 8px;
}

.how p { margin: 0; color: var(--muted); }

.how strong { color: var(--ink); font-weight: 500; }

h1 {
    font-size: clamp(1.85rem, 3.2vw, 2.6rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin: 0 0 12px;
}

h2 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0;
}

.lede {
    margin: 0 0 28px;
    color: var(--muted);
    max-width: 46em;
}

.search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 4px 4px 4px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(26, 20, 15, 0.04);
}

.search:hover {
    border-color: #b7d4c2;
    background: #fff;
}

.search:focus-within {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(47, 122, 74, 0.18);
}

.search-icon {
    display: flex;
    color: var(--muted);
    flex-shrink: 0;
}

.search-icon svg {
    width: 18px;
    height: 18px;
}

.search input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: 0;
    background: transparent;
    padding: 0 4px;
    font: inherit;
    font-size: 16px;
    outline: none;
    border-radius: 0;
    appearance: none;
}

.search input:focus-visible,
.search button:focus-visible {
    outline: none;
}

.search input::-webkit-search-decoration,
.search input::-webkit-search-cancel-button {
    appearance: none;
}

.search input::placeholder { color: #a3a3a3; }

.search button {
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #ececec;
    color: #525252;
    padding: 0 16px;
    font: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    z-index: 1;
}

.search-suggest {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 30;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(26, 20, 15, 0.1);
}

.search-suggest a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 14px;
}

.search-suggest a.is-on {
    background: var(--brand-soft);
}

.search-suggest-kind {
    color: var(--muted);
    font-size: 0.75rem;
}

.search-hint,
.search-examples .lede {
    margin: 0 0 16px;
}

.search button:hover {
    background: #e0e0e0;
    color: var(--ink);
}

.search button:active {
    background: #d4d4d4;
}

.note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.head,
.head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px 24px;
    margin: 0 0 16px;
}

.head p,
.head p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.table-wrap,
.table-wrap {
    overflow-x: auto;
    margin-bottom: 56px;
    border-top: 1px solid var(--line);
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.table th {
    text-align: left;
    font-weight: 500;
    color: var(--muted);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 12px 10px 0;
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
}

.table td {
    padding: 10px 12px 10px 0;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.table .product {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
}

.table .product a {
    font-weight: 500;
    overflow-wrap: anywhere;
}

.table .col-wide,
.table .col-trend {
    display: none;
}

.table .product a:hover { color: var(--brand); }

.table .num,
.table .delta,
.table .muted {
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.delta {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 999px;
    background: #f1f8f4;
    color: var(--brand-deep);
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.01em;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.delta.is-up {
    background: #f8f2f1;
    color: #9a403a;
}

.delta.is-strong {
    background: var(--brand-mid);
}

.delta.is-up.is-strong {
    background: #eedcda;
    color: #8a3833;
}

.change-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.table .price-cue {
    font-size: 0.7rem;
    padding: 2px 6px;
}

.hist.is-up path { stroke: #b42318; }
.muted { color: var(--muted); }

.hist svg {
    display: block;
    width: 88px;
    height: 24px;
}

.hist path {
    fill: none;
    stroke: var(--brand);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about {
    padding: 8px 0 16px;
}

.about h2 { margin: 28px 0 16px; }

.about-layout {
    display: grid;
    gap: 36px;
    margin: 0 0 48px;
}

.about-photo {
    margin: 1.5em 0 0;
    max-width: 100%;
}

.about-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-copy {
    max-width: 46em;
    font-size: 1.05rem;
}

@media (min-width: 800px) {
    .about-layout {
        grid-template-columns: minmax(0, 1fr) minmax(16rem, 20rem);
        align-items: start;
        gap: 40px 48px;
    }

    .contact {
        margin: 0;
        max-width: none;
    }
}

.about-copy p {
    margin: 0 0 1em;
    color: var(--ink);
}

.about-copy ul {
    margin: 0 0 1em;
    padding-left: 1.2em;
}

.about-copy li {
    margin: 0.35em 0;
}

.contact {
    margin: 0 0 48px;
    max-width: 32rem;
}

.contact h2 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    font-weight: 600;
}

.contact .lede {
    margin: 0 0 20px;
}

.contact-status {
    margin: 0 0 16px;
    color: var(--brand-deep);
}

.contact-form p {
    margin: 0 0 16px;
}

.contact-form label {
    display: block;
    margin: 0 0 6px;
    font-size: 0.88rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 0.95rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 8rem;
}

.contact-form button {
    padding: 8px 18px;
    border: 0;
    border-radius: 6px;
    background: var(--brand);
    color: #fff;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-form button:hover {
    background: var(--brand-deep);
}

.contact-error {
    display: block;
    margin-top: 6px;
    color: var(--rise);
    font-size: 0.85rem;
}

.contact-hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.chrome--bottom {
    border-top: 1px solid var(--line);
    margin-top: 32px;
}

.foot {
    padding: 28px 0 48px;
    color: var(--muted);
    font-size: 0.9rem;
}

.foot p { margin: 0; }

.legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 12px;
}

.legal-page { padding: 24px 0 80px; }

.legal-page h2 {
    margin: 2em 0 0.6em;
    font-size: 1.05rem;
    font-weight: 600;
}

.legal-page h2:first-child { margin-top: 0; }

.legal-page p {
    max-width: 42em;
    margin: 0 0 1em;
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.55;
}

@media (min-width: 480px) {
    .cats,
    .brands { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .cat-dir-kids { grid-template-columns: 1fr 1fr; }

    .stats { grid-template-columns: repeat(2, 1fr); }

    .how ol { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 800px) {
    .bar,
    main,
    .foot {
        width: min(var(--max), calc(100% - 48px));
    }

    .bar {
        flex-wrap: nowrap;
        gap: 20px;
        padding: 12px 0;
    }

    .site-menu {
        display: flex;
        flex: 1 1 auto;
        align-items: center;
        min-width: 0;
        gap: 20px;
    }

    .site-menu-toggle {
        display: none;
    }

    .site-menu-panel,
    .site-menu.is-open .site-menu-panel,
    .site-menu[open] .site-menu-panel {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        flex: 1 1 auto;
        min-width: 0;
        position: static;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .site-menu-panel .search,
    .site-menu-panel nav {
        width: auto;
        margin: 0;
    }

    .bar nav {
        flex: 1;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        gap: 8px 16px;
        font-size: 0.9rem;
    }

    .bar .search {
        flex: 0 1 40rem;
        max-width: 40rem;
        order: 0;
    }

    .search { height: 42px; }

    .search input { font-size: 0.92rem; }

    .stats { grid-template-columns: repeat(3, 1fr); }

    .cats,
    .brands { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .cat-dir-kids { grid-template-columns: repeat(4, minmax(0, 1fr)); }

    .how ol { grid-template-columns: repeat(3, 1fr); }

    .how { padding: 28px 28px 32px; }

    .lows { grid-template-columns: 1fr 1fr; gap: 0 48px; }

    .table .col-wide,
    .table .col-trend {
        display: table-cell;
    }
}

@media (min-width: 1100px) {
    .cats { grid-template-columns: repeat(4, minmax(0, 1fr)); }

    .brands { grid-template-columns: repeat(6, minmax(0, 1fr)); }

    .cat-dir-kids { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: baseline;
    gap: 3px 5px;
    padding: 8px 0 4px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.crumbs a,
.legal a,
.pager a {
    width: max-content;
    flex: 0 0 auto;
}

.crumbs > span:last-child {
    color: var(--ink);
}

.page-head {
    padding: 12px 0 16px;
}

.page-head h1 {
    margin-bottom: 8px;
}

.page-head .listing-meta {
    margin: 0 0 8px;
    color: #a3a3a3;
    font-size: 0.8rem;
}

.page-head .lede {
    margin-bottom: 0;
}

.page-head .about-copy {
    margin-top: 16px;
}

.catalog-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 16px;
    margin: 0 0 20px;
}

.catalog-heading {
    flex: 1 1 0;
    min-width: 0;
}

.catalog-heading h2 {
    margin: 0;
}

.catalog-lead .lede {
    margin: 0;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 2px;
}

.filters .sort-dot {
    color: var(--muted);
    padding: 0 6px;
    user-select: none;
}

.filters a.is-sort-on,
.filters .is-sort-on {
    color: var(--ink);
    font-weight: 500;
}

.filters .price-range {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 8px;
    margin-left: 12px;
}

.filters .price-range input[type="number"] {
    width: 6.2rem;
    min-width: 5.5rem;
    height: 28px;
    padding: 0 8px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 0.88rem;
}

.filters .stock-only {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 28px;
    padding: 0 10px 0 8px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--muted);
    font-size: 0.82rem;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
}

.filters .stock-only:has(input:checked) {
    color: var(--ink);
    background: #ececec;
    border-color: #d4d4d4;
}

.filters .stock-only input {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
}

.filters .stock-only input:checked {
    border-color: var(--ink);
    background: var(--ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5 6.5 11.5 12.5 4.5'/%3E%3C/svg%3E") center / 10px 10px no-repeat;
}

.filters .price-range input[type="number"]:focus-visible,
.filters .stock-only input:focus-visible {
    outline: 2px solid #d4d4d4;
    outline-offset: 1px;
}

.filters .price-range button {
    height: 28px;
    padding: 0 10px;
    border: 0;
    border-radius: 6px;
    background: #ececec;
    color: #525252;
    font: inherit;
    font-size: 0.82rem;
    cursor: pointer;
}

.filters .price-range-reset {
    color: var(--muted);
    font-size: 0.82rem;
    white-space: nowrap;
}

.empty-note {
    grid-column: 1 / -1;
    padding: 8px 0 4px;
    color: var(--muted);
    font-size: 0.95rem;
}

.pager a[rel~="nofollow"] {
    color: var(--muted);
}

.pager-num[rel~="nofollow"] {
    color: var(--ink);
}

.pager-num[aria-current] {
    color: var(--brand-deep);
}

.view-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 0 0 0 auto;
}

.view-bar-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.view-switch {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.view-switch button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 0 14px;
    border: 0;
    background: none;
    color: var(--muted);
    font: inherit;
    font-size: 0.88rem;
    cursor: pointer;
}

.view-switch button + button {
    border-left: 1px solid var(--line);
}

.view-switch button[aria-pressed="true"] {
    background: var(--ink);
    color: #fff;
}

.view-switch .ico-svg {
    width: 16px;
    height: 16px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
}

.product-grid-empty {
    grid-column: 1 / -1;
    padding: 16px 0;
}

.product-tile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    height: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: inherit;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-tile.is-just-listed {
    border-color: #22c55e;
    box-shadow: 0 0 0 1px #22c55e;
}

.table tbody tr.is-just-listed {
    outline: 2px solid #22c55e;
    outline-offset: -2px;
}

.product-tile:has(.product-tile-shot:hover),
.product-tile:has(.product-tile-name:hover),
.product-tile:has(.product-tile-shot:focus-visible),
.product-tile:has(.product-tile-name:focus-visible) {
    border-color: var(--brand);
    box-shadow: 0 4px 14px rgba(47, 122, 74, 0.12);
}

.product-tile-shot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
}

.product-tile-shot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.product-tile:has(.product-tile-shot:hover) .product-tile-shot img,
.product-tile:has(.product-tile-name:hover) .product-tile-shot img,
.product-tile:has(.product-tile-shot:focus-visible) .product-tile-shot img,
.product-tile:has(.product-tile-name:focus-visible) .product-tile-shot img {
    transform: scale(1.06);
}

.product-tile-name {
    font-weight: 500;
    font-size: 0.92rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.product-tile:has(.product-tile-shot:hover) .product-tile-name,
.product-tile:has(.product-tile-name:hover) .product-tile-name,
.product-tile:has(.product-tile-shot:focus-visible) .product-tile-name,
.product-tile:has(.product-tile-name:focus-visible) .product-tile-name {
    color: var(--brand);
}

@media (prefers-reduced-motion: reduce) {
    .product-tile {
        transition: none;
    }

    .product-tile-shot img {
        transition: none;
    }

    .product-tile:has(.product-tile-shot:hover) .product-tile-shot img,
    .product-tile:has(.product-tile-name:hover) .product-tile-shot img,
    .product-tile:has(.product-tile-shot:focus-visible) .product-tile-shot img,
    .product-tile:has(.product-tile-name:focus-visible) .product-tile-shot img {
        transform: none;
    }
}

.product-tile-brand {
    color: var(--muted);
    font-size: 0.82rem;
}

.product-tile-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin-top: auto;
}

.product-tile-trend {
    flex: 0 0 56px;
    width: 56px;
    height: 18px;
}

.product-tile-trend.hist svg {
    width: 56px;
    height: 18px;
}

.product-tile-trend.hist path {
    stroke-width: 1.8;
}

.product-tile-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    min-width: 0;
    font-variant-numeric: tabular-nums;
}

.product-tile-price .stock-out {
    font-size: 0.75rem;
}

@media (min-width: 800px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .view-switch button {
        min-height: 36px;
    }
}

@media (min-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.catalog-view.is-tiles .table-wrap {
    display: none;
}

.catalog-view.is-table .product-grid {
    display: none;
}

.thumb-zoom {
    position: fixed;
    z-index: 40;
    width: 260px;
    height: 260px;
    margin: 0;
    padding: 10px;
    pointer-events: none;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(26, 20, 15, 0.12), 0 1px 0 rgba(26, 20, 15, 0.04);
    opacity: 0;
    transform: translate3d(0, 6px, 0) scale(0.98);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.thumb-zoom.is-on {
    opacity: 1;
    transform: none;
}

.thumb-zoom img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (hover: none), (pointer: coarse) {
    .table [data-thumb-zoom] {
        cursor: default;
    }

    .thumb-zoom {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .thumb-zoom {
        transition: none;
        transform: none;
    }
}

.listing-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 48px;
}

.load-more {
    display: flex;
    justify-content: center;
    padding: 8px 0 20px;
}

.load-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    height: 40px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: var(--brand);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
}

.load-more a:hover {
    background: var(--brand-deep);
    color: #fff;
}

.load-more a.is-busy {
    pointer-events: none;
    opacity: 0.7;
}

.listing-nav .pager {
    width: 100%;
    justify-content: center;
    padding: 16px 0 0;
    border-top: 1px solid var(--line);
}

.pager {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 20px 0 48px;
    font-size: 0.9rem;
}

.pager-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-weight: 600;
}

.pager-num:hover {
    background: var(--brand-soft);
}

.pager-num[aria-current] {
    background: var(--brand-soft);
    border-color: var(--brand);
    color: var(--brand-deep);
}

.pager-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--brand);
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 600;
}

.pager-arrow.is-off {
    color: #c4c4c4;
}

.pager-gap {
    color: var(--muted);
    padding: 0 4px;
}

.product-page {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0 24px;
}

.product-col {
    display: contents;
}

.product-head {
    order: 1;
}

.gallery {
    order: 2;
}

.offer {
    order: 3;
}

.product-page .cta {
    order: 4;
}

.price-history {
    order: 5;
}

.product-specs {
    order: 6;
}

.highlights {
    order: 7;
}

.product-about {
    order: 8;
}

.gallery > .shot {
    position: relative;
    width: 100%;
    aspect-ratio: 7 / 6;
    background: #fff;
}

.gallery[data-gallery] > .shot {
    cursor: pointer;
}

.gallery .shot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.gallery {
    min-width: 0;
}

.thumbs {
    margin-top: 10px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    padding-bottom: 10px;
}

.thumbs-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: max-content;
    padding: 3px;
    scroll-snap-type: x proximity;
}

.thumbs .shot {
    position: relative;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 0;
    background: #fff;
    opacity: 0.5;
    scroll-snap-align: start;
}

.thumbs .shot:hover {
    opacity: 0.85;
}

.thumbs .shot.is-on {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--brand);
}

.thumbs .shot:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}

.thumbs .shot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.offer h1,
.product-head h1 {
    display: inline;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin: 0;
    line-height: 1.3;
}

.product-head .product-brand {
    display: inline;
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3;
}

.product-head .product-brand::before {
    content: "·";
    margin: 0 0.35em;
    font-weight: 400;
    color: var(--muted);
}

.offer-type {
    margin: 0 0 8px;
    font-size: 0.9rem;
}

.meta { color: var(--muted); font-size: 0.9rem; }

.price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 4px 0 0;
}

.price { font-size: 2rem; font-weight: 500; letter-spacing: -0.04em; }

.was { color: var(--muted); text-decoration: line-through; }

.checked {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.offer .checked {
    flex: 1 0 100%;
    margin: 4px 0 0;
}

.stock-out {
    color: var(--rise);
    font-size: 0.82rem;
    font-weight: 500;
}

.price-cue {
    font-size: 0.68rem;
    font-weight: 400;
    line-height: 1.2;
    padding: 2px 7px;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: -0.03em;
}

.price-cue.is-great {
    color: var(--brand-deep);
    background: var(--brand-mid);
    font-weight: 500;
}

.price-cue.is-good {
    color: var(--brand-deep);
    background: var(--brand-soft);
}

.price-cue.is-fair,
.price-cue.is-typical {
    color: var(--muted);
    background: #f0f0f0;
}

.offer .price-history,
.product-page .price-history {
    margin: 0;
    padding: 0;
}

.price-range {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0 0 8px;
}

.price-range button {
    border: 0;
    background: transparent;
    color: var(--muted);
    padding: 4px 8px;
    font: inherit;
    font-size: 0.8rem;
    border-radius: 999px;
}

.price-range button:hover {
    color: var(--ink);
    background: var(--hover);
}

.price-range button.is-on {
    color: var(--brand-deep);
    background: var(--brand-mid);
}

.price-chart-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 14px;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 0.85rem;
}

.price-chart-stat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.price-chart-stat .ico-svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
}

.price-chart-stat.is-low .ico-svg {
    color: var(--brand);
}

.price-chart-stat.is-high .ico-svg {
    color: var(--rise);
}

.price-chart-stat.is-avg .ico-svg {
    color: var(--muted);
}

.price-history .muted {
    margin: 0 0 8px;
    font-size: 0.85rem;
}

.price-chart-wrap {
    position: relative;
    width: 100%;
}

.price-chart {
    width: 100%;
    min-height: 156px;
    margin: 0;
}

.price-chart-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(26, 20, 15, 0.12);
    pointer-events: none;
    z-index: 2;
}

.price-chart-dot[hidden] {
    display: none;
}

.price-chart-tip {
    position: absolute;
    z-index: 3;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(26, 20, 15, 0.08);
    pointer-events: none;
    white-space: nowrap;
}

.price-chart-tip[hidden] {
    display: none;
}

.price-chart-tip__date {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.price-chart-tip__price {
    color: var(--brand);
    font-size: 16px;
    font-weight: 600;
}

.price-chart-tip__note {
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
}

.price-chart .apexcharts-tooltip,
.price-chart .apexcharts-xaxistooltip {
    pointer-events: none;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
    margin-top: 0;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-weight: 500;
    font-size: 1.02rem;
}

.cta .ico-svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.offer .cta {
    margin-top: 28px;
}

.product-page > .cta,
.product-col-buy .cta {
    margin-top: 0;
}

.highlights {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px 18px;
}

.highlights li {
    display: flex;
    flex: 0 1 auto;
    max-width: 100%;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.92rem;
    line-height: 1.35;
    color: var(--ink);
}

.highlights .ico-svg {
    width: 12px;
    height: 12px;
    margin-top: 4px;
    flex-shrink: 0;
    color: var(--muted);
}

.offer-about.block,
.product-about.block {
    margin-top: 0;
    padding: 0;
}

.cta:hover { background: var(--brand-deep); color: #fff; }

.cta-sticky {
    display: none;
}

.cta-sticky.is-on {
    display: inline-flex;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 12px;
    top: auto;
    z-index: 25;
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.88rem;
    box-shadow: 0 6px 16px rgba(26, 20, 15, 0.16);
}

.cta-sticky.is-on .ico-svg {
    width: 15px;
    height: 15px;
}

@media (min-width: 800px) {
    .cta-sticky,
    .cta-sticky.is-on {
        display: none;
    }
}

.block { padding: 8px 0 40px; }

.block h2 { margin-bottom: 14px; }

.block.prose {
    max-width: 40em;
}

.block.prose p {
    margin: 0 0 1em;
}

.block.prose p:last-child {
    margin-bottom: 0;
}

.product-page .product-specs,
.product-page .product-about {
    padding-top: 8px;
}

.product-page .prose {
    max-width: none;
}

.specs {
    margin: 0;
    max-width: none;
}

.specs div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px 12px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
}

.specs dt { color: var(--muted); }

.specs dd { margin: 0; }

.specs div:last-child { border-bottom: 1px solid var(--line); }

.seo-copy {
    max-width: 40em;
    padding: 8px 0 24px;
}

@media (min-width: 1100px) {
    .seo-copy {
        max-width: calc((100% - 4 * 16px) * 3 / 5 + 2 * 16px);
    }
}

.seo-copy h2 {
    font-size: 1rem;
    margin: 0 0 10px;
}

.seo-copy p {
    margin: 0 0 0.85em;
    color: var(--muted);
    font-size: 0.95rem;
}

.seo-copy p:last-child { margin-bottom: 0; }

.faq {
    max-width: 40em;
    padding: 8px 0 56px;
}

@media (min-width: 1100px) {
    .faq {
        max-width: calc((100% - 4 * 16px) * 3 / 5 + 2 * 16px);
    }
}

.faq h2 {
    margin: 0 0 12px;
}

.faq details {
    border-top: 1px solid var(--line);
}

.faq details:last-of-type {
    border-bottom: 1px solid var(--line);
}

.faq summary {
    cursor: pointer;
    list-style: none;
    padding: 12px 0;
    font-weight: 500;
}

.faq summary::-webkit-details-marker,
.faq summary::marker {
    display: none;
}

.faq summary::after {
    content: '+';
    float: right;
    color: var(--muted);
    font-weight: 400;
}

.faq details[open] summary::after {
    content: '–';
}

.faq summary:hover {
    color: var(--brand);
}

.faq details p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 0.95rem;
}

@media (min-width: 800px) {
    .product-page {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 48px;
        align-items: start;
    }

    .product-col {
        display: flex;
        flex-direction: column;
        gap: 24px;
        min-width: 0;
    }

    .crumbs {
        font-size: 0.88rem;
        letter-spacing: 0;
        line-height: 1.5;
        gap: 8px;
        padding: 28px 0 8px;
    }

    .product-head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .product-head .product-brand {
        order: -1;
        display: block;
        font-size: 0.95rem;
        font-weight: 400;
        letter-spacing: 0;
    }

    .product-head .product-brand::before {
        content: none;
        margin: 0;
    }

    .offer h1,
    .product-head h1 {
        display: block;
        font-size: clamp(1.5rem, 2.4vw, 2rem);
        margin: 6px 0 4px;
        letter-spacing: -0.03em;
    }

    .product-head,
    .gallery,
    .offer,
    .product-page .cta,
    .price-history,
    .product-specs,
    .highlights,
    .product-about {
        order: unset;
    }

    .product-col-buy .product-head { order: 1; }
    .product-col-buy .offer { order: 2; }
    .product-col-buy .price-history { order: 3; }
    .product-col-buy .cta { order: 4; }
    .product-col-buy .highlights { order: 5; }
    .product-col-buy .product-about { order: 6; }

    .price-row {
        margin-top: 8px;
    }

    .offer .checked {
        flex: 0 0 auto;
        margin: 0;
    }

    .checked {
        font-size: 0.88rem;
        letter-spacing: 0;
    }

    .price-cue {
        font-size: 0.75rem;
        font-weight: 500;
        padding: 3px 8px;
        letter-spacing: 0;
    }

    .price-cue.is-great {
        font-weight: 600;
    }

    .product-col-buy .highlights {
        margin-top: 12px;
    }

    .product-col-media .product-specs {
        padding-top: 0;
        padding-bottom: 0;
    }

    .thumbs {
        overflow: visible;
        padding-bottom: 0;
    }

    .thumbs-track {
        flex-wrap: wrap;
        width: auto;
        scroll-snap-type: none;
    }

    .thumbs .shot {
        flex: 0 0 56px;
        width: 56px;
        height: 56px;
    }

    .cta {
        width: auto;
        min-width: 15.5rem;
    }

    .specs div {
        grid-template-columns: 10rem 1fr;
        align-items: baseline;
    }
}
