﻿:root {
    color-scheme: light;
    --bg: #f4f7fb;
    --bg-soft: #eef3f9;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --text: #101827;
    --muted: #667085;
    --muted-strong: #475467;
    --line: #d9e2ee;
    --line-strong: #c3cfdd;
    --brand: #102a43;
    --brand-soft: #e8f0f8;
    --brand-strong: #071b2f;
    --accent: #f97316;
    --accent-soft: #fff3e8;
    --accent-strong: #c2410c;
    --blue-accent: #2563eb;
    --success: #166534;
    --success-soft: #ecfdf5;
    --danger: #b91c1c;
    --danger-soft: #fef2f2;
    --warning: #9a3412;
    --warning-soft: #fff7ed;
    --focus: #2563eb;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 2px rgba(16, 24, 39, .06);
    --shadow: 0 18px 45px rgba(16, 42, 67, .10);
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-rendering: optimizeLegibility;
}

html,
body {
    overflow-x: hidden;
}

body {
    background:
        linear-gradient(180deg, rgba(232, 240, 248, .75), rgba(244, 247, 251, 0) 360px),
        var(--bg);
    margin: 0;
    min-width: 320px;
}

a {
    color: inherit;
}

a:hover {
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

.skip-link {
    background: var(--brand-strong);
    border-radius: var(--radius);
    color: #fff;
    left: 16px;
    padding: 10px 14px;
    position: absolute;
    top: -56px;
    z-index: 50;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    backdrop-filter: blur(18px);
    background: rgba(244, 247, 251, .88);
    border-bottom: 1px solid rgba(217, 226, 238, .86);
    position: sticky;
    top: 0;
    z-index: 30;
}

.site-header__inner,
.site-footer__inner {
    align-items: center;
    display: grid;
    gap: 16px;
    margin: 0 auto;
    max-width: var(--container);
    padding: 14px 20px;
}

.site-header__inner {
    grid-template-columns: auto minmax(220px, 1fr) auto;
}

.brand {
    align-items: center;
    display: inline-flex;
    min-height: 54px;
    text-decoration: none;
}

.brand img {
    height: 52px;
    max-width: 216px;
    width: auto;
}

.header-search {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 4px;
}

.header-search input {
    background: transparent;
    border: 0;
    min-height: 40px;
}

.header-search input:focus {
    outline: 0;
}

.header-search button {
    min-height: 40px;
    padding: 9px 14px;
}

.main-nav,
.site-footer nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.main-nav a,
.site-footer a {
    border-radius: var(--radius);
    color: var(--muted-strong);
    font-size: .94rem;
    font-weight: 800;
    padding: 10px 11px;
    text-decoration: none;
}

.nav-toggle,
.nav-backdrop,
.nav-close {
    display: none;
}

.main-nav a:hover,
.site-footer a:hover,
.main-nav a[aria-current="page"],
.site-footer a[aria-current="page"] {
    background: var(--brand-soft);
    color: var(--brand);
}

.main-nav a[aria-current="page"],
.site-footer a[aria-current="page"] {
    box-shadow: inset 0 0 0 1px rgba(15, 42, 74, .1);
}

main {
    margin: 0 auto;
    max-width: var(--container);
    padding: 0 20px 56px;
}

.site-footer {
    border-top: 1px solid var(--line);
    margin-top: 48px;
}

.site-footer__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-bottom: 28px;
    padding-top: 28px;
}

