/* ── The Bag Dude — warm sand, playful type, sage + coral CTAs ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --sand-50: #fdfaf5;
    --sand-100: #f5ebe0;
    --sand-200: #e8dcc8;
    --brown-800: #3d2f24;
    --brown-700: #5c4334;
    --brown-600: #6b5344;
    --muted: #7a6a5c;
    --sage: #3d6b55;
    --sage-dark: #2d5240;
    --coral: #e85d4c;
    --coral-dark: #c94a3b;
    --cream: #fffdf8;
    --ink: #1f1814;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(61, 47, 36, 0.08);
    --shadow-lg: 0 12px 40px rgba(61, 47, 36, 0.12);
    --font: "DM Sans", system-ui, sans-serif;
    --font-display: "Fraunces", Georgia, serif;
    --max: 1120px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--sand-50);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container--narrow { max-width: 720px; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(253, 250, 245, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sand-200);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    max-width: var(--max);
    margin: 0 auto;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--brown-800);
    text-decoration: none;
}
.site-logo:hover { text-decoration: none; }
.site-logo__mark {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--coral), #f4a261);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}
.site-logo__text { letter-spacing: -0.02em; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.site-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brown-700);
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    text-decoration: none;
}
.site-nav a:hover {
    background: var(--sand-100);
    text-decoration: none;
}
.site-nav__cta {
    background: var(--sage) !important;
    color: #fff !important;
    padding: 0.45rem 1rem !important;
}
.site-nav__cta:hover {
    background: var(--sage-dark) !important;
}

.site-nav__toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 10px;
    background: var(--sand-100);
    cursor: pointer;
    position: relative;
}
.site-nav__toggle::before,
.site-nav__toggle::after {
    content: "";
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    height: 2px;
    background: var(--brown-800);
    transition: transform 0.2s;
}
.site-nav__toggle::before { top: 0.9rem; box-shadow: 0 7px 0 var(--brown-800); }
.site-nav__toggle::after { top: 0.9rem; opacity: 0; }

@media (max-width: 768px) {
    .site-nav__toggle { display: block; }
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: var(--cream);
        border-bottom: 1px solid var(--sand-200);
        box-shadow: var(--shadow-lg);
    }
    .site-nav.is-open { display: flex; }
    .site-header { position: relative; }
}

/* Hero */
.hero {
    position: relative;
    padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
    overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; }
.hero__blob {
    position: absolute;
    width: min(90vw, 520px);
    height: min(90vw, 520px);
    right: -10%;
    top: -20%;
    background: radial-gradient(circle, rgba(232, 93, 76, 0.18) 0%, transparent 70%);
    pointer-events: none;
}
.hero__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sage-dark);
    margin-bottom: 1rem;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--brown-800);
    max-width: 16ch;
    letter-spacing: -0.03em;
}
.hero__title em {
    font-style: italic;
    color: var(--coral-dark);
}
.hero__lead {
    margin-top: 1.25rem;
    font-size: 1.1rem;
    max-width: 52ch;
    color: var(--brown-600);
}
.hero__actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
    background: linear-gradient(135deg, var(--coral), #f07a5c);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(232, 93, 76, 0.35);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-secondary {
    background: var(--sage);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(61, 107, 85, 0.25);
}
.btn-secondary:hover { background: var(--sage-dark); }
.btn-ghost {
    background: transparent;
    color: var(--brown-700) !important;
    border: 2px solid var(--sand-200);
}
.btn-ghost:hover { border-color: var(--brown-600); }
.btn--small { padding: 0.45rem 1rem; font-size: 0.85rem; }

/* Sections */
.section { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--tight { padding-top: 0; }
.section--sand {
    background: linear-gradient(180deg, var(--sand-100) 0%, var(--sand-50) 100%);
    border-top: 1px solid var(--sand-200);
    border-bottom: 1px solid var(--sand-200);
}
.section--page-top { padding-top: 2rem; padding-bottom: 4rem; }
.section__head { margin-bottom: 2rem; }
.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--brown-800);
}
.section__sub { color: var(--muted); margin-top: 0.35rem; max-width: 50ch; }
.section__cta-row { text-align: center; margin-top: 2rem; }

.page-header__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    color: var(--brown-800);
}
.page-header__lead { color: var(--muted); margin-top: 0.75rem; max-width: 60ch; }