.site-footer p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.hero,
.product-hero {
    background:
        radial-gradient(circle at 90% 10%, rgba(249, 115, 22, .16), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #edf5ff 100%);
    border: 1px solid rgba(195, 207, 221, .9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero {
    align-items: center;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 26px;
    overflow: hidden;
    padding: 30px;
}

.hero h1,
.page-heading h1 {
    color: var(--brand-strong);
    font-size: 2.35rem;
    letter-spacing: 0;
    line-height: 1.02;
    margin: 0;
    max-width: 860px;
    overflow-wrap: anywhere;
}

.hero p,
.page-heading p,
.seo-band p,
.empty-state p,
.product-card p,
.product-hero p,
.product-content p,
.affiliate-box p,
.admin-grid p,
.admin-topbar p {
    color: var(--muted);
    line-height: 1.7;
}

.hero__content > p:not(.eyebrow),
.page-heading p {
    font-size: 1.08rem;
    max-width: 680px;
}

.eyebrow {
    color: var(--accent-strong);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.hero__mark {
    display: none;
}

.hero__actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero__product-image {
    aspect-ratio: 1;
    background: #fff;
    border: 1px solid rgba(217, 226, 238, .9);
    border-radius: var(--radius-lg);
    box-shadow: 0 28px 50px rgba(16, 42, 67, .18);
    object-fit: cover;
    width: 100%;
}

.hero__brand-mark {
    aspect-ratio: 1;
    border-radius: 32px;
    box-shadow: 0 28px 50px rgba(16, 42, 67, .18);
    margin-left: auto;
    max-width: 320px;
    width: 100%;
}

.search-panel,
.toolbar form,
.contact-form {
    display: grid;
    gap: 12px;
}

.search-panel {
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(217, 226, 238, .95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    grid-template-columns: 1fr;
    margin-top: 24px;
    padding: 8px;
}

input,
textarea,
select {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    min-height: 46px;
    padding: 12px 14px;
    width: 100%;
}

textarea {
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #98a2b3;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
    border-color: #dc2626;
    box-shadow: 0 0 0 1px #dc2626;
}

button,
.button {
    align-items: center;
    background: var(--brand);
    border: 0;
    border-radius: var(--radius);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    line-height: 1.2;
    min-height: 46px;
    padding: 12px 18px;
    text-decoration: none;
    text-align: center;
    transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

button:hover,
.button:hover {
    background: var(--brand-strong);
    box-shadow: 0 12px 24px rgba(16, 42, 67, .16);
    transform: translateY(-1px);
}

.button--secondary {
    background: var(--brand-soft);
    color: var(--brand);
}

.button--secondary:hover {
    background: #dbe7f3;
}

.button--danger {
    background: var(--danger);
    color: #fff;
}

button:disabled,
input:disabled,
textarea:disabled {
    cursor: not-allowed;
    opacity: .65;
}

.section,
.seo-band,
.page-heading,
.toolbar,
.empty-state,
.contact-form {
    margin-top: 34px;
}

.page-heading {
    padding-top: 26px;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.state-page {
    align-items: center;
    background:
        radial-gradient(circle at 92% 8%, rgba(249, 115, 22, .14), transparent 28%),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    margin-top: 34px;
    padding: 26px;
}

.state-page img {
    border-radius: 28px;
    box-shadow: 0 22px 42px rgba(16, 42, 67, .16);
    max-width: 156px;
    width: 100%;
}

.state-page h1 {
    color: var(--brand-strong);
    font-size: 2.35rem;
    line-height: 1.04;
    margin: 0;
}

.state-page p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.7;
    margin: 12px 0 0;
    max-width: 680px;
}

.section__header {
    align-items: end;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.section__header--spaced {
    margin-top: 30px;
}

.section__header h2,
.seo-band h2,
.empty-state h2,
.admin-grid h2 {
    margin: 0;
}

.section__header > a {
    color: var(--accent-strong);
    font-weight: 900;
    text-decoration: none;
}

.category-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
    margin-top: 18px;
}

.category-grid a,
.seo-band,
.empty-state,
.toolbar,
.contact-form,
.media-placeholder,
.product-gallery,
.product-content section,
.pros-cons > div,
.affiliate-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.category-grid a {
    min-height: 118px;
    padding: 20px;
    text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.category-grid a {
    color: var(--brand);
    font-size: 1.12rem;
    font-weight: 950;
}

.category-grid a:hover {
    border-color: rgba(249, 115, 22, .45);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.category-grid a span {
    color: var(--muted);
    display: block;
    font-size: .9rem;
    font-weight: 750;
    line-height: 1.5;
    margin-top: 8px;
}

.criteria-strip {
    background: var(--brand);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    color: #fff;
    display: grid;
    gap: 1px;
    grid-template-columns: 1fr;
    margin-top: 28px;
    overflow: hidden;
}

.criteria-strip article {
    background: rgba(255, 255, 255, .07);
    min-height: 116px;
    padding: 20px;
}

.criteria-strip strong,
.criteria-strip span {
    display: block;
}

.criteria-strip strong {
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.criteria-strip span {
    color: rgba(255, 255, 255, .78);
    line-height: 1.55;
}

.trust-strip {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    margin-top: 24px;
}

.trust-strip article {
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 16px;
}

.trust-strip strong,
.trust-strip span {
    display: block;
}

.trust-strip strong {
    color: var(--brand-strong);
    margin-bottom: 6px;
}

.trust-strip span {
    color: var(--muted);
    line-height: 1.55;
}

.catalog-guidance {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.catalog-guidance span {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--brand);
    font-size: .86rem;
    font-weight: 900;
    padding: 9px 11px;
}

.taxonomy-intro {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    margin-top: 22px;
}

.taxonomy-intro article {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    min-height: 112px;
    padding: 18px;
}

.taxonomy-intro strong {
    color: var(--brand-strong);
    display: block;
    font-size: 1.35rem;
    line-height: 1.1;
    margin-bottom: 8px;
}

.taxonomy-intro span {
    color: var(--muted);
    display: block;
    line-height: 1.55;
}

.empty-state {
    display: grid;
    gap: 12px;
    justify-items: start;
    padding: 24px;
}

.empty-state form {
    margin: 0;
}

.empty-state--compact {
    box-shadow: none;
    margin-top: 14px;
    padding: 18px;
}

.breadcrumbs {
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    font-size: .94rem;
    gap: 8px;
    margin-top: 24px;
}

.breadcrumbs a {
    color: var(--brand);
    font-weight: 800;
    text-decoration: none;
}

.product-card-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
    margin-top: 24px;
}

.product-rail {
    display: grid;
    gap: 16px;
    grid-auto-columns: minmax(270px, 330px);
    grid-auto-flow: column;
    margin-top: 18px;
    overflow-x: auto;
    padding: 2px 2px 14px;
    scroll-snap-type: x proximity;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    scroll-snap-align: start;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.product-card:hover {
    border-color: rgba(249, 115, 22, .45);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.product-card__media {
    align-items: center;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #edf2f7, #ffffff);
    color: var(--muted);
    display: flex;
    font-weight: 900;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
}

.product-card__media img {
    height: 100%;
    object-fit: cover;
    transition: transform .22s ease;
    width: 100%;
}

.product-card:hover .product-card__media > img {
    transform: scale(1.035);
}

.product-card__placeholder {
    align-items: center;
    display: grid;
    gap: 10px;
    justify-items: center;
    padding: 18px;
    text-align: center;
}

.product-card__placeholder img {
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(16, 42, 67, .12);
    height: 86px;
    width: 86px;
}

.product-card__placeholder span {
    color: var(--muted-strong);
    font-size: .82rem;
    font-weight: 950;
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.product-card h2,
.product-card h3 {
    font-size: 1.1rem;
    line-height: 1.25;
    margin: 10px 0 8px;
    overflow-wrap: anywhere;
}

.product-card h2 a,
.product-card h3 a,
.text-link {
    color: var(--brand);
    text-decoration: none;
}

.product-card p {
    margin: 0 0 16px;
    overflow-wrap: anywhere;
}

.text-link {
    color: var(--accent-strong);
    font-weight: 950;
    margin-top: auto;
}

.result-count {
    color: var(--muted-strong);
    font-weight: 850;
    margin: 22px 0 0;
}

.toolbar {
    padding: 18px;
}

.toolbar__header {
    align-items: end;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 14px;
}

.toolbar__header h2 {
    margin: 0;
}

.toolbar__header p {
    color: var(--muted);
    line-height: 1.5;
    margin: 6px 0 0;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.active-filters a {
    align-items: center;
    background: var(--accent-soft);
    border-radius: 999px;
    color: var(--accent-strong);
    display: inline-flex;
    font-size: .82rem;
    font-weight: 900;
    gap: 8px;
    padding: 7px 10px;
    text-decoration: none;
}

.active-filters a:hover {
    background: #fed7aa;
}

.active-filters a span {
    align-items: center;
    background: rgba(194, 65, 12, .12);
    border-radius: 999px;
    display: inline-flex;
    height: 18px;
    justify-content: center;
    width: 18px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 30px;
}

.pagination a {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--brand);
    font-weight: 900;
    min-width: 44px;
    padding: 10px 12px;
    text-align: center;
    text-decoration: none;
}

.pagination a.is-active {
    background: var(--brand);
    color: #fff;
}

.product-detail {
    margin-top: 24px;
}

.product-hero {
    align-items: start;
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
    padding: 24px;
}

.product-hero h1 {
    color: var(--brand-strong);
    font-size: 2.2rem;
    line-height: 1.05;
    margin: 0;
    overflow-wrap: anywhere;
}

.taxonomy-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.taxonomy-list span,
.taxonomy-list a,
.status-pill,
.mini-pill {
    background: var(--brand-soft);
    border-radius: 999px;
    color: var(--brand) !important;
    display: inline-flex !important;
    font-size: .78rem;
    font-weight: 950;
    margin: 0 4px 4px 0 !important;
    padding: 6px 9px;
    text-decoration: none;
}

.mini-pill {
    background: var(--accent-soft);
    color: var(--accent-strong) !important;
}

.review-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.review-summary span {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    display: inline-flex;
    font-size: .86rem;
    font-weight: 850;
    padding: 9px 11px;
}

.review-summary span::before {
    background: var(--accent);
    border-radius: 999px;
    content: "";
    height: 7px;
    margin-right: 8px;
    width: 7px;
}

.affiliate-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    display: grid;
    gap: 12px;
    padding: 18px;
}

.affiliate-box h2 {
    color: var(--brand-strong);
    font-size: 1.05rem;
    margin: 0;
}

.affiliate-note {
    font-size: .9rem;
    margin: 0;
}

.affiliate-disclosure {
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.55;
    margin: 0;
    padding-top: 12px;
}

.affiliate-disclosure a {
    color: var(--accent-strong);
    font-weight: 900;
    text-decoration: none;
}

.product-detail-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
    margin-top: 22px;
}

.product-gallery,
.product-content section,
.pros-cons > div {
    padding: 18px;
}

.product-gallery__main {
    aspect-ratio: 4 / 3;
    background: var(--surface-soft);
    border-radius: var(--radius);
    object-fit: cover;
    width: 100%;
}

.product-gallery__thumbs {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 12px;
}

.product-gallery__thumbs button {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: none;
    min-height: auto;
    overflow: hidden;
    padding: 0;
}

.product-gallery__thumbs button:hover,
.product-gallery__thumbs button[aria-current="true"] {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, .18);
    transform: none;
}

.product-gallery__thumbs img {
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
}

.product-content {
    display: grid;
    gap: 16px;
}

.product-content h2 {
    margin: 0 0 8px;
}

.analysis-criteria > div {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

.analysis-criteria article {
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 6px;
    padding: 14px;
}

.analysis-criteria strong {
    color: var(--brand-strong);
}

.analysis-criteria span {
    color: var(--muted);
    line-height: 1.6;
}

.pros-cons {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

.spec-table {
    display: grid;
    gap: 16px;
}

.spec-table__group {
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.spec-table__group:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.spec-table__group h3 {
    margin: 0 0 10px;
}

.spec-table dl {
    display: grid;
    gap: 0;
    margin: 0;
}

.spec-table dl div {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 6px;
    grid-template-columns: 1fr;
    padding: 12px 0;
}

.spec-table dt {
    color: var(--muted);
    font-weight: 800;
}

.spec-table dd {
    font-weight: 900;
    margin: 0;
}

.spec-table dd span {
    color: var(--muted);
    font-weight: 700;
}

.legal-page {
    margin-top: 26px;
}

.legal-layout {
    align-items: start;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 22px;
}

.legal-aside {
    background: var(--brand);
    border-radius: var(--radius-lg);
    color: #fff;
    padding: 22px;
}

.legal-aside h2 {
    margin: 0 0 10px;
}

.legal-aside p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.7;
    margin: 0;
}

.legal-aside a {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius);
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    margin-top: 18px;
    padding: 10px 12px;
    text-decoration: none;
}

.legal-aside a:hover {
    background: rgba(255, 255, 255, .2);
}

.legal-content {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    color: var(--muted);
    line-height: 1.8;
    padding: 24px;
}

.legal-content p {
    margin: 0;
}

.media-placeholder {
    align-items: center;
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(circle at 86% 12%, rgba(249, 115, 22, .12), transparent 30%),
        linear-gradient(135deg, #edf2f7, #ffffff);
    color: var(--muted);
    display: grid;
    font-weight: 900;
    gap: 12px;
    justify-content: center;
    justify-items: center;
    padding: 22px;
    text-align: center;
}

.media-placeholder img {
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(16, 42, 67, .14);
    height: 118px;
    width: 118px;
}

.form-note {
    color: var(--muted);
    margin: 0;
}

.contact-form {
    padding: 22px;
}

.contact-layout {
    align-items: start;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 30px;
}

.contact-panel {
    background: var(--brand);
    border-radius: var(--radius-lg);
    color: #fff;
    padding: 24px;
}

.contact-panel h2 {
    margin: 0 0 10px;
}

.contact-panel p,
.contact-panel li {
    color: rgba(255, 255, 255, .82);
    line-height: 1.7;
}

.contact-panel ul {
    margin: 18px 0 0;
    padding-left: 20px;
}

.contact-assurance {
    display: grid;
    gap: 8px;
    margin-top: 20px;
}

.contact-assurance span {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, .9);
    font-weight: 850;
    padding: 9px 10px;
}

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

.alert {
    border-radius: var(--radius);
    font-weight: 750;
    line-height: 1.5;
    margin-top: 18px;
    padding: 12px 14px;
}

.notice {
    border-radius: var(--radius);
    font-weight: 750;
    line-height: 1.5;
    margin-top: 12px;
    padding: 12px 14px;
}

.alert--error {
    background: var(--danger-soft);
    border: 1px solid #fecaca;
    color: #991b1b;
}

.alert--success {
    background: var(--success-soft);
    border: 1px solid #bbf7d0;
    color: var(--success);
}

.alert--warning {
    background: var(--warning-soft);
    border: 1px solid #fed7aa;
    color: var(--warning);
}

.notice--warning {
    background: var(--warning-soft);
    border: 1px solid #fed7aa;
    color: var(--warning);
}

.alert a {
    color: inherit;
    display: inline-block;
    margin-left: 10px;
    text-decoration: underline;
}

.admin-auth,
.admin-shell {
    margin-top: 34px;
}

.admin-auth {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    max-width: 920px;
}

.admin-auth::before {
    background:
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, .18), transparent 32%),
        linear-gradient(135deg, var(--brand), var(--brand-strong));
    border-radius: var(--radius-lg);
    content: "";
    display: none;
    min-height: 100%;
}

.admin-auth__brand,
.admin-auth__form,
.admin-topbar,
.admin-grid article,
.admin-table,
.form-section,
.message-view,
.choice-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.admin-auth__brand,
.admin-auth__form,
.admin-topbar,
.admin-grid article,
.form-section,
.message-view {
    padding: 22px;
}

.admin-auth__brand img {
    margin-bottom: 18px;
}

.admin-auth__brand {
    background:
        radial-gradient(circle at 90% 10%, rgba(249, 115, 22, .16), transparent 30%),
        var(--surface);
}

.admin-auth__brand h1,
.admin-topbar h1 {
    margin: 0;
}

.auth-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.auth-assurance span {
    background: var(--brand-soft);
    border-radius: 999px;
    color: var(--brand);
    font-size: .82rem;
    font-weight: 900;
    padding: 7px 10px;
}

.admin-auth__form,
.admin-form,
.form-section {
    display: grid;
    gap: 14px;
}

.form-jump-nav {
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    padding: 10px;
    position: sticky;
    top: 84px;
    z-index: 20;
}

.form-jump-nav,
.form-actions--sticky {
    backdrop-filter: blur(14px);
}

.form-jump-nav a {
    background: var(--brand-soft);
    border-radius: var(--radius);
    color: var(--brand);
    font-size: .88rem;
    font-weight: 900;
    padding: 9px 11px;
    text-decoration: none;
}

.form-jump-nav a:hover {
    background: #dbe7f3;
}

.admin-topbar {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.admin-topbar__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.admin-topbar__actions form {
    margin: 0;
}

.admin-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    margin-top: 20px;
}

.module-actions {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
    margin-top: 16px;
}

.module-actions a {
    align-items: center;
    background: var(--brand-soft);
    border: 1px solid transparent;
    border-radius: var(--radius);
    color: var(--brand);
    display: flex;
    font-weight: 900;
    justify-content: space-between;
    min-height: 44px;
    padding: 10px 12px;
    text-decoration: none;
}

.module-actions a::after {
    color: var(--accent-strong);
    content: ">";
}

.module-actions a:hover {
    background: #dbe7f3;
    border-color: rgba(249, 115, 22, .35);
}

.download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.download-actions .button {
    min-width: 96px;
}

.admin-guide {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    margin-top: 20px;
}

.admin-guide article {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 18px;
}

.admin-guide strong {
    color: var(--brand-strong);
    display: block;
    font-size: 1.18rem;
    line-height: 1.15;
    margin-bottom: 8px;
}

.admin-guide span {
    color: var(--muted);
    display: block;
    line-height: 1.55;
}

.admin-metrics {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    margin-top: 20px;
}

.admin-metric {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    color: inherit;
    padding: 18px;
    text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.admin-metric:hover,
.admin-metric:focus-visible {
    border-color: rgba(249, 115, 22, .45);
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

.admin-metrics span {
    color: var(--muted);
    display: block;
    font-size: .9rem;
    font-weight: 850;
}

.admin-metrics strong {
    color: var(--brand);
    display: block;
    font-size: 2rem;
    line-height: 1.1;
    margin-top: 8px;
}

.admin-metrics p {
    color: var(--muted);
    line-height: 1.5;
    margin: 8px 0 0;
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.admin-tabs a {
    background: var(--brand-soft);
    border-radius: var(--radius);
    color: var(--brand);
    font-weight: 850;
    padding: 10px 12px;
    text-decoration: none;
}

.admin-tabs a.is-active {
    background: var(--brand);
    color: #fff;
}

.admin-table {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-top: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.admin-table table {
    border-collapse: collapse;
    min-width: 840px;
    width: 100%;
}

.admin-table::after {
    color: var(--muted);
    content: "";
    display: block;
    font-size: .82rem;
    padding: 0 14px 12px;
}

.admin-table > .empty-state {
    background: transparent;
    border: 0;
    box-shadow: none;
    margin-top: 0;
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid var(--line);
    padding: 14px;
    text-align: left;
    vertical-align: top;
    overflow-wrap: anywhere;
}

.admin-table th {
    background: var(--surface-soft);
    color: var(--muted-strong);
    font-size: .82rem;
    position: sticky;
    top: 0;
    text-transform: uppercase;
    z-index: 1;
}

.admin-table tbody tr {
    transition: background .18s ease;
}

.admin-table tbody tr:hover {
    background: #fbfdff;
}

.admin-table td span {
    color: var(--muted);
    display: block;
    margin-top: 4px;
}

.admin-title-link {
    color: var(--text);
    font-weight: 900;
    text-decoration-color: rgba(16, 42, 67, .28);
    text-underline-offset: 3px;
}

.admin-title-link:hover {
    color: var(--accent-strong);
}

.table-action-link {
    align-items: center;
    background: var(--brand-soft);
    border-radius: var(--radius);
    color: var(--brand);
    display: inline-flex;
    font-weight: 900;
    min-height: 38px;
    padding: 8px 10px;
    text-decoration: none;
}

.table-action-link:hover {
    background: #dbe7f3;
    color: var(--accent-strong);
}

.table-code {
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted-strong);
    display: block;
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
    font-size: .8rem;
    line-height: 1.5;
    max-width: 360px;
    overflow-wrap: anywhere;
    padding: 8px;
}

.mini-pill--warning,
.status-pill--warning {
    background: var(--warning-soft);
    color: var(--warning) !important;
}

.mini-pill--ok,
.status-pill--ok {
    background: var(--success-soft);
    color: var(--success) !important;
}

.status-pill--manual {
    background: #eef2ff;
    color: #3730a3 !important;
}

.quality-checks,
.admin-actions,
.inline-confirm,
.check-row,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-actions form {
    margin: 0;
}

.admin-actions {
    align-items: center;
    gap: 8px 12px;
    min-width: 180px;
}

.inline-confirm,
.check-row {
    align-items: center;
}

.inline-confirm {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 800;
    gap: 5px;
}

.inline-confirm input,
.check-row input {
    min-height: auto;
    width: auto;
}

.url-field,
.choice-grid,
.inline-upload,
.affiliate-form,
.spec-form,
.spec-edit-form,
.menu-item-form,
.image-grid,
.link-list,
.spec-list,
.menu-item-list {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

.admin-actions a:not(.button),
.link-button {
    background: transparent;
    border: 0;
    color: var(--accent-strong);
    cursor: pointer;
    font-weight: 900;
    min-height: auto;
    padding: 0;
    text-decoration: none;
}

.external-hint {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
}

.link-button--danger {
    color: var(--danger);
}

.form-section--grid {
    grid-template-columns: 1fr;
}

.choice-panel {
    padding: 14px;
}

.choice-panel h3,
.form-section h2 {
    margin: 0 0 8px;
}

.form-section > h2,
.form-section .wide-field > h2 {
    color: var(--brand-strong);
    font-size: 1.25rem;
}

.asset-preview {
    align-items: center;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
    padding: 12px;
}

.asset-preview img {
    aspect-ratio: 1200 / 630;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    object-fit: cover;
    width: 100%;
}

.asset-preview strong {
    color: var(--brand-strong);
    display: block;
    margin-bottom: 6px;
}

.asset-preview p {
    color: var(--muted);
    line-height: 1.55;
    margin: 0 0 10px;
}

.asset-preview a {
    color: var(--accent-strong);
    font-weight: 900;
    text-decoration: none;
}

.image-usage-guide {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.image-usage-guide span {
    background: var(--brand-soft);
    border-radius: 999px;
    color: var(--brand);
    font-size: .82rem;
    font-weight: 900;
    padding: 7px 10px;
}

.quality-panel {
    background:
        radial-gradient(circle at 100% 0%, rgba(249, 115, 22, .10), transparent 28%),
        var(--surface);
}

.field-error {
    color: #991b1b;
    font-weight: 800;
    margin: 0;
}

.form-actions--sticky {
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    bottom: 16px;
    box-shadow: var(--shadow);
    padding: 12px;
    position: sticky;
    z-index: 15;
}

.image-item,
.link-item,
.spec-item,
.menu-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 12px;
    padding: 12px;
}

.image-item img {
    aspect-ratio: 4 / 3;
    background: var(--brand-soft);
    border-radius: var(--radius);
    object-fit: cover;
    width: 100%;
}

.image-item p,
.link-item span {
    color: var(--muted);
    line-height: 1.5;
    margin: 6px 0 0;
}

.image-item .image-path {
    color: var(--muted-strong);
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
    font-size: .78rem;
    overflow-wrap: anywhere;
}

.link-item a {
    color: var(--accent-strong);
    display: inline-flex;
    font-weight: 900;
    margin-top: 8px;
    text-decoration: none;
}

.message-meta {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
    margin: 0;
}

.message-toolbar {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.message-meta div {
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
}

.message-meta dt {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.message-meta dd {
    margin: 6px 0 0;
}

.message-body {
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    line-height: 1.75;
    padding: 18px;
}

.wide-field {
    grid-column: 1 / -1;
}

.sr-only {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

@media (min-width: 760px) {
    .hero h1,
    .page-heading h1,
    .state-page h1 {
        font-size: 4rem;
    }

    .state-page {
        grid-template-columns: 180px minmax(0, 1fr);
        padding: 42px;
    }

    .hero {
        grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
        padding: 54px;
    }

    .hero__mark {
        display: block;
    }

    .search-panel {
        grid-template-columns: 1fr auto;
    }

    .toolbar form {
        grid-template-columns: minmax(190px, 1.2fr) minmax(145px, .8fr) minmax(145px, .8fr) minmax(145px, .8fr) auto auto;
    }

    .toolbar label {
        align-self: center;
    }

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

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

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

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

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

    .product-hero {
        grid-template-columns: minmax(0, 1fr) 320px;
        padding: 34px;
    }

    .product-hero h1 {
        font-size: 3.4rem;
    }

    .affiliate-box {
        position: sticky;
        top: 104px;
    }

    .product-detail-grid {
        align-items: start;
        grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
    }

    .pros-cons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .analysis-criteria > div {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-layout {
        grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr);
    }

    .legal-layout {
        grid-template-columns: minmax(230px, .55fr) minmax(0, 1.45fr);
    }

    .admin-auth,
    .admin-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .admin-auth {
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    }

    .form-section--grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .asset-preview {
        grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr);
    }

    .inline-upload,
    .affiliate-form,
    .spec-form,
    .menu-item-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .spec-edit-form,
    .menu-item-form--edit {
        align-items: end;
        grid-template-columns: minmax(120px, 1fr) minmax(170px, 1.4fr) minmax(90px, .5fr) minmax(90px, .5fr) auto;
    }

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

    .link-item {
        align-items: center;
        grid-template-columns: minmax(0, 1.6fr) minmax(120px, .6fr) auto;
    }

    .message-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .spec-table dl div {
        grid-template-columns: minmax(140px, .8fr) minmax(0, 1.2fr);
    }
}

@media (max-width: 900px) {
    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .brand {
        grid-column: 1;
    }

    .brand img {
        height: 46px;
        max-width: 190px;
    }

    .nav-toggle {
        background: var(--brand);
        display: inline-flex;
        grid-column: 2;
        grid-row: 1;
    }

    .header-search {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .js .main-nav {
        align-content: start;
        background: var(--surface);
        border-left: 1px solid var(--line);
        box-shadow: -24px 0 48px rgba(16, 42, 67, .18);
        display: flex;
        flex-direction: column;
        gap: 6px;
        height: 100vh;
        justify-content: flex-start;
        max-width: 340px;
        padding: 88px 22px 22px;
        position: fixed;
        right: 0;
        top: 0;
        transform: translateX(100%);
        transition: transform .22s ease;
        width: min(86vw, 340px);
        z-index: 45;
    }

    .js .main-nav a {
        font-size: 1rem;
        width: 100%;
    }

    .js .nav-close {
        align-self: flex-end;
        background: var(--brand-soft);
        color: var(--brand);
        display: inline-flex;
        margin-bottom: 10px;
        min-height: 40px;
        padding: 9px 12px;
    }

    .js.nav-open .main-nav,
    .nav-open .main-nav {
        transform: translateX(0);
    }

    .nav-backdrop {
        background: rgba(7, 27, 47, .38);
        border: 0;
        border-radius: 0;
        inset: 0;
        min-height: 0;
        padding: 0;
        position: fixed;
        z-index: 40;
    }

    .nav-open .nav-backdrop {
        display: block;
    }

    .nav-open {
        overflow: hidden;
    }
}

@media (max-width: 640px) {
    .site-header__inner,
    .site-footer__inner {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    main {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero {
        padding: 26px 20px;
    }

    .hero h1,
    .page-heading h1,
    .state-page h1 {
        font-size: 2.35rem;
    }

    .state-page img {
        max-width: 128px;
    }

    .admin-topbar,
    .section__header,
    .toolbar__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer nav,
    .form-actions,
    .hero__actions,
    .download-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .site-footer a,
    .form-actions .button,
    .form-actions button,
    .hero__actions .button,
    .download-actions .button {
        width: 100%;
    }

    .admin-topbar > form,
    .admin-topbar > .button,
    .admin-topbar__actions {
        width: 100%;
    }

    .admin-topbar > form button,
    .admin-topbar > .button {
        width: 100%;
    }

    .admin-table::after {
        content: "Desliza la tabla horizontalmente";
    }

    .form-jump-nav {
        max-height: 116px;
        overflow-y: auto;
        top: 132px;
    }

    .form-actions--sticky {
        bottom: 12px;
        gap: 8px;
        padding: 10px;
    }
}

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

/* Sora Select redesign layer. */
:root {
    --bg: #fbf7f1;
    --bg-soft: #fffdf9;
    --surface: #ffffff;
    --surface-warm: #fff9f1;
    --surface-soft: #fff9f1;
    --text: #11233b;
    --muted: #68798b;
    --muted-strong: #203a59;
    --line: #e9dfd3;
    --line-strong: #d9cbbe;
    --brand: #11233b;
    --brand-soft: #edf2f7;
    --brand-strong: #07172a;
    --accent: #e96b45;
    --accent-soft: #fff0e8;
    --accent-strong: #c94f2c;
    --blue-accent: #203a59;
    --success: #228b66;
    --success-soft: #edf8f3;
    --danger: #c94545;
    --danger-soft: #fff1ef;
    --warning: #b7791f;
    --warning-soft: #fff7e8;
    --focus: #e96b45;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 6px 18px rgba(17, 35, 59, .08);
    --shadow: 0 16px 40px rgba(17, 35, 59, .12);
}

html {
    background: var(--bg);
    color: var(--text);
}

body {
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 240, 232, .72), transparent 28rem),
        linear-gradient(180deg, #fffdf9 0, #fbf7f1 32rem, #fbf7f1 100%);
}

h1,
.hero h1,
.page-heading h1,
.state-page h1,
.product-hero h1,
.section__header h2,
.seo-band h2,
.empty-state h2 {
    color: var(--brand);
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0;
}

.site-header {
    background: rgba(255, 253, 249, .92);
    border-bottom: 1px solid rgba(233, 223, 211, .95);
    box-shadow: 0 8px 26px rgba(17, 35, 59, .04);
}

.site-header__inner {
    grid-template-columns: auto minmax(260px, 1fr) auto;
    padding-bottom: 12px;
    padding-top: 16px;
}

.site-header__nav-row {
    border-top: 1px solid rgba(233, 223, 211, .78);
    margin: 0 auto;
    max-width: var(--container);
    padding: 0 20px;
}

.brand img {
    height: 60px;
    max-width: 232px;
}

.header-search {
    border-color: var(--line);
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(17, 35, 59, .07);
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 6px;
}

.header-search::before {
    color: var(--muted);
    content: "âŒ•";
    font-size: 1.42rem;
    line-height: 1;
    padding-left: 12px;
}

.header-search {
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.header-search input {
    min-height: 44px;
}

.header-search button {
    background: var(--brand);
    border-radius: 10px;
    color: #fff;
}

.header-actions {
    align-items: center;
    display: flex;
    gap: 10px;
}

.header-actions a {
    border-radius: 10px;
    color: var(--brand);
    font-size: .78rem;
    font-weight: 800;
    max-width: 96px;
    min-height: 44px;
    padding: 8px 10px;
    text-align: center;
    text-decoration: none;
}

.header-actions a:hover,
.header-actions a:focus-visible {
    background: var(--accent-soft);
    color: var(--accent-strong);
}

.main-nav {
    justify-content: center;
    padding: 10px 0 9px;
}

.main-nav a {
    background: transparent;
    color: var(--brand);
    font-size: .88rem;
    padding: 9px 16px;
    position: relative;
}

.main-nav a:hover {
    background: var(--surface-warm);
    color: var(--accent-strong);
}

.main-nav a[aria-current="page"] {
    background: transparent;
    box-shadow: none;
    color: var(--brand);
}

.main-nav a[aria-current="page"]::after {
    background: var(--accent);
    border-radius: 999px;
    bottom: 2px;
    content: "";
    height: 3px;
    left: 18px;
    position: absolute;
    right: 18px;
}

main {
    padding-bottom: 60px;
}

.hero,
.product-hero,
.page-heading,
.section,
.seo-band,
.toolbar,
.empty-state,
.contact-form,
.taxonomy-intro,
.catalog-guidance,
.trust-strip,
.criteria-strip,
.product-card,
.product-gallery,
.product-content section,
.pros-cons > div,
.affiliate-box,
.legal-aside,
.legal-content,
.contact-panel,
.admin-auth__brand,
.admin-auth__form,
.admin-topbar,
.admin-grid article,
.admin-table,
.form-section,
.message-view,
.choice-panel {
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.hero {
    background:
        linear-gradient(135deg, rgba(255, 253, 249, .94), rgba(255, 249, 241, .92)),
        var(--surface);
    border-radius: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
    margin-top: 30px;
    padding: 52px;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5.35rem);
    line-height: .98;
    margin-bottom: 18px;
    max-width: 760px;
}

.hero__content > p:not(.eyebrow) {
    color: var(--muted-strong);
    font-size: 1.13rem;
    max-width: 560px;
}

.eyebrow {
    color: var(--accent);
    letter-spacing: .16em;
}

.hero__actions {
    margin: 26px 0 18px;
}

.hero-benefits {
    align-items: center;
    color: var(--muted-strong);
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 18px;
}

.hero-benefits span {
    align-items: center;
    display: inline-flex;
    font-size: .9rem;
    gap: 8px;
}

.hero-benefits span::before,
.review-summary span::before,
.contact-assurance span::before {
    background: var(--accent-soft);
    border: 1px solid rgba(233, 107, 69, .22);
    border-radius: 999px;
    color: var(--accent);
    content: "âœ“";
    display: inline-grid;
    flex: 0 0 auto;
    font-size: .72rem;
    font-weight: 900;
    height: 20px;
    place-items: center;
    width: 20px;
}

.quick-decision {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 20px;
}

.quick-decision article,
.affiliate-empty {
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
}

.quick-decision strong,
.affiliate-empty strong {
    color: var(--brand);
    display: block;
    font-size: .9rem;
    margin-bottom: 4px;
}

.quick-decision span,
.affiliate-empty p {
    color: var(--muted-strong);
    font-size: .88rem;
    line-height: 1.55;
}

.empty-state::before {
    background: url("../images/sora-select-mark.svg") center / contain no-repeat;
    content: "";
    display: block;
    height: 78px;
    margin-bottom: 6px;
    width: 78px;
}

.hero__mark {
    align-self: stretch;
    background:
        radial-gradient(circle at 74% 25%, rgba(233, 107, 69, .12), transparent 12rem),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    min-height: 320px;
    overflow: hidden;
    padding: 18px;
}

.hero__mark::before {
    background: var(--accent);
    border-radius: 8px;
    color: #fff;
    content: "â˜… Recomendado";
    font-size: .72rem;
    font-weight: 900;
    left: 18px;
    letter-spacing: .04em;
    padding: 8px 10px;
    position: absolute;
    text-transform: uppercase;
    top: 18px;
    z-index: 1;
}

.hero__product-image {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.hero__brand-mark {
    filter: drop-shadow(0 18px 30px rgba(17, 35, 59, .12));
    max-width: 220px;
}

.hero-featured-card {
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 12px 26px rgba(17, 35, 59, .08);
    left: 18px;
    max-width: min(54%, 320px);
    padding: 18px;
    position: absolute;
    top: 56px;
    z-index: 2;
}

.hero-featured-card h2 {
    color: var(--brand);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 2.4vw, 2.3rem);
    line-height: 1.05;
    margin: 4px 0 10px;
}

.hero-featured-card p:not(.eyebrow),
.hero-featured-card li {
    color: var(--muted-strong);
    font-size: .92rem;
    line-height: 1.55;
}

.hero-featured-card ul {
    list-style: none;
    margin: 14px 0;
    padding: 0;
}

.hero-featured-card li {
    margin-top: 7px;
    padding-left: 20px;
    position: relative;
}

.hero-featured-card li::before {
    color: var(--accent);
    content: "âœ“";
    font-weight: 900;
    left: 0;
    position: absolute;
}

.button,
button,
input[type="submit"] {
    border-radius: 10px;
    min-height: 46px;
}

.button,
.search-panel button,
.toolbar button,
.contact-form button {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 10px 22px rgba(233, 107, 69, .18);
}

.button:hover,
.search-panel button:hover,
.toolbar button:hover,
.contact-form button:hover {
    background: var(--accent-strong);
    border-color: var(--accent-strong);
}

.button--secondary {
    background: transparent;
    border-color: var(--brand);
    color: var(--brand);
}

.button--secondary:hover {
    background: var(--brand);
    color: #fff;
}

.trust-strip {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
    padding: 0;
}

.trust-strip article {
    align-items: center;
    border-right: 1px solid var(--line);
    display: grid;
    gap: 5px 16px;
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 22px;
}

.trust-strip article:last-child {
    border-right: 0;
}

.trust-strip article::before,
.criteria-strip article::before {
    background: var(--surface-warm);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--brand);
    content: "â—‡";
    display: grid;
    font-size: 1.45rem;
    grid-row: span 2;
    height: 56px;
    place-items: center;
    width: 56px;
}

.trust-strip strong,
.criteria-strip strong,
.taxonomy-intro strong {
    color: var(--brand);
}

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

.category-grid a {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 249, 241, .86)),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    min-height: 140px;
    overflow: hidden;
    padding: 22px;
    position: relative;
}

.category-grid a strong {
    color: var(--brand);
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.42rem;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.category-grid a::after {
    color: var(--accent);
    content: "Explorar â†’";
    display: block;
    font-size: .86rem;
    font-weight: 900;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.category-grid img {
    bottom: 10px;
    height: 96px;
    object-fit: contain;
    opacity: .95;
    position: absolute;
    right: 12px;
    width: 116px;
}

.criteria-strip {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0;
}

.criteria-strip article {
    display: grid;
    gap: 4px 16px;
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 22px;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.product-card__media {
    aspect-ratio: 4 / 3;
    background: var(--surface-warm);
}

.product-card h2,
.product-card h3 {
    color: var(--brand);
    font-family: Georgia, "Times New Roman", serif;
}

.product-card__placeholder,
.media-placeholder {
    background:
        radial-gradient(circle at 50% 42%, rgba(233, 107, 69, .12), transparent 8rem),
        var(--surface-warm);
    color: var(--muted-strong);
}

.product-card__placeholder img,
.media-placeholder img {
    max-width: 94px;
}

.mini-pill,
.status-pill,
.active-filters a {
    background: var(--accent-soft);
    border-color: rgba(233, 107, 69, .26);
    color: var(--accent-strong);
}

.text-link,
.section__header > a,
.legal-aside a {
    color: var(--accent-strong);
}

.toolbar,
.search-panel,
.contact-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
}

input,
textarea,
select {
    border-color: var(--line);
    border-radius: 10px;
}

.page-heading {
    background:
        linear-gradient(135deg, rgba(255, 253, 249, .96), rgba(255, 249, 241, .86)),
        var(--surface);
    border-radius: 18px;
    margin-top: 30px;
}

.page-heading h1,
.product-hero h1,
.state-page h1 {
    font-size: clamp(2.45rem, 4vw, 4.4rem);
}

.catalog-guidance,
.taxonomy-intro,
.review-summary,
.contact-assurance {
    background: transparent;
}

.product-hero {
    background:
        linear-gradient(135deg, rgba(255, 253, 249, .98), rgba(255, 249, 241, .9)),
        var(--surface);
    border-radius: 22px;
}

.affiliate-box {
    background: var(--surface);
    border-left: 4px solid var(--accent);
}

.product-gallery__main,
.product-gallery__thumbs button,
.legal-content,
.legal-aside,
.contact-panel,
.contact-form {
    border-radius: 16px;
}

.pros-cons > div:first-child {
    background: #f2fbf6;
}

.pros-cons > div:last-child {
    background: #fff7f2;
}

.spec-table dl div {
    border-color: var(--line);
}

.state-page {
    background:
        linear-gradient(135deg, rgba(255, 253, 249, .96), rgba(255, 249, 241, .86)),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.site-footer {
    background: var(--brand);
    border-top: 0;
    color: #fff;
}

.site-footer__inner {
    align-items: start;
    grid-template-columns: minmax(220px, .9fr) minmax(0, 1.6fr);
    padding-bottom: 34px;
    padding-top: 34px;
}

.site-footer__brand img {
    filter: brightness(0) invert(1);
    height: 62px;
    margin-bottom: 12px;
    max-width: 230px;
}

.site-footer p {
    color: rgba(255, 255, 255, .78);
    max-width: 360px;
}

.site-footer__columns {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer__columns div {
    display: grid;
    gap: 8px;
}

.site-footer strong {
    color: #fff;
    font-size: .9rem;
    margin-bottom: 6px;
}

.site-footer a {
    color: rgba(255, 255, 255, .78);
    font-size: .88rem;
    font-weight: 700;
    padding: 0;
}

.site-footer a:hover,
.site-footer a[aria-current="page"] {
    background: transparent;
    color: #fff;
}

.admin-auth,
.admin-shell {
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 240, 232, .72), transparent 26rem),
        var(--bg);
}

.admin-topbar,
.admin-grid article,
.admin-table,
.form-section,
.message-view,
.choice-panel,
.admin-auth__brand,
.admin-auth__form {
    background: var(--surface);
    border-color: var(--line);
    border-radius: 16px;
}

.admin-nav a[aria-current="page"],
.admin-nav a:hover {
    background: var(--accent-soft);
    color: var(--accent-strong);
}

@media (max-width: 900px) {
    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .header-actions,
    .site-header__nav-row {
        display: contents;
    }

    .header-actions a {
        display: none;
    }

    .js .main-nav {
        background: var(--surface);
        border-left-color: var(--line);
    }

    .nav-toggle {
        background: var(--brand);
        color: #fff;
    }

    .hero,
    .product-hero {
        grid-template-columns: 1fr;
        padding: 30px 22px;
    }

    .hero__mark {
        min-height: 240px;
    }

    .hero-featured-card {
        max-width: none;
        position: relative;
        top: auto;
        left: auto;
    }

    .quick-decision {
        grid-template-columns: 1fr;
    }

    .trust-strip,
    .criteria-strip,
    .category-grid,
    .site-footer__inner,
    .site-footer__columns {
        grid-template-columns: 1fr;
    }

    .trust-strip article {
        border-bottom: 1px solid var(--line);
        border-right: 0;
    }

    .trust-strip article:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    .brand img {
        height: 50px;
        max-width: 198px;
    }

    .hero h1 {
        font-size: 2.65rem;
    }

    .page-heading h1,
    .product-hero h1,
    .state-page h1 {
        font-size: 2.35rem;
    }

    .hero-benefits {
        align-items: flex-start;
        flex-direction: column;
    }
}

.catalog-results-head {
    align-items: end;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin: 30px 0 16px;
}

.catalog-results-head h2 {
    color: var(--brand);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.05;
    margin: 0;
}

.product-card__badges {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 26px;
}

.product-card__footer {
    align-items: center;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
}

.product-card__footer span {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 800;
}

.panel-mark {
    background: var(--surface-warm);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 18px;
    height: 72px;
    margin-bottom: 18px;
    padding: 10px;
    width: 72px;
}

.form-heading {
    border-bottom: 1px solid var(--line);
    margin-bottom: 6px;
    padding-bottom: 12px;
}

.form-heading h2 {
    color: var(--brand);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.12;
    margin: 0;
}

.legal-pending {
    background: var(--surface-warm);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
}

.legal-pending strong {
    color: var(--brand);
    display: block;
    margin-bottom: 8px;
}

.admin-topbar {
    position: relative;
}

.admin-topbar__mark {
    background: var(--surface-warm);
    border: 1px solid var(--line);
    border-radius: 18px;
    flex: 0 0 auto;
    height: 76px;
    padding: 10px;
    width: 76px;
}

.admin-metric {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 249, 241, .88)),
        var(--surface);
    border-color: var(--line);
    border-radius: 16px;
}

.admin-metric strong {
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
}

.admin-grid article {
    overflow: hidden;
    position: relative;
}

.module-kicker {
    color: rgba(233, 107, 69, .34);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    position: absolute;
    right: 18px;
    top: 12px;
}

.module-actions {
    position: relative;
    z-index: 1;
}

.module-actions a {
    border-color: var(--line);
}

.module-actions a:hover {
    background: var(--accent-soft);
    border-color: rgba(233, 107, 69, .32);
    color: var(--accent-strong);
}

.admin-tabs {
    background: rgba(255, 255, 255, .76);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 8px;
}

.admin-tabs a {
    background: transparent;
    border: 1px solid transparent;
    color: var(--muted-strong);
}

.admin-tabs a.is-active {
    background: var(--accent-soft);
    border-color: rgba(233, 107, 69, .28);
    color: var(--accent-strong);
}

.admin-guide article {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 249, 241, .84)),
        var(--surface);
    position: relative;
}

.admin-guide article::before {
    background: var(--accent);
    border-radius: 999px;
    content: "";
    height: 8px;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 8px;
}

.admin-table {
    border-radius: 18px;
}

.admin-table th {
    background: var(--surface-warm);
    color: var(--brand);
}

.admin-table tbody tr:hover {
    background: #fffaf3;
}

.form-section {
    overflow: hidden;
    position: relative;
}

.form-section > h2:first-child,
.form-section .wide-field h2 {
    color: var(--brand);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.12;
}

.form-section::before {
    background: linear-gradient(180deg, var(--accent), rgba(233, 107, 69, .15));
    border-radius: 999px;
    content: "";
    height: 42px;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 4px;
}

.form-jump-nav {
    border-radius: 16px;
    padding: 8px;
}

.form-jump-nav a {
    background: transparent;
    border: 1px solid transparent;
    color: var(--muted-strong);
}

.form-jump-nav a:hover {
    background: var(--accent-soft);
    border-color: rgba(233, 107, 69, .24);
    color: var(--accent-strong);
}

.form-actions--sticky {
    border-radius: 16px;
}

@media (max-width: 640px) {
    .admin-topbar__mark {
        height: 64px;
        width: 64px;
    }
}

@media (max-width: 640px) {
    .catalog-results-head,
    .product-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

.amazon-affiliate-generator {
    background: linear-gradient(135deg, #fffaf3, #ffffff);
    border: 1px solid #eadacd;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(18, 32, 51, .08);
    display: grid;
    gap: 16px;
    padding: 18px;
}

.amazon-affiliate-generator__header {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: 132px 1fr;
}

.amazon-affiliate-generator__header img {
    background: #050505;
    border-radius: 12px;
    height: 58px;
    object-fit: contain;
    padding: 8px;
    width: 132px;
}

.amazon-affiliate-generator__header strong {
    color: var(--brand);
    display: block;
    font-size: 1rem;
}

.amazon-affiliate-generator__header span {
    color: var(--muted);
    display: block;
    font-size: .88rem;
    margin-top: 3px;
}

.affiliate-generator-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, .6fr);
}

.affiliate-generator-grid .wide-field {
    grid-column: 1 / -1;
}

.affiliate-generator-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.amazon-affiliate-generator .form-note.is-error {
    color: #b42318;
    font-weight: 800;
}

.affiliate-offer-button {
    margin-top: 10px;
    width: 100%;
}

.affiliate-offer-button--amazon {
    background: #070707 !important;
    border-color: #070707 !important;
    color: #fff !important;
    display: grid !important;
    gap: 10px !important;
    grid-template-columns: minmax(86px, 128px) 1fr !important;
    min-height: 70px !important;
    padding: 9px 16px 9px 10px !important;
    text-align: left;
}

.affiliate-offer-button--amazon img {
    border-radius: 8px;
    height: 48px;
    object-fit: contain;
    width: 100%;
}

.affiliate-offer-button--amazon span {
    align-items: center;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
}

@media (max-width: 720px) {
    .affiliate-generator-grid,
    .amazon-affiliate-generator__header {
        grid-template-columns: 1fr;
    }

    .affiliate-offer-button--amazon {
        grid-template-columns: 1fr !important;
        justify-items: center;
        text-align: center;
    }
}

.amazon-affiliate-generator__header img {
    background: transparent;
    border-radius: 0;
    height: 64px;
    object-fit: contain;
    padding: 0;
    width: 140px;
}

.affiliate-offer-button--amazon {
    background: #fff !important;
    border: 1px solid #eadacd !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 28px rgba(18, 32, 51, .08) !important;
    color: var(--brand) !important;
    display: grid !important;
    gap: 8px !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    min-height: 0 !important;
    padding: 12px !important;
    text-align: center !important;
}

.affiliate-offer-button--amazon img {
    background: transparent !important;
    border-radius: 0 !important;
    height: auto !important;
    max-height: 74px !important;
    object-fit: contain !important;
    width: min(100%, 220px) !important;
}

.affiliate-offer-button--amazon span {
    color: var(--brand) !important;
    display: block !important;
    font-size: .95rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
}

.affiliate-offer-stack {
    align-items: flex-start;
    display: grid;
    gap: 8px;
}

.affiliate-mini-label {
    align-self: start;
    background: #fff7ed;
    border: 1px solid #eadacd;
    border-radius: 999px;
    color: #6b7280;
    display: inline-flex;
    font-size: .72rem;
    font-weight: 900;
    justify-self: end;
    line-height: 1;
    padding: 7px 10px;
    white-space: nowrap;
}

.affiliate-box .affiliate-offer-stack .affiliate-offer-button--amazon {
    min-height: 156px !important;
    padding: 18px 16px 20px !important;
}

.affiliate-box .affiliate-offer-stack .affiliate-offer-button--amazon img {
    max-height: 98px !important;
    width: min(100%, 280px) !important;
}

.affiliate-box .affiliate-offer-stack .affiliate-offer-button--amazon span {
    font-size: 1.16rem !important;
}

@media (max-width: 560px) {
    .affiliate-mini-label {
        justify-self: start;
    }

    .affiliate-box .affiliate-offer-stack .affiliate-offer-button--amazon {
        min-height: 138px !important;
    }
}

.product-content .product-accordion {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.product-content .product-accordion + .product-accordion {
    margin-top: 14px;
}

.product-accordion summary {
    align-items: center;
    color: var(--brand);
    cursor: pointer;
    display: flex;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 800;
    justify-content: space-between;
    line-height: 1.1;
    list-style: none;
    padding: 20px 22px;
}

.product-accordion summary::-webkit-details-marker {
    display: none;
}

.product-accordion summary::after {
    align-items: center;
    background: #fff7ed;
    border: 1px solid #eadacd;
    border-radius: 999px;
    color: var(--accent);
    content: "+";
    display: inline-flex;
    flex: 0 0 30px;
    font-family: Inter, Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    height: 30px;
    justify-content: center;
    line-height: 1;
    margin-left: 16px;
    width: 30px;
}

.product-accordion[open] summary {
    border-bottom: 1px solid var(--line);
}

.product-accordion[open] summary::after {
    content: "−";
}

.product-accordion__body {
    padding: 20px 22px 22px;
}

.product-accordion__body > :first-child {
    margin-top: 0;
}

.product-accordion__body > :last-child {
    margin-bottom: 0;
}

.product-accordion.pros-cons .product-accordion__body,
.product-accordion.analysis-criteria .product-accordion__body {
    display: grid;
    gap: 16px;
}

.product-accordion.analysis-criteria .product-accordion__body {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 760px) {
    .product-accordion.analysis-criteria .product-accordion__body {
        grid-template-columns: 1fr;
    }
}