/* Card grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Homepage — latest guides & roundups */
.section--home-guides {
    background: linear-gradient(180deg, #faf8f4 0%, var(--cream) 42%, #fff 100%);
    border-top: 1px solid var(--sand-200);
}
.home-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.home-guide-card { margin: 0; }
.home-guide-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 11rem;
    padding: 1.35rem 1.4rem 1.5rem;
    background: var(--cream);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    border-left: 4px solid var(--sage);
}
.home-guide-card__link:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: var(--sand-200);
    text-decoration: none;
    color: inherit;
}
.home-guide-card__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage-dark);
    margin-bottom: 0.5rem;
}
.home-guide-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.28;
    color: var(--brown-800);
    margin: 0 0 0.65rem;
}
.home-guide-card__excerpt {
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--muted);
    margin: 0 0 1rem;
    flex: 1;
}
.home-guide-card__cta {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--coral-dark);
    margin-top: auto;
}
.home-guide-card__link:hover .home-guide-card__cta {
    text-decoration: underline;
}

.review-card {
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--sand-200);
    transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.review-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1;
    background: var(--sand-100);
}
.review-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}
.review-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--sand-200), var(--sand-100));
}
.dude-pill {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--brown-800);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
}
.review-card__body { padding: 1.1rem 1.25rem 1.35rem; }
.review-card__cat {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sage-dark);
}
.review-card__title {
    margin-top: 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}
.review-card__title a { color: var(--brown-800); text-decoration: none; }
.review-card__title a:hover { color: var(--coral-dark); }
.review-card__excerpt {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-card__more {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--coral-dark);
}

/* Two column mission */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (max-width: 800px) {
    .two-col { grid-template-columns: 1fr; }
}
.prose { color: var(--brown-600); }
.prose--page p { margin-bottom: 1rem; }
.mission-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px dashed var(--sand-200);
    box-shadow: var(--shadow);
}
.mission-card__quote {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    font-style: italic;
    color: var(--brown-800);
    line-height: 1.4;
}
.mission-card__sig {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--coral-dark);
}

/* Homepage — quote above site footer */
.section--home-footer-quote {
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
    background: linear-gradient(180deg, #fff 0%, var(--sand-50) 100%);
    border-top: 1px solid var(--sand-200);
}
.home-footer-quote {
    margin: 0 auto;
    max-width: 44rem;
    padding: 0;
    border: none;
    text-align: center;
}
.home-footer-quote__text {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.8vw, 1.55rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.45;
    color: var(--brown-800);
}
.home-footer-quote__sig {
    margin-top: 1.15rem;
    font-size: 0.95rem;
    font-weight: 700;
    font-style: normal;
    color: var(--coral-dark);
}

.text-link { font-weight: 700; color: var(--coral-dark); }

/* Review list */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    background: var(--cream);
    border-radius: var(--radius-sm);
    border: 1px solid var(--sand-200);
}
.filter-bar label { font-weight: 600; color: var(--brown-700); }
.filter-bar select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--sand-200);
    font: inherit;
    background: #fff;
}

.list-rows { display: flex; flex-direction: column; gap: 1rem; }
.list-row {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.25rem;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--sand-200);
    box-shadow: var(--shadow);
}
@media (max-width: 640px) {
    .list-row { grid-template-columns: 72px 1fr; }
    .list-row__side { grid-column: 1 / -1; flex-direction: row; justify-content: flex-start; }
}
.list-row__thumb img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    background: var(--sand-100);
}
.list-row__cat {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--sage-dark);
}
.list-row__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 0.2rem;
}
.list-row__title a { color: var(--brown-800); text-decoration: none; }
.list-row__title a:hover { color: var(--coral-dark); }
.list-row__excerpt { font-size: 0.9rem; color: var(--muted); margin-top: 0.35rem; }
.list-row__side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}
.dude-badge {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brown-800);
    font-variant-numeric: tabular-nums;
}
.dude-badge__label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Single review */
.review-article { padding-bottom: 4rem; }
.breadcrumb {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--sage-dark); }
.breadcrumb__sep { margin: 0 0.4rem; opacity: 0.6; }
.breadcrumb__current { color: var(--brown-600); }

.review-header { margin-bottom: 2rem; }
.review-header__eyebrow {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: var(--sage-dark);
}
.review-header__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--brown-800);
    margin-top: 0.35rem;
    max-width: 20ch;
}
.review-header__scores {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
}
.score-ring {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 5.5rem;
    min-height: 5.5rem;
    padding: 0.75rem;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--sand-100), #fff);
    border: 2px solid var(--sand-200);
    box-shadow: var(--shadow);
}
.score-ring__value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brown-800);
    line-height: 1;
}
.score-ring__label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-top: 0.25rem;
}
.review-gallery { margin-bottom: 2rem; }
.review-gallery__hero {
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--sand-200);
    padding: 1.5rem;
    text-align: center;
}
.review-gallery__hero img {
    max-height: 480px;
    margin: 0 auto;
    object-fit: contain;
}
.review-gallery__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.review-gallery__thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    background: var(--sand-100);
    cursor: pointer;
    overflow: hidden;
}
.review-gallery__thumb.is-active { border-color: var(--coral); }
.review-gallery__thumb img { width: 72px; height: 72px; object-fit: contain; }

.review-aside-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.callout {
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--sand-200);
    box-shadow: var(--shadow);
}
.callout--tldr {
    border-left: 4px solid var(--coral);
}
.callout__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--brown-800);
}
.callout__text { font-size: 0.95rem; color: var(--brown-600); }
.checklist { padding-left: 1.2rem; }
.checklist li { margin-bottom: 0.35rem; }

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.tag-pill {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--sand-100);
    color: var(--brown-700);
    border: 1px solid var(--sand-200);
}

/* Prose / review body */
.review-body.prose {
    font-size: 1.05rem;
    color: var(--brown-700);
    max-width: 68ch;
}
.review-body.prose h2,
.review-body.prose h3,
.review-body.prose h4 {
    font-family: var(--font-display);
    color: var(--brown-800);
    margin: 2rem 0 0.75rem;
    line-height: 1.25;
}
.review-body.prose h2 { font-size: 1.65rem; }
.review-body.prose h3 { font-size: 1.35rem; }
.review-body.prose p { margin-bottom: 1rem; }
.review-body.prose ul,
.review-body.prose ol { margin: 0 0 1rem 1.25rem; }
.review-body.prose li { margin-bottom: 0.35rem; }
.review-body.prose blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--sage);
    background: var(--sand-100);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--brown-600);
}

.review-cta {
    margin: 3rem 0 2rem;
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--sand-100), var(--cream));
    border: 1px solid var(--sand-200);
    box-shadow: var(--shadow);
}
.review-cta__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brown-800);
}
.review-cta__sub {
    color: var(--muted);
    margin: 0.5rem auto 0;
    max-width: 48ch;
    font-size: 0.95rem;
}
.review-cta__buttons {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.affiliate-inline {
    font-size: 0.85rem;
    color: var(--muted);
    font-style: italic;
    max-width: 60ch;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2.5rem 0;
}
.pagination__link, .pagination__current {
    min-width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}
.pagination__link {
    background: var(--cream);
    border: 1px solid var(--sand-200);
    color: var(--brown-800);
}
.pagination__link:hover { background: var(--sand-100); text-decoration: none; }
.pagination__current {
    background: var(--brown-800);
    color: #fff;
}

/* Legacy product grid (fallback) */
h1 { font-size: 1.75rem; margin-bottom: 1.5rem; font-family: var(--font-display); color: var(--brown-800); }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.product-card {
    background: var(--cream);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--sand-200);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.product-card__image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--sand-100);
}
.product-card__image img { max-height: 200px; object-fit: contain; }
.product-card__body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.product-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card__meta { font-size: 0.8rem; color: var(--muted); margin: 0.5rem 0; }
.product-card__price { margin-top: auto; font-size: 1.2rem; font-weight: 800; color: var(--sage-dark); }

/* Product detail legacy */
.product-page .product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 768px) {
    .product-page .product-detail { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
    margin-top: 4rem;
    padding: 3rem 0 2rem;
    background: var(--brown-800);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}
.site-footer a { color: #fff; opacity: 0.95; }
.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (max-width: 600px) {
    .site-footer__grid { grid-template-columns: 1fr; }
}
.site-footer__brand { font-size: 1.1rem; display: block; margin-bottom: 0.35rem; }
.site-footer__tag { opacity: 0.85; max-width: 36ch; }
.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}
.editorial-disclosure,
.affiliate-disclosure {
    font-size: 0.8rem;
    opacity: 0.75;
    max-width: 720px;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.editorial-disclosure p {
    margin: 0 0 0.65rem;
}
.editorial-disclosure p:last-child {
    margin-bottom: 0;
}
.site-footer__copy { font-size: 0.8rem; opacity: 0.6; }

.empty-state {
    padding: 2rem;
    text-align: center;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px dashed var(--sand-200);
    color: var(--muted);
}
.muted { color: var(--muted); }

/* Guides & roundup listicles */
.page-roundup .roundup-article,
.page-guides-index { padding-bottom: 3rem; }
.roundup-header { margin-bottom: 1.5rem; }
.roundup-header__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sage-dark);
    margin-bottom: 0.35rem;
}
.roundup-header__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 700;
    color: var(--brown-800);
    line-height: 1.2;
}
.roundup-intro { margin-bottom: 2.5rem; max-width: 72ch; }
.roundup-picks { display: flex; flex-direction: column; gap: 2.5rem; }
.roundup-pick {
    position: relative;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--sand-200);
    box-shadow: var(--shadow);
    padding: 1.25rem 1.25rem 1.5rem;
    /* Reserve space for rank badge so copy never runs underneath */
    padding-right: 5.5rem;
}
@media (min-width: 721px) {
    .roundup-pick {
        padding-right: 6.75rem;
    }
}
.roundup-pick__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    box-sizing: border-box;
    min-width: 4.25rem;
    min-height: 4.25rem;
    padding: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    /* ~100% larger than previous 1.1rem */
    font-size: clamp(1.85rem, 4.5vw, 2.35rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--coral-dark);
    background: linear-gradient(145deg, rgba(232, 93, 76, 0.14), rgba(232, 93, 76, 0.06));
    border: 2px solid var(--coral);
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(232, 93, 76, 0.18);
}
.roundup-pick__grid {
    display: grid;
    grid-template-columns: minmax(0, 220px) 1fr;
    gap: 1.5rem;
    align-items: start;
}
@media (max-width: 720px) {
    .roundup-pick__grid { grid-template-columns: 1fr; }
    .roundup-pick__media { max-width: 280px; margin: 0 auto; }
    .roundup-pick {
        padding-right: 1.25rem;
        padding-top: 5.25rem;
    }
    .roundup-pick__badge {
        top: 1rem;
        right: 1rem;
        left: auto;
    }
}
.roundup-pick__media img {
    border-radius: var(--radius-sm);
    border: 1px solid var(--sand-200);
}
.roundup-pick__product-name {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--brown-800);
    margin-bottom: 0.25rem;
}
.roundup-pick__brand { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.75rem; }
.roundup-pick__prose { margin-bottom: 1.25rem; }
.roundup-pick__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.roundup-pick__actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.roundup-pick__actions .btn-primary {
    background: var(--coral);
    color: #fff;
}
.roundup-pick__actions .btn-primary:hover { background: var(--coral-dark); text-decoration: none; }
.roundup-pick__actions .btn-secondary {
    background: var(--sand-100);
    color: var(--brown-800);
    border: 1px solid var(--sand-200);
}
.roundup-pick__actions .btn-secondary:hover { background: var(--sand-200); text-decoration: none; }
.roundup-closing { margin-top: 2.5rem; max-width: 72ch; }

.guides-index-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 52rem;
}
.guides-index-list__link {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--brown-800);
}
.guides-index-list__link:hover { color: var(--coral-dark); }
.guides-index-list__meta {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 0.35rem;
    line-height: 1.5;
}

.roundup-related {
    margin-top: 2.75rem;
    padding: 1.65rem 1.35rem 1.5rem;
    background: linear-gradient(165deg, var(--cream) 0%, var(--sand-50) 100%);
    border: 1px solid var(--sand-200);
    border-radius: var(--radius);
    max-width: 46rem;
    box-shadow: var(--shadow);
}
.roundup-related__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brown-800);
    margin-bottom: 0.35rem;
}
.roundup-related__lead {
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 1.15rem;
    line-height: 1.55;
    max-width: 40ch;
}
.roundup-related__chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.65rem;
    margin: 0;
    padding: 0;
}
.roundup-related__chip-wrap {
    margin: 0;
    padding: 0;
}
.roundup-related__chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.95rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brown-800);
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--sand-200);
    border-radius: 999px;
    box-shadow: 0 1px 4px rgba(61, 47, 36, 0.06);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}
.roundup-related__chip:hover {
    text-decoration: none;
    border-color: var(--sage);
    box-shadow: 0 3px 14px rgba(61, 107, 85, 0.12);
    transform: translateY(-1px);
    color: var(--sage-dark);
}
.roundup-related__chip-text {
    max-width: 16rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
