:root {
    --ink: #172033;
    --muted: #667085;
    --line: #e5e7eb;
    --soft: #f7f7f5;
    --paper: #ffffff;
    --green: #0f766e;
    --red: #b42318;
    --amber: #a15c07;
    --blue: #2563eb;
    --deal: #f1f5f9;
    --outline: #e5e7eb;
    --mint: #f0fdfa;
    --sky: #eff6ff;
    --coral: #fff7ed;
    --lilac: #f5f3ff;
    --shadow: 0 12px 28px rgba(17, 32, 51, .08);
    --shadow-soft: 0 8px 20px rgba(17, 32, 51, .06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--soft);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(90%, 1360px); margin: 0 auto; }
.eyebrow {
    display: inline-block;
    color: var(--green);
    font-weight: 800;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

h1, h2, h3 { letter-spacing: 0; }
h1 { font-size: 2.15rem; line-height: 1.14; margin: 0; }
h2 { font-size: 1.35rem; line-height: 1.22; margin: 0; }
h3 { font-size: 1rem; line-height: 1.28; margin: 0; }
p { color: var(--muted); }

.btn, button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid var(--ink);
    border-radius: 6px;
    padding: 0 16px;
    background: var(--ink);
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}
.btn.secondary { background: #fff; color: var(--ink); }
.btn.danger { background: var(--red); border-color: var(--red); }
.btn.small { min-height: 36px; padding: 0 12px; font-size: .9rem; }
.btn:hover, button.btn:hover {
    box-shadow: 0 10px 22px rgba(24, 33, 47, .12);
    transform: translateY(-1px);
}
.plain-link, .text-link { color: var(--blue); font-weight: 750; }
.plain-link.inline { display: inline; padding: 0; }
.text-button {
    border: 0;
    background: transparent;
    color: var(--blue);
    font-weight: 800;
    padding: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 10px rgba(24, 33, 47, .04);
    backdrop-filter: blur(14px);
}
.header-inner {
    display: grid;
    grid-template-columns: 154px minmax(260px, 720px) auto;
    gap: 14px;
    align-items: center;
    min-height: 92px;
    padding: 8px 0;
}
.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 154px;
    height: 82px;
}
.brand img { width: 154px; height: 82px; object-fit: contain; }
.header-search, .hero-search, .wide-search {
    position: relative;
    display: flex;
    gap: 8px;
    width: 100%;
}
.header-search {
    max-width: 720px;
    justify-self: start;
}
.header-search input, .hero-search input, .wide-search input,
.auth-form input, .modal-card input {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0 13px;
    background: #fff;
    color: var(--ink);
    transition: border-color .16s ease, box-shadow .16s ease;
}
.header-search input:focus, .hero-search input:focus, .wide-search input:focus,
.auth-form input:focus, .modal-card input:focus,
.auto-compare-search input:focus,
.admin-filters input:focus, .admin-filters select:focus,
.admin-panel textarea:focus, .admin-panel input:focus, .admin-panel select:focus {
    outline: 0;
    border-color: #98b6ee;
    box-shadow: 0 0 0 3px rgba(23, 92, 211, .13);
}
.header-search button, .hero-search button, .wide-search button {
    border: 0;
    border-radius: 6px;
    padding: 0 18px;
    background: #12715b;
    color: #fff;
    font-weight: 800;
}
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.header-actions form { margin: 0; }
.account-link {
    color: var(--ink);
    font-weight: 800;
    white-space: nowrap;
}

.header-action-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    object-fit: contain;
}
.menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    display: inline-grid;
    place-items: center;
    padding: 9px;
}
.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
}
.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 38;
    background: rgba(15, 23, 42, .42);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}
.menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}
.menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 39;
    width: min(420px, 92vw);
    height: 100vh;
    overflow: auto;
    padding: 18px;
    background: #fff;
    border-left: 1px solid var(--line);
    box-shadow: -22px 0 50px rgba(15, 23, 42, .16);
    transform: translateX(100%);
    transition: transform .24s ease;
}
.menu-panel.active { transform: translateX(0); }
.menu-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.menu-panel-head strong {
    font-size: 1.15rem;
}
.menu-close, .drawer-close {
    position: relative;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}
.menu-close::before, .menu-close::after,
.drawer-close::before, .drawer-close::after {
    content: "";
    position: absolute;
    top: 17px;
    left: 10px;
    width: 16px;
    height: 2px;
    background: var(--ink);
}
.menu-close::before, .drawer-close::before { transform: rotate(45deg); }
.menu-close::after, .drawer-close::after { transform: rotate(-45deg); }
.main-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}
.main-nav a {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--line);
    color: #344054;
    font-size: .94rem;
    font-weight: 750;
}
.main-nav a:hover { background: var(--soft); color: var(--ink); }
.menu-account-links {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
}
.menu-account-links a, .menu-account-links button {
    width: 100%;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.search-results {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    z-index: 35;
}
.search-results.active { display: block; }
.search-results a {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid var(--line);
}
.search-results a:last-child { border-bottom: 0; }
.search-results img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    background: var(--soft);
    border-radius: 6px;
}
.search-results small { display: block; color: var(--muted); }

.store-hero {
    background: #fff;
}
.store-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 28px;
    align-items: center;
    padding: 34px 0;
}
.store-hero-copy h1 {
    margin: 8px 0 10px;
    max-width: 680px;
    font-size: 2.35rem;
}
.store-hero-copy p {
    margin: 0 0 22px;
    max-width: 640px;
    font-size: 1rem;
}
.hero-search { max-width: 760px; }
.hero-deals {
    display: grid;
    gap: 10px;
}
.hero-deals a {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    background: #fff;
}
.hero-deals img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    background: var(--soft);
    border-radius: 6px;
}
.hero-deals span {
    min-width: 0;
    font-weight: 750;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.hero-deals strong { color: var(--red); white-space: nowrap; }

.category-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(156px, 178px);
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 4px 2px 12px;
    margin: 0;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    margin: 28px 0;
}
.category-rail-section { margin-top: 26px; }
.category-tile {
    min-height: 142px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 14px;
    display: grid;
    align-content: center;
    gap: 9px;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.category-tile:hover, .product-card:hover, .brand-bubble:hover {
    border-color: #b9c5d4;
    box-shadow: 0 10px 22px rgba(24, 33, 47, .08);
    transform: translateY(-1px);
}
.category-tile img {
    height: 70px;
    width: 100%;
    object-fit: contain;
}
.category-tile span { font-weight: 850; }
.category-tile small { color: var(--muted); }
.category-tile.large { min-height: 168px; }
.category-tile.view-all {
    background: var(--ink);
    color: #fff;
    text-align: center;
}

.section-heading {
    margin: 30px 0 16px;
}
.section-heading h1, .section-heading h2 {
    margin: 4px 0 0;
}
.section-heading.compact { margin: 22px 0 12px; }
.with-link {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
}
.with-link > a {
    color: var(--blue);
    font-weight: 850;
    white-space: nowrap;
}
.brand-section { margin: 28px 0; }
.brand-rail, .product-rail {
    display: grid;
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    gap: 14px;
    padding: 2px 2px 12px;
    scrollbar-width: thin;
}
.brand-rail { grid-auto-columns: 124px; }
.product-rail { grid-auto-columns: minmax(190px, 210px); }
.brand-bubble {
    display: grid;
    justify-items: center;
    gap: 9px;
    min-height: 132px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 13px 10px;
    text-align: center;
    font-weight: 800;
    font-size: .9rem;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.brand-logo {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--soft);
    color: var(--blue);
    font-weight: 900;
}
.brand-logo img {
  
    object-fit: contain;
}
.brand-bubble span:last-child {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.brand-view-all { background: var(--soft); }

.card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
.product-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    min-width: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    box-shadow: 0 4px 14px rgba(24, 33, 47, .04);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 184px;
    background: #fbfcff;
    border-bottom: 1px solid var(--line);
}
.card-media img {
    width: 100%;
    height: 164px;
    object-fit: contain;
    padding: 10px;
}
.card-body {
    padding: 13px;
    display: grid;
    gap: 8px;
    align-content: start;
}
.card-brand {
    color: var(--green);
    font-size: .8rem;
    font-weight: 850;
}
.card-body h3 {
    min-height: 50px;
    font-size: .96rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.card-price {
    font-weight: 900;
    color: var(--red);
    font-size: 1.06rem;
}
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 24px;
}
.card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    border: 1px solid #ffe2a8;
    border-radius: 999px;
    background: #fff8e1;
    color: #704400;
    padding: 0 8px;
    font-size: .78rem;
    font-weight: 850;
}
.card-actions {
    display: grid;
    gap: 8px;
    margin-top: 2px;
}
.card-action { width: 100%; }
.catalog-grid { margin-top: 12px; }
.empty-state {
    grid-column: 1 / -1;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    background: var(--soft);
}

.page-shell { padding: 26px 0 56px; }
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: .92rem;
    margin: 12px 0 20px;
}
.archive-header {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    padding: 12px 0 8px;
}
.archive-header h1, .pdp-heading h1, .car-info h1, .comparison-hero h1, .article-card h1 {
    margin: 6px 0 8px;
    font-size: 2rem;
    line-height: 1.16;
}
.archive-header p, .pdp-heading p, .car-info p { color: var(--muted); margin: 0; }
.archive-search, .category-search { margin: 16px 0 18px; max-width: 760px; }
.term-strip { margin: 22px 0; }
.term-strip h2 { font-size: 1.2rem; }
.term-pills, .term-strip div.term-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.term-pills a, .term-strip a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    background: #fff;
    color: #344054;
    font-weight: 750;
}
.term-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
}
.term-card-rail {
    grid-auto-flow: column;
    grid-auto-columns: minmax(174px, 204px);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 4px 2px 12px;
}
.term-card {
    display: grid;
    gap: 10px;
    align-content: start;
    min-height: 178px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    background: #fff;
    font-weight: 850;
}
.term-card:hover {
    border-color: #b9c5d4;
    box-shadow: 0 10px 22px rgba(24, 33, 47, .08);
}
.term-card-media {
    display: grid;
    place-items: center;
    height: 92px;
    border-radius: 6px;
    background: var(--soft);
    overflow: hidden;
}
.term-card-media img {
    width: 100%;
    height: 92px;
    object-fit: contain;
    padding: 8px;
}
.term-card small {
    color: var(--muted);
    font-weight: 700;
}
.category-nav .term-card-rail {
    grid-auto-columns: minmax(230px, 264px);
    gap: 20px;
}
.category-nav .term-card {
    min-height: 256px;
    border-radius: 999px;
    padding: 12px 18px 26px;
    align-content: start;
    overflow: hidden;
}
.category-nav .term-card-media {
    height: 120px;
    border-radius: 7px;
    background: #f8fafc;
}
.category-nav .term-card-media img {
    height: 120px;
    padding: 10px;
}
.category-nav .term-card > span:not(.term-card-media) {
    color: #344054;
    font-size: 1.04rem;
    line-height: 1.45;
}
.category-nav .term-card small {
    color: #667085;
    font-size: .92rem;
    font-weight: 850;
}
.category-list-section {
    margin: 34px 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}
.category-block {
    margin: 34px 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}
.about-block {
    margin: 32px 0 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.product-layout, .comparison-layout, .article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 22px;
    padding: 24px 0 36px;
    align-items: start;
}
.product-layout-wide, .comparison-layout-wide { grid-template-columns: 1fr; }
.pdp-commerce {
    display: grid;
    grid-template-columns: minmax(280px, 440px) minmax(0, 1fr) 330px;
    gap: 18px;
    align-items: start;
    margin-bottom: 20px;
}
.pdp-gallery-card, .pdp-summary-card, .pdp-buybox {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 14px rgba(24, 33, 47, .04);
    transition: box-shadow .16s ease, border-color .16s ease;
}
.pdp-gallery-card {
    position: sticky;
    top: 106px;
    display: grid;
    place-items: center;
    min-height: 520px;
    padding: 22px;
}
.pdp-gallery-card img {
    width: 100%;
    height: 460px;
    object-fit: contain;
}
.pdp-mobile-image,
.pdp-mobile-price,
.mobile-sticky-compare {
    display: none;
}
.pdp-summary-card {
    display: grid;
    gap: 14px;
    padding: 18px;
}
.pdp-summary-card h1 {
    font-size: 1.75rem;
    line-height: 1.18;
}
.pdp-summary-card p {
    margin: 0;
}
.pdp-brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--green);
    font-weight: 850;
}
.pdp-brand-chip img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    border-radius: 999px;
}
.pdp-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.pdp-highlight-grid div {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--soft);
    padding: 10px;
}
.pdp-highlight-grid span {
    display: block;
    color: var(--muted);
    font-size: .84rem;
}
.pdp-highlight-grid strong {
    display: block;
    margin-top: 4px;
}
.pdp-buybox {
    position: sticky;
    top: 106px;
    padding: 16px;
}
.pdp-buybox .price-box {
    margin-top: 0;
}
.buybox-note {
    display: grid;
    gap: 4px;
    margin-top: 14px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}
.buybox-note span {
    color: var(--muted);
}
.auto-compare-card {
    display: grid;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 14px;
}
.auto-compare-card h2 {
    font-size: 1.12rem;
    margin: 4px 0 0;
}
.auto-compare-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}
.auto-compare-search input {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0 12px;
}
.auto-compare-search button {
    border: 1px solid var(--green);
    border-radius: 6px;
    background: var(--green);
    color: #fff;
    font-weight: 850;
    padding: 0 14px;
}
.auto-compare-search button:disabled {
    border-color: #e3e8ef;
    background: #e3e8ef;
    color: #ffffff;
    cursor: not-allowed;
}
.auto-compare-results {
    display: grid;
    gap: 8px;
}
.auto-compare-result {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    padding: 8px;
    text-align: left;
}
.auto-compare-result.is-selected,
.auto-compare-result:hover {
    border-color: rgba(17, 115, 93, .45);
    background: var(--soft);
}
.auto-compare-result-thumb {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
}
.auto-compare-result-thumb img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.auto-compare-result-meta {
    display: grid;
    gap: 2px;
    min-width: 0;
}
.auto-compare-result-meta strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.auto-compare-result-meta small,
.compare-message {
    color: var(--muted);
    font-size: .86rem;
}
.pdp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
    margin: 18px 0;
}
.gallery-panel, .buy-panel, .car-media, .car-info, .panel, .side-card, .auth-card,
.admin-panel, .metric {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 14px rgba(24, 33, 47, .04);
}
.gallery-panel, .buy-panel, .car-media, .car-info, .panel { padding: 18px; }
.gallery-panel img {
    height: 420px;
    width: 100%;
    object-fit: contain;
}
.brand-chip, .status-pill {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--green);
    font-weight: 850;
}
.price-box {
    margin: 18px 0;
    border: 1px solid #fedf89;
    background: #fffdf6;
    border-radius: 8px;
    padding: 16px;
}
.price-box span { display: block; color: var(--muted); }
.price-box strong {
    display: block;
    font-size: 1.65rem;
    color: var(--red);
    margin: 4px 0;
}
.price-box del { color: var(--muted); margin-right: 8px; }
.price-box em { color: var(--green); font-style: normal; font-weight: 850; }
.actions-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.variant-list { margin-top: 18px; }
.variant-list h2 { font-size: 1.05rem; margin-bottom: 10px; }
.variant-list span {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 7px 10px;
    margin: 0 6px 6px 0;
}
.software-plan-sections {
    display: grid;
    gap: 20px;
}
.plan-tabs-wrap {
    margin: 0 0 16px;
}
.plan-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}
.plan-tabs button {
    flex: 0 0 auto;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 0 14px;
    color: #344054;
    font-weight: 850;
    cursor: pointer;
}
.plan-tabs button.active {
    border-color: #111827;
    background: #111827;
    color: #fff;
}
.plan-comparison-sections {
    display: grid;
    gap: 16px;
}
.plan-comparison-section {
    display: grid;
    gap: 14px;
}
.plan-comparison-section[hidden] {
    display: none !important;
}
.plan-comparison-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
    gap: 18px;
    align-items: end;
}
.plan-comparison-head h3 {
    margin: 2px 0 0;
    font-size: 1.16rem;
}
.plan-comparison-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}
.plan-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}
.plan-pricing-table {
    width: 100%;
    min-width: 820px;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    font-size: .9rem;
}
.plan-pricing-table th,
.plan-pricing-table td {
    min-width: 158px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    padding: 13px;
    text-align: center;
    vertical-align: middle;
}
.plan-pricing-table th:first-child,
.plan-pricing-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    min-width: 220px;
    max-width: 280px;
    background: #fff;
    text-align: left;
    color: #344054;
    font-weight: 850;
}
.plan-pricing-table thead th {
    background: #f8fafc;
    vertical-align: top;
}
.plan-pricing-table thead th:first-child {
    z-index: 3;
    background: #f8fafc;
    color: #475467;
    font-size: .78rem;
    text-transform: uppercase;
}
.plan-pricing-table tr:last-child td {
    border-bottom: 0;
}
.plan-pricing-table .plan-row-section td,
.plan-pricing-table .plan-row-section td:first-child {
    position: static;
    min-width: 0;
    max-width: none;
    background: #f8fafc;
    color: #475467;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .02em;
    text-align: left;
    text-transform: uppercase;
}
.plan-pricing-table th:last-child,
.plan-pricing-table td:last-child {
    border-right: 0;
}
.plan-name,
.plan-price {
    display: block;
}
.plan-name {
    color: #111827;
    font-size: .98rem;
    font-weight: 900;
    line-height: 1.25;
}
.plan-price {
    margin-top: 8px;
    color: #111827;
    font-size: 1.1rem;
    line-height: 1.15;
}
.plan-pricing-table small,
.plan-pricing-table em {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: .78rem;
    font-style: normal;
    line-height: 1.35;
}
.plan-pricing-table .btn {
    width: 100%;
    margin-top: 10px;
}
.plan-support {
    display: inline-grid;
    place-items: center;
    min-width: 34px;
    min-height: 30px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #98a2b3;
    font-weight: 900;
}
.plan-support.yes {
    border-color: #99f6e4;
    background: #f0fdfa;
    color: var(--green);
}
.plan-value {
    display: inline-block;
    max-width: 220px;
    color: #344054;
    font-size: .88rem;
    font-weight: 750;
    line-height: 1.35;
}
.plan-card-fallback-grid {
    display: none;
}
.hosting-product-page .pdp-commerce {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) 310px;
}
.hosting-product-page .pdp-gallery-card {
    min-height: 280px;
    padding: 22px;
}
.hosting-product-page .pdp-gallery-card img {
    max-width: 220px;
    height: 190px;
}
.hosting-product-page .pdp-summary-card {
    gap: 16px;
}
.hosting-product-page .pdp-summary-card h1 {
    font-size: 2rem;
}
.hosting-product-page .pdp-highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hosting-product-page #plan.panel {
    padding: 22px;
}
.hosting-product-page .plan-tabs-wrap {
    border: 0;
    background: transparent;
    padding: 0;
}
.hosting-product-page .plan-tabs {
    gap: 10px;
    padding: 2px 2px 8px;
}
.hosting-product-page .plan-tabs button {
    min-height: 44px;
    border-radius: 6px;
    background: #f8fafc;
}
.hosting-product-page .plan-tabs button.active {
    border-color: #111827;
    background: #111827;
    color: #fff;
}
.hosting-product-page .plan-comparison-head {
    align-items: start;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fafc;
    padding: 14px;
}
.hosting-product-page .plan-table-wrap {
    border-radius: 8px;
}
.hosting-product-page .plan-pricing-table {
    min-width: 900px;
}
.hosting-product-page .plan-pricing-table th,
.hosting-product-page .plan-pricing-table td {
    padding: 15px;
}
.hosting-product-page .plan-pricing-table thead th:not(:first-child) {
    background: #fff;
}
.hosting-product-page .plan-price {
    font-size: 1.22rem;
}
.plan-type-picker,
.plan-fit-finder {
    display: grid;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fafb;
    padding: 12px;
    margin-bottom: 16px;
}
.plan-type-picker h3,
.plan-fit-finder h3 {
    margin: 0;
    font-size: 1rem;
}
.plan-group-filter,
.plan-feature-filter {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
}
.plan-group-filter button,
.plan-feature-filter button {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    min-height: 36px;
    padding: 0 12px;
    font-weight: 800;
    color: var(--ink);
    cursor: pointer;
}
.plan-group-filter button.active,
.plan-feature-filter button.active {
    border-color: var(--green);
    background: #e7f6f1;
    color: var(--green);
}
.software-plan-group {
    display: grid;
    gap: 12px;
}
.software-plan-group h3 {
    margin: 0;
    font-size: 1rem;
}
.software-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.software-plan-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 14px;
    transition: opacity .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.software-plan-card.is-plan-match {
    border-color: var(--green);
    box-shadow: 0 12px 28px rgba(18, 113, 91, .12);
}
.software-plan-card.is-plan-muted {
    opacity: .48;
}
.software-plan-top {
    display: grid;
    gap: 4px;
}
.software-plan-top span {
    color: var(--green);
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
}
.software-plan-top h4 {
    margin: 0;
    font-size: 1.08rem;
}
.software-plan-top strong {
    font-size: 1.28rem;
}
.software-plan-top small {
    color: var(--muted);
}
.software-plan-top p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.35;
}
.plan-match-note {
    border-radius: 6px;
    background: #e7f6f1;
    color: var(--green);
    font-size: .82rem;
    font-weight: 850;
    padding: 7px 9px;
}
.software-plan-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.software-plan-card li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.4;
}
.software-plan-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .58em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--green);
}
.software-plan-card .btn {
    margin-top: auto;
    width: 100%;
}
.plan-mini-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.plan-mini-specs span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 8px;
    color: var(--muted);
    font-size: .8rem;
    font-weight: 750;
}
.plan-upgrade-details {
    border-top: 1px solid var(--line);
    padding-top: 10px;
}
.plan-upgrade-details summary {
    cursor: pointer;
    font-weight: 900;
}
.plan-feature-matrix {
    margin-top: 20px;
}
.plan-feature-matrix h3 {
    margin: 0 0 10px;
    font-size: 1rem;
}
.plan-feature-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
}
.plan-feature-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    background: #fff;
    font-size: .9rem;
}
.plan-feature-table th,
.plan-feature-table td {
    border-bottom: 1px solid var(--line);
    padding: 10px;
    text-align: left;
}
.plan-feature-table th {
    background: #f8fafb;
    font-size: .78rem;
    text-transform: uppercase;
    color: var(--muted);
}
.plan-feature-table tr:last-child td {
    border-bottom: 0;
}
.panel { margin-bottom: 18px; }
.panel-heading {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}
.retailer-table, .variants-table, .compare-table {
    display: grid;
    gap: 0;
    overflow-x: auto;
}
.retailer-row, .variant-row, .compare-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    min-width: 620px;
    border-bottom: 1px solid var(--line);
}
.variant-row { grid-template-columns: 1.4fr 1fr 1.6fr .8fr .9fr; }
.compare-scroll {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 14px rgba(24, 33, 47, .04);
}
.compare-table {
    min-width: max(720px, calc(180px + (var(--compare-columns, 2) * 220px)));
    overflow: visible;
}
.compare-row {
    grid-template-columns: minmax(160px, .72fr) repeat(var(--compare-columns, 2), minmax(180px, 1fr));
}
.retailer-row > span, .variant-row > span, .compare-row > span {
    min-width: 0;
    overflow-wrap: anywhere;
    padding: 12px;
}
.seller {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.seller img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
}
.price-cell {
    display: grid;
    gap: 2px;
}
.price-cell .offer {
    color: var(--red);
    font-weight: 900;
}
.price-cell .mrp {
    color: var(--muted);
    text-decoration: line-through;
}
.price-cell .discount {
    color: var(--green);
    font-weight: 800;
}
.head { font-weight: 900; background: var(--soft); }
.compare-row.head {
    position: sticky;
    top: 0;
    z-index: 1;
}
.compare-row > span:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #fff;
    border-right: 1px solid var(--line);
    font-weight: 850;
}
.compare-row.head > span {
    background: var(--soft);
}
.compare-row.head > span:first-child {
    z-index: 2;
}

.compare-best-deal-row > span {
    align-content: center;
}

.compare-best-deal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border: 1px solid #ff5a1f;
    border-radius: 10px;
    background: #ff5a1f;
    color: #fff;
    padding: 0 14px;
    font: inherit;
    font-size: .88rem;
    font-weight: 900;
    white-space: nowrap;
}

.compare-best-deal-btn:hover {
    box-shadow: 0 10px 20px rgba(255, 90, 31, .16);
    transform: translateY(-1px);
}
.spec-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.spec-table div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
}
.spec-table span { color: var(--muted); }
.entry-content { overflow-wrap: anywhere; }
.entry-content img { height: auto; }
.buying-guide p {
    margin: 8px 0 12px;
}
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px;
}
.guide-grid span {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--soft);
    padding: 10px 12px;
    font-weight: 750;
}
.sidebar { display: grid; gap: 16px; }
.side-card { padding: 16px; }
.side-card h2 { font-size: 1rem; margin: 0 0 10px; }
.side-link {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}
.side-link img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    background: var(--soft);
    border-radius: 6px;
}
.plain-link { display: block; padding: 7px 0; }
.rating-widget {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    color: var(--muted);
}
.rating-stars { display: flex; gap: 2px; }
.rating-stars button {
    border: 0;
    background: transparent;
    color: var(--amber);
    font-size: 1.15rem;
    cursor: pointer;
    padding: 0 1px;
}
.car-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 18px;
    margin-bottom: 22px;
}
.car-media img {
    height: 400px;
    width: 100%;
    object-fit: contain;
}
.spec-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.spec-pills span {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px;
    color: var(--muted);
}
.spec-pills b { display: block; color: var(--ink); }
.comparison-hero {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
}
.comparison-panel h2 { margin: 18px 0 10px; }
.comparison-featured-image {
    width: 100%;
    max-height: 460px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    margin-bottom: 16px;
}
.compare-row img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}
.article-card { min-width: 0; }
.article-image {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    background: var(--soft);
    border-radius: 8px;
    margin: 16px 0;
}

.compare-drawer {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(15, 23, 42, .48);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}
.compare-drawer.open {
    opacity: 1;
    pointer-events: auto;
}
.compare-drawer-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: min(540px, 94vw);
    height: 100%;
    margin-left: auto;
    overflow: auto;
    padding: 22px;
    background: #fff;
    box-shadow: -22px 0 56px rgba(15, 23, 42, .2);
    transform: translateX(100%);
    transition: transform .24s ease;
}
.compare-drawer.open .compare-drawer-panel {
    transform: translateX(0);
}
.drawer-close {
    align-self: flex-end;
    flex: 0 0 auto;
}
.drawer-header h3,
.drawer-header p {
    margin: 0;
}
.drawer-header p {
    margin-top: 4px;
}
.drawer-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.drawer-variant-btn {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 8px 12px;
    color: var(--ink);
    font-weight: 800;
}
.drawer-variant-btn.active {
    border-color: var(--green);
    background: #eef8f5;
    color: var(--green);
}
.drawer-table .retailer-row {
    min-width: 0;
}

.pagination-wrap { margin: 26px 0 0; }
.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0 12px;
    background: #fff;
    color: var(--ink);
    font-weight: 800;
}
.page-link.active {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}
.page-link.disabled {
    color: var(--muted);
    background: var(--soft);
    cursor: default;
}
.pagination svg, .w-5.h-5 {
    width: 20px;
    height: 20px;
}

.auth-shell {
    min-height: 68vh;
    display: grid;
    place-items: center;
    padding: 46px 0;
}
.account-shell {
    padding: 34px 0 54px;
}
.account-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) auto;
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 22px;
    margin-bottom: 18px;
}
.account-hero h1 {
    margin: 4px 0 6px;
}
.account-hero p {
    margin: 0;
}
.account-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}
.account-panel-wide {
    grid-column: 1 / -1;
}
.auth-card {
    width: min(460px, 100%);
    padding: 24px;
}
.auth-form {
    display: grid;
    gap: 13px;
}
.auth-form label, .editor-form label, .admin-panel label {
    display: grid;
    gap: 6px;
    font-weight: 800;
    color: #344054;
}
.auth-note { margin-bottom: 0; }
.account-summary {
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    margin: 0;
}
.account-summary span { color: var(--muted); }
.account-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.account-list {
    display: grid;
    gap: 10px;
}
.account-list-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    background: #fff;
}
.account-list-item img,
.account-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--soft);
}
.account-icon {
    display: grid;
    place-items: center;
    color: var(--green);
    font-weight: 950;
    font-size: 1.2rem;
}
.account-list-item strong,
.account-list-item small {
    display: block;
    min-width: 0;
}
.account-list-item strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.account-list-item small {
    color: var(--muted);
}
.journey-table {
    display: grid;
    overflow-x: auto;
}
.journey-row {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) minmax(120px, .8fr) minmax(180px, 1fr) minmax(110px, .7fr) minmax(120px, .7fr);
    min-width: 840px;
    border-bottom: 1px solid var(--line);
}
.journey-row > span {
    padding: 11px;
}
.check-row {
    display: flex !important;
    align-items: center;
    gap: 8px;
}
.check-row input {
    width: auto;
    min-height: auto;
}
.form-error, .notice.error { color: var(--red); }
.error-shell {
    min-height: 68vh;
    display: grid;
    place-items: center;
    padding: 48px 0;
}
.error-card {
    width: min(680px, 100%);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 28px;
}
.error-card h1 {
    margin: 8px 0 10px;
}
.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}
.notify-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
    gap: 10px;
    margin-top: 16px;
}
.notify-form input {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0 12px;
}
.notice-inline {
    border: 1px solid #b7e1d3;
    border-radius: 6px;
    background: #f0fbf7;
    color: var(--green);
    padding: 10px 12px;
}

.modal {
    border: 0;
    border-radius: 8px;
    padding: 0;
    width: min(560px, 90%);
}
.modal::backdrop { background: rgba(24,33,47,.55); }
.modal-card { padding: 22px; background: #fff; }
.modal-card form[data-price-alert-form] { display: grid; gap: 10px; }
.modal-close {
    float: right;
    border: 0;
    background: var(--soft);
    border-radius: 6px;
    padding: 7px 10px;
}
.footer-link-row {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    border-top: 1px solid #d7dde6;
    padding-top: 12px;
}
.footer-link-row-label {
    flex: 0 0 auto;
    color: #111827;
    font-size: .9rem;
    font-weight: 900;
}
.footer-link-row-content {
    display: flex;
    align-items: center;
    min-width: 0;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
}
.footer-link-row-content p {
    display: contents;
}
.footer-link-row-content a {
    flex: 0 0 auto;
    border-left: 1px solid #d9e1ea;
    color: #475467;
    font-size: .9rem;
    line-height: 1.35;
    padding: 0 11px;
}
.footer-link-row-content a:first-child {
    border-left: 0;
    padding-left: 0;
}
.footer-link-row-content a:hover {
    color: var(--green);
}
.site-subfooter {
    border-top: 1px solid var(--line);
    background: #f3f6fb;
    padding: 24px 0 18px;
}
.subfooter-inner {
    display: grid;
    gap: 12px;
}
.subfooter-inner h2 {
    margin: 0;
    font-size: clamp(1.18rem, 1.8vw, 1.55rem);
    font-weight: 900;
}
.subfooter-content {
    max-width: 1040px;
    color: #475467;
    font-size: .94rem;
    line-height: 1.62;
}
.subfooter-content p,
.subfooter-content ul,
.subfooter-content ol {
    margin: 0 0 10px;
}
.subfooter-content a {
    color: var(--green);
    font-weight: 800;
}
.site-footer {
    border-top: 1px solid #0b2f69;
    background: #063b7a;
    color: #edf2f7;
    padding: 28px 0 34px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(minmax(0, 1fr));
    gap: 30px;
}
.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
    min-width: 0;
}
.footer-column strong {
    color: #fff;
    font-size: .96rem;
    text-transform: uppercase;
}
.footer-column div,
.footer-column p,
.footer-column li {
    color: #dceaff;
    font-size: .93rem;
    line-height: 1.55;
}
.footer-column p,
.footer-column ul,
.footer-column ol {
    margin: 0 0 8px;
}
.footer-column ul,
.footer-column ol {
    padding-left: 18px;
}
.footer-column a {
    color: #fff;
    font-weight: 750;
}
.footer-column a:hover {
    color: #d7ecff;
    text-decoration: underline;
}

.login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: #f6f8fb;
}
.login-card {
    width: min(420px, 90%);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 28px;
}
.login-card img { width: 70px; margin-bottom: 12px; }
.login-card label { display: grid; gap: 6px; font-weight: 800; color: #344054; margin-bottom: 14px; }
.login-card input, .editor-form input, .editor-form textarea, .editor-form select,
.admin-filters input, .admin-filters select, .admin-filters button, .admin-panel textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    min-height: 42px;
    padding: 9px 10px;
    background: #fff;
}
.rich-text-source {
    display: none !important;
}
.rich-editor {
    overflow: hidden;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}
.rich-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    background: #f8fafc;
    padding: 8px;
}
.rich-toolbar button,
.rich-toolbar select {
    width: auto;
    min-height: 32px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
    color: #111827;
    padding: 5px 9px;
    font-size: .86rem;
    font-weight: 800;
    cursor: pointer;
}
.rich-toolbar button:hover,
.rich-toolbar select:hover {
    border-color: #94a3b8;
}
.rich-surface {
    min-height: 220px;
    max-height: 560px;
    overflow: auto;
    padding: 14px;
    color: #111827;
    line-height: 1.6;
    outline: none;
}
.rich-editor.compact .rich-surface {
    min-height: 112px;
}
.rich-surface:focus {
    box-shadow: inset 0 0 0 3px rgba(37, 99, 235, .08);
}
.rich-surface p,
.rich-surface ul,
.rich-surface ol {
    margin: 0 0 10px;
}
.rich-surface ul,
.rich-surface ol {
    padding-left: 22px;
}
.footer-column-editor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.footer-column-editor {
    align-content: start;
}

.admin-body {
    display: grid;
    grid-template-columns: 292px 1fr;
    min-height: 100vh;
    background: #f6f8fb;
}
.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    background: #18212f;
    color: #fff;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow-y: auto;
}
.admin-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}
.admin-brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
}
.admin-menu {
    display: grid;
    gap: 5px;
    padding-right: 2px;
}
.admin-menu-label {
    margin: 12px 0 3px;
    color: #98a6b8;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}
.admin-sidebar a, .admin-sidebar button,
.admin-menu-group summary {
    color: #e8eef6;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
}
.admin-sidebar a:hover, .admin-sidebar button:hover,
.admin-menu-group summary:hover,
.admin-sidebar a.active {
    background: rgba(255,255,255,.1);
    color: #fff;
}
.admin-menu-group {
    border-radius: 8px;
}
.admin-menu-group[open] {
    background: rgba(255,255,255,.04);
}
.admin-menu-group summary {
    list-style: none;
    font-weight: 850;
}
.admin-menu-group summary::-webkit-details-marker {
    display: none;
}
.admin-menu-group summary::after {
    content: "+";
    float: right;
    color: #98a6b8;
}
.admin-menu-group[open] summary::after {
    content: "-";
}
.admin-menu-group a {
    display: block;
    margin: 2px 4px 2px 16px;
    padding: 8px 10px;
    color: #cfd8e5;
    font-size: .92rem;
}
.admin-main {
    padding: 26px;
    min-width: 0;
}
.admin-heading {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
    margin-bottom: 18px;
}
.admin-heading h1 { margin: 0; font-size: 1.8rem; }
.admin-heading-actions,
.admin-taxonomy-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}
.notice {
    border: 1px solid var(--line);
    background: #fff;
    border-left: 4px solid var(--green);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}
.metric-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}
.metric { padding: 18px; }
.metric span { color: var(--muted); }
.metric strong {
    display: block;
    font-size: 1.55rem;
    margin-top: 4px;
}
.post-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}
.post-type-card {
    display: grid;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px;
    background: #fff;
}
.post-type-card span {
    color: #344054;
    font-weight: 850;
}
.post-type-card strong {
    font-size: 1.55rem;
    line-height: 1.1;
}
.post-type-card small {
    color: var(--muted);
}
.post-type-card:hover {
    border-color: var(--green);
}
.admin-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    align-items: start;
}
.admin-panel { padding: 16px; margin-bottom: 16px; }
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .94rem;
}
.admin-table th, .admin-table td {
    border-bottom: 1px solid var(--line);
    text-align: left;
    padding: 10px 8px;
    vertical-align: top;
}
.admin-table th {
    color: var(--muted);
    font-size: .82rem;
    text-transform: uppercase;
}
.table-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.table-actions form {
    margin: 0;
}
.danger-link {
    color: var(--red);
}
.admin-status-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.admin-status-tabs a {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: #344054;
    font-weight: 850;
    padding: 8px 12px;
}
.admin-status-tabs a.active {
    border-color: #111827;
    background: #111827;
    color: #fff;
}
.admin-status-tabs span {
    opacity: .75;
}
.admin-comment-preview {
    display: grid;
    gap: 5px;
}
.admin-comment-preview span,
.status-pill {
    width: fit-content;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 900;
    padding: 3px 7px;
}
.admin-comment-preview span {
    background: #eff4ff;
    color: #175cd3;
}
.admin-comment-preview p {
    margin: 0;
    color: #344054;
}
.discussion-admin-table small {
    display: block;
    color: #667085;
    margin-top: 3px;
}
.status-pill {
    display: inline-flex;
    background: #f2f4f7;
    color: #344054;
}
.status-approved {
    background: #ecfdf3;
    color: #027a48;
}
.status-pending {
    background: #fff7e6;
    color: #b54708;
}
.status-rejected {
    background: #fef3f2;
    color: #b42318;
}
.discussion-actions {
    align-items: flex-start;
    flex-wrap: wrap;
}
.admin-filters {
    display: grid;
    grid-template-columns: 220px minmax(220px, 1fr) auto;
    gap: 10px;
    margin-bottom: 16px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.form-grid label { margin: 0; }
.span-2 { grid-column: span 2; }
.term-picker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}
.term-picker fieldset {
    border: 1px solid var(--line);
    border-radius: 8px;
    max-height: 280px;
    overflow: auto;
}
.term-picker legend { font-weight: 900; }
.term-picker label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin: 6px 0;
}
.term-picker input { width: auto; min-height: auto; }
.meta-box-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}
.meta-box-head p {
    margin: 4px 0 0;
    font-size: .92rem;
}
.field-note {
    color: var(--muted);
    font-size: .84rem;
    font-weight: 600;
}
.repeater-list,
.variant-list,
.retailer-list {
    display: grid;
    gap: 12px;
}
.repeater-list.compact { margin: 10px 0; }
.repeater-item,
.variant-block,
.retailer-row-editor {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 14px;
}
.repeater-grid {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(240px, 2fr) auto;
    gap: 10px;
    align-items: end;
}
.variant-block-head,
.retailer-editor-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.variant-block-head h3 {
    font-size: 1rem;
}
.variant-grid,
.retailer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(140px, 1fr));
    gap: 10px;
}
.retailer-editor {
    margin-top: 12px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
}
.retailer-row-editor {
    display: grid;
    gap: 10px;
}
.plan-repeater-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 12px 0;
}
.plan-repeater {
    display: grid;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fafc;
    padding: 12px;
}
.plan-repeater-wide {
    grid-column: 1 / -1;
}
.plan-repeater-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.plan-repeater-head strong {
    color: #344054;
}
.plan-repeater-list {
    display: grid;
    gap: 8px;
}
.plan-line-row,
.plan-value-row {
    align-items: end;
    background: #fff;
    padding: 10px;
}
.plan-line-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}
.plan-value-row {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) minmax(180px, 1.4fr) auto;
    gap: 10px;
}
.plan-line-row label,
.plan-value-row label {
    margin: 0;
}
.spec-section .variant-block-head {
    align-items: end;
}
.admin-image-preview {
    width: 112px;
    height: 112px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 8px;
    margin-top: 8px;
}
.admin-image-preview.logo-preview {
    height: 76px;
}
.term-image-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}
.term-image-card img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
}
.term-image-card strong,
.term-image-card span {
    display: block;
}
.term-image-card span {
    color: var(--muted);
    overflow-wrap: anywhere;
}
.sticky-actions {
    position: sticky;
    bottom: 0;
    background: rgba(246,248,251,.96);
    border-top: 1px solid var(--line);
    padding: 12px 0;
    display: flex;
    gap: 10px;
}

.mobile-tabbar {
    display: none;
}
.tabbar-icon {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    color: currentColor;
}
.tabbar-home::before {
    content: "";
    position: absolute;
    left: 4px;
    bottom: 3px;
    width: 14px;
    height: 11px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 2px;
}
.tabbar-home::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-left: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
}
.tabbar-grid::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: 5px;
    height: 5px;
    border-radius: 2px;
    background: currentColor;
    box-shadow: 9px 0 0 currentColor, 0 9px 0 currentColor, 9px 9px 0 currentColor;
}
.tabbar-search::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 999px;
}
.tabbar-search::after {
    content: "";
    position: absolute;
    right: 3px;
    bottom: 4px;
    width: 8px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform: rotate(45deg);
}
.tabbar-user::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 8px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 999px;
}
.tabbar-user::after {
    content: "";
    position: absolute;
    left: 4px;
    bottom: 3px;
    width: 14px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 12px 12px 4px 4px;
    border-bottom-width: 1px;
}

@media (max-width: 1100px) {
    .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .store-hero-grid, .pdp-grid, .pdp-commerce, .car-hero, .admin-body, .admin-grid, .account-hero, .account-grid {
        grid-template-columns: 1fr;
    }
    .pdp-gallery-card,
    .pdp-buybox {
        position: static;
    }
    .pdp-gallery-card {
        min-height: 360px;
    }
    .pdp-gallery-card img {
        height: 340px;
    }
    .admin-sidebar { position: static; height: auto; }
}

@media (max-width: 780px) {
    body { padding-bottom: calc(128px + env(safe-area-inset-bottom)); }
    .container { width: min(94%, 1360px); }
    .site-header {
        box-shadow: 0 8px 26px rgba(24, 33, 47, .07);
    }
    .header-inner {
        grid-template-columns: 124px 1fr auto;
        gap: 8px;
        min-height: 84px;
    }
    .brand { width: 124px; height: 84px; }
    .brand img { width: 124px; height: 84px; }
    .account-hero {
        padding: 16px;
    }
    .account-actions {
        width: 100%;
    }
    .account-actions .btn,
    .account-actions form,
    .account-actions button {
        width: 100%;
    }
    .header-actions .account-link,
    .header-actions .btn.small,
    .header-actions .text-button {
        font-size: .86rem;
    }
    .header-search button { display: none; }
    .store-hero-grid {
        padding: 20px 0;
        gap: 16px;
    }
    .store-hero-copy h1 { font-size: 1.85rem; }
    .hero-deals {
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, 82vw);
        overflow-x: auto;
        overscroll-behavior-x: contain;
        padding-bottom: 8px;
    }
    .hero-deals a { grid-template-columns: 60px minmax(0, 1fr); }
    .hero-deals strong { grid-column: 2; }
    .card-grid, .metric-grid, .form-grid, .admin-filters, .spec-table, .spec-pills, .pdp-highlight-grid, .notify-form,
    .repeater-grid, .variant-grid, .retailer-grid, .plan-repeater-grid, .plan-line-row, .plan-value-row, .footer-grid, .footer-column-editor-grid {
        grid-template-columns: 1fr;
    }
    .footer-link-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
    .footer-link-row-content {
        width: 100%;
    }
    .discussion-head,
    .discussion-form > div {
        align-items: stretch;
        flex-direction: column;
    }
    .discussion-comment {
        grid-template-columns: 26px minmax(0, 1fr);
    }
    .discussion-replies {
        margin-left: 0;
        padding-left: 8px;
    }
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .card-media {
        height: 136px;
    }
    .card-media img {
        height: 122px;
    }
    .card-body {
        padding: 10px;
        gap: 6px;
    }
    .card-body h3 {
        min-height: 42px;
        font-size: .9rem;
    }
    .card-price {
        font-size: .98rem;
    }
    .card-action {
        min-height: 38px;
        padding: 0 10px;
        font-size: .84rem;
    }
    .meta-box-head, .variant-block-head, .retailer-editor-head {
        align-items: stretch;
        flex-direction: column;
    }
    .span-2 { grid-column: auto; }
    .gallery-panel img, .car-media img { height: 280px; }
    .pdp-gallery-card {
        display: none;
    }
    .pdp-summary-card {
        display: flex;
        flex-direction: column;
    }
    .pdp-summary-card h1 { order: 1; }
    .pdp-mobile-image {
        order: 2;
        display: grid;
        place-items: center;
        min-height: 220px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        padding: 12px;
    }
    .pdp-mobile-image img {
        width: 100%;
        height: 220px;
        object-fit: contain;
    }
    .rating-widget { order: 3; }
    .pdp-brand-chip { order: 4; }
    .pdp-mobile-price {
        order: 5;
        display: block;
        margin-top: 0;
    }
    .variant-list { order: 6; }
    .pdp-kicker { order: 7; }
    .pdp-highlight-grid { order: 8; }
    .auto-compare-card { order: 9; }
    .mobile-sticky-compare {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(78px + env(safe-area-inset-bottom));
        z-index: 70;
        display: grid;
        place-items: center;
        min-height: 46px;
        border-radius: 8px;
        background: var(--green);
        color: #fff;
        font-weight: 900;
        box-shadow: 0 12px 28px rgba(18, 113, 91, .28);
    }
    .pdp-gallery-card img { height: 280px; }
    .pdp-gallery-card { min-height: 300px; }
    .pdp-commerce {
        gap: 12px;
    }
    .plan-comparison-head {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .plan-table-wrap {
        display: none;
    }
    .plan-card-fallback-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .category-nav .term-card-rail {
        grid-auto-columns: minmax(206px, 68vw);
        gap: 14px;
    }
    .category-nav .term-card {
        min-height: 232px;
        padding: 10px 16px 22px;
    }
    .category-nav .term-card-media,
    .category-nav .term-card-media img {
        height: 104px;
    }
    .pdp-summary-card,
    .pdp-buybox,
    .pdp-gallery-card {
        padding: 14px;
    }
    .product-rail { grid-auto-columns: minmax(172px, 78%); }
    .brand-rail { grid-auto-columns: 116px; }
    .archive-header h1, .pdp-heading h1, .car-info h1, .comparison-hero h1, .article-card h1 {
        font-size: 1.65rem;
    }
    .archive-header {
        flex-direction: column;
    }
    .retailer-table,
    .variants-table {
        gap: 10px;
        overflow: visible;
    }
    .retailer-row,
    .variant-row {
        min-width: 0;
        grid-template-columns: 1fr;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
    }
    .retailer-row.head,
    .variant-row.head {
        display: none;
    }
    .retailer-row > span,
    .variant-row > span {
        padding: 9px 12px;
        border-bottom: 1px solid var(--line);
    }
    .retailer-row > span:last-child,
    .variant-row > span:last-child {
        border-bottom: 0;
    }
    .compare-table {
        min-width: max(640px, calc(136px + (var(--compare-columns, 2) * 180px)));
    }
    .compare-row {
        grid-template-columns: minmax(136px, .72fr) repeat(var(--compare-columns, 2), minmax(160px, 1fr));
    }
    .mobile-tabbar {
        position: fixed;
        left: max(10px, env(safe-area-inset-left));
        right: max(10px, env(safe-area-inset-right));
        bottom: max(10px, env(safe-area-inset-bottom));
        z-index: 46;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 4px;
        padding: 6px;
        border: 1px solid rgba(221, 228, 238, .92);
        border-radius: 8px;
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 16px 38px rgba(24, 33, 47, .18);
        backdrop-filter: blur(16px);
    }
    .mobile-tabbar a {
        display: grid;
        justify-items: center;
        align-content: center;
        gap: 3px;
        min-width: 0;
        min-height: 54px;
        border-radius: 6px;
        color: var(--muted);
        font-size: .72rem;
        font-weight: 850;
    }
    .mobile-tabbar a.active {
        background: var(--ink);
        color: #fff;
    }
}

@media (max-width: 540px) {
    .header-inner {
        grid-template-columns: 96px 1fr 42px;
    }
    .header-actions {
        gap: 6px;
    }
    .header-actions .account-link,
    .header-actions .btn.small,
    .header-actions form {
        display: none;
    }
    .menu-account-links { display: grid; }
    .brand { width: 96px; height: 66px; }
    .brand img { width: 96px; height: 66px; }
    .wide-search, .hero-search, .auto-compare-search { flex-direction: column; display: flex; }
    .wide-search button, .hero-search button { min-height: 42px; }
    .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .category-strip { grid-auto-columns: minmax(144px, 74vw); }
    .term-card-rail { grid-auto-columns: minmax(168px, 76vw); }
}

/* Minimal ecommerce redesign */
body:not(.admin-body):not(.login-body) {
    background: #f7f7f5;
    color: var(--ink);
}

body:not(.admin-body):not(.login-body) p {
    color: var(--muted);
}

.site-header {
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
    box-shadow: none;
}

.header-inner {
    min-height: 92px;
}

.brand,
.brand:hover {
    border: 0;
    background: transparent;
    transform: none;
}

.menu-panel,
.compare-drawer-panel {
    border-left: 1px solid var(--line);
    box-shadow: -18px 0 48px rgba(17, 32, 51, .12);
}

.menu-toggle,
.menu-close,
.drawer-close,
.menu-account-links a,
.menu-account-links button,
.main-nav a {
    border: 1px solid var(--line);
    box-shadow: none;
}

.menu-toggle,
.menu-close,
.drawer-close {
    background: #fff;
}

.main-nav a:hover,
.menu-account-links a:hover,
.menu-account-links button:hover {
    background: #f8fafc;
}

.header-search input,
.hero-search input,
.wide-search input,
.auth-form input,
.modal-card input,
.notify-form input,
.auto-compare-search input,
.login-card input,
.editor-form input,
.editor-form textarea,
.editor-form select,
.admin-filters input,
.admin-filters select,
.admin-panel textarea {
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
    box-shadow: none;
}

.header-search input:focus,
.hero-search input:focus,
.wide-search input:focus,
.auth-form input:focus,
.modal-card input:focus,
.auto-compare-search input:focus,
.notify-form input:focus {
    border-color: #94a3b8;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .08);
}

.btn,
button.btn,
.header-search button,
.hero-search button,
.wide-search button,
.auto-compare-search button,
.notify-form button,
.page-link {
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: none;
    transform: none;
}

.btn,
button.btn,
.header-search button,
.hero-search button,
.wide-search button,
.auto-compare-search button,
.notify-form button {
    background: var(--ink);
    color: #fff;
}

.btn.secondary {
    border-color: var(--line);
    background: #fff;
    color: var(--ink);
}

.btn:hover,
button.btn:hover,
.header-search button:hover,
.hero-search button:hover,
.wide-search button:hover,
.auto-compare-search button:hover,
.notify-form button:hover,
.page-link:hover {
    box-shadow: none;
    transform: none;
    filter: brightness(.96);
}

.store-hero {
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.store-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 920px;
    gap: 0;
    padding: 52px 0 46px;
}

.store-hero-copy {
    display: grid;
    gap: 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.store-hero-copy::after {
    display: none;
}

.store-hero-copy h1 {
    max-width: 760px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    font-weight: 850;
}

.store-hero-copy p {
    max-width: 660px;
    margin: 0 0 10px;
    font-size: 1.04rem;
}

.hero-search,
.wide-search,
.header-search {
    gap: 10px;
}

.hero-search {
    max-width: 760px;
}

.search-results {
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 18px 42px rgba(17, 32, 51, .12);
}

.search-results a {
    border-bottom: 1px solid var(--line);
}

.search-results img {
    border: 0;
    background: #f8fafc;
}

.eyebrow {
    color: #475467;
    font-size: .72rem;
    font-weight: 800;
}

.section-heading {
    margin: 34px 0 14px;
}

.section-heading h1,
.section-heading h2 {
    font-weight: 820;
}

.content-section,
.brand-section,
.term-strip,
.category-list-section,
.category-block {
}

.with-link > a {
    min-height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    color: var(--blue);
}

.category-strip,
.brand-rail,
.product-rail {
    gap: 16px;
    padding: 2px 2px 12px;
}

.category-tile,
.brand-bubble,
.product-card,
.term-card,
.about-block,
.gallery-panel,
.buy-panel,
.car-media,
.car-info,
.panel,
.side-card,
.auth-card,
.account-hero,
.account-summary,
.account-list-item,
.error-card,
.login-card,
.auto-compare-card,
.pdp-gallery-card,
.pdp-summary-card,
.pdp-buybox,
.software-plan-card,
.plan-tabs-wrap,
.plan-table-wrap,
.plan-type-picker,
.plan-fit-finder,
.compare-scroll,
.plan-feature-table-wrap,
.modal {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    box-shadow: none;
}

.category-tile:hover,
.product-card:hover,
.brand-bubble:hover,
.term-card:hover,
.software-plan-card:hover,
.auto-compare-result:hover,
.account-list-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 12px 28px rgba(17, 32, 51, .08);
    transform: none;
}

.category-tile,
.category-tile:nth-child(5n+1),
.category-tile:nth-child(5n+2),
.category-tile:nth-child(5n+3),
.category-tile:nth-child(5n+4),
.category-tile:nth-child(5n),
.term-card,
.brand-bubble,
.software-plan-card:nth-child(4n+1),
.software-plan-card:nth-child(4n+2),
.software-plan-card:nth-child(4n+3),
.software-plan-card:nth-child(4n) {
    background: #fff;
}

.category-tile.view-all,
.brand-view-all {
    background: #111827;
    color: #fff;
}

.category-tile img,
.term-card-media,
.brand-logo,
.card-media,
.side-link img,
.account-list-item img,
.account-icon,
.auto-compare-result-thumb,
.pdp-mobile-image {
    border: 0;
}

.term-card-media,
.brand-logo,
.card-media,
.side-link img,
.account-list-item img,
.account-icon,
.auto-compare-result-thumb {
    background: #f8fafc;
}

.brand-logo,
.brand-bubble:nth-child(4n+2) .brand-logo,
.brand-bubble:nth-child(4n+3) .brand-logo,
.brand-bubble:nth-child(4n) .brand-logo,
.brand-view-all .brand-logo {
    background: #f8fafc;
    color: var(--ink);
}

.product-card {
    overflow: hidden;
}

.card-media,
.product-card:nth-child(4n+2) .card-media,
.product-card:nth-child(4n+3) .card-media,
.product-card:nth-child(4n) .card-media,
.pdp-gallery-card,
.gallery-panel,
.car-media,
.comparison-featured-image,
.article-image {
    background: #f8fafc;
}

.card-media {
    height: 190px;
    margin: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 6px 6px 0 0;
}

.card-body {
    padding: 14px;
}

.card-brand {
    color: #475467;
    font-weight: 760;
}

.card-price,
.price-cell .offer {
    color: #111827;
}

.card-meta span,
.plan-mini-specs span,
.term-pills a,
.term-strip a,
.brand-chip,
.status-pill,
.pdp-brand-chip,
.variant-list span,
.drawer-variant-btn,
.plan-tabs button,
.plan-group-filter button,
.plan-feature-filter button {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: #344054;
    box-shadow: none;
}

.archive-header,
.comparison-hero {
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    padding: 22px 0;
    margin-bottom: 16px;
}

.archive-header {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 22px;
}

.pdp-commerce {
    gap: 18px;
}

.pdp-highlight-grid div,
.guide-grid span,
.spec-table div,
.buybox-note,
.account-summary {
   
}

.pdp-highlight-grid div:nth-child(4n+1),
.pdp-highlight-grid div:nth-child(4n+2),
.pdp-highlight-grid div:nth-child(4n+3),
.pdp-highlight-grid div:nth-child(4n),
.guide-grid span:nth-child(4n+1),
.guide-grid span:nth-child(4n+2),
.guide-grid span:nth-child(4n+3),
.guide-grid span:nth-child(4n),
.spec-table div:nth-child(4n+1),
.spec-table div:nth-child(4n+2),
.spec-table div:nth-child(4n+3) {
    background: #fff;
}

.price-box {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #f8fafc;
    box-shadow: none;
}

.price-box strong {
    color: #111827;
}

.price-box em {
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--green);
}

.plan-type-picker,
.plan-fit-finder {
    background: #f8fafc;
}

.plan-group-filter button.active,
.plan-feature-filter button.active,
.plan-tabs button.active,
.drawer-variant-btn.active {
    border-color: #111827;
    background: #111827;
    color: #fff;
}

.software-plan-card.is-plan-match {
    border-color: #99f6e4;
    box-shadow: 0 12px 28px rgba(15, 118, 110, .08);
}

.plan-match-note,
.notice-inline {
    border: 1px solid #99f6e4;
    background: #f0fdfa;
    color: var(--green);
}

.retailer-row,
.variant-row,
.compare-row,
.journey-row {
    border-bottom: 1px solid var(--line);
}

.head,
.compare-row.head > span,
.plan-pricing-table thead th,
.plan-feature-table th {
    background: #f8fafc;
    color: #475467;
}

.compare-row > span:first-child {
    border-right: 1px solid var(--line);
}

.retailer-row > span,
.variant-row > span,
.compare-row > span,
.journey-row > span {
    background: #fff;
}

.seller img {
    border: 0;
    background: #fff;
}

.compare-drawer {
    background: rgba(17, 24, 39, .36);
}

.drawer-table .retailer-row,
.drawer-table .retailer-row:last-child {
    border: 0;
    border-bottom: 1px solid var(--line);
}

.page-link {
    border-color: var(--line);
    background: #fff;
}

.page-link.active {
    background: #111827;
    border-color: #111827;
    color: #fff;
}

.site-footer {
    box-shadow: none;
}

.mobile-sticky-compare {
    border: 0;
    border-radius: 4px;
    background: #111827;
    box-shadow: 0 10px 26px rgba(17, 24, 39, .18);
}

.mobile-tabbar {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 34px rgba(17, 32, 51, .12);
}

.mobile-tabbar a.active {
    background: #111827;
    color: #fff;
}

/* Comparison detail layout */
.comparison-redesign {
    background: #f7f7f5;
}

.compare-detail-hero {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 22px 0 26px;
}

.compare-detail-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
}

.compare-detail-head h1 {
    max-width: 980px;
    margin: 6px 0 8px;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.08;
    font-weight: 850;
}

.compare-detail-head p {
    max-width: 720px;
    margin: 0;
}

.compare-detail-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.compare-detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f8fafc;
    padding: 0 12px;
    color: #475467;
    font-size: .86rem;
    font-weight: 750;
}

.compare-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 336px;
    gap: 24px;
    align-items: start;
    padding: 26px 0 60px;
}

.compare-detail-main {
    display: grid;
    gap: 20px;
    min-width: 0;
}

.compare-product-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}

.compare-product-panel,
.compare-overview-panel,
.compare-editorial-note,
.compare-spec-panel,
.compare-side-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(17, 32, 51, .05);
}

.compare-product-panel {
    display: grid;
    grid-template-rows: 240px 1fr;
    overflow: hidden;
}

.compare-product-image {
    display: grid;
    place-items: center;
    background: #f8fafc;
    border-bottom: 1px solid var(--line);
}

.compare-product-image img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 18px;
}

.compare-product-copy {
    display: grid;
    gap: 8px;
    align-content: start;
    padding: 16px;
}

.compare-product-copy h2 {
    font-size: 1.1rem;
    line-height: 1.25;
}

.compare-product-copy strong {
    font-size: 1.18rem;
    color: #111827;
}

.compare-product-brand {
    color: #475467;
    font-size: .82rem;
    font-weight: 800;
}

.compare-product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.compare-product-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 0 8px;
    color: #475467;
    font-size: .78rem;
    font-weight: 750;
}

.compare-vs-mark {
    position: absolute;
    left: 50%;
    top: 118px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: .88rem;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

.compare-overview-panel,
.compare-editorial-note,
.compare-spec-panel {
    padding: 18px;
}

.compare-overview-table {
    display: grid;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.compare-overview-row {
    display: grid;
    grid-template-columns: minmax(150px, .72fr) repeat(2, minmax(180px, 1fr));
    min-width: 620px;
    border-bottom: 1px solid var(--line);
}

.compare-overview-row:last-child {
    border-bottom: 0;
}

.compare-overview-row span {
    min-width: 0;
    padding: 12px;
    overflow-wrap: anywhere;
}

.compare-overview-row span:first-child {
    color: #475467;
    font-weight: 800;
}

.compare-overview-row.head span {
    background: #f8fafc;
    color: #475467;
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.compare-editorial-note .entry-content > :first-child {
    margin-top: 0;
}

.compare-editorial-note .entry-content > :last-child {
    margin-bottom: 0;
}

.compare-spec-panel .compare-scroll {
    box-shadow: none;
}

.compare-sidebar {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 16px;
    min-width: 0;
}

.compare-side-card {
    display: grid;
    gap: 10px;
    padding: 16px;
}

.compare-side-card h2 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.22;
}

.compare-side-card p {
    margin: 0;
    font-size: .92rem;
}

.sidebar-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.discussion-card .rating-widget {
    margin: 0;
    align-items: flex-start;
    flex-direction: column;
}

.discussion-empty {
    display: grid;
    gap: 4px;
    border: 1px dashed #cbd5e1;
    border-radius: 6px;
    background: #f8fafc;
    padding: 12px;
}

.discussion-empty span {
    color: var(--muted);
    font-size: .88rem;
}

.discussion-panel {
    display: grid;
    gap: 14px;
}
.discussion-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.discussion-head h2 {
    margin: 0;
}
.discussion-count {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: #475467;
    font-size: .82rem;
    font-weight: 850;
    padding: 5px 9px;
}
.discussion-login-card,
.discussion-form,
.discussion-pending-note {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fafc;
    padding: 12px;
}
.discussion-login-card {
    display: grid;
    gap: 8px;
}
.discussion-login-card p,
.discussion-pending-note {
    margin: 0;
    color: #667085;
    font-size: .9rem;
}
.discussion-form {
    display: grid;
    gap: 10px;
    background: #fff;
}
.discussion-form textarea,
.discussion-reply-box textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    padding: 10px;
    resize: vertical;
}
.discussion-form > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.discussion-form span {
    color: #667085;
    font-size: .84rem;
}
.discussion-thread {
    display: grid;
    gap: 12px;
}
.discussion-comment {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
}
.discussion-vote-rail {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 2px;
    color: #98a2b3;
    font-size: .8rem;
    font-weight: 900;
    padding-top: 2px;
}
.discussion-vote-rail strong {
    color: #344054;
    font-size: .86rem;
}
.discussion-comment-body {
    display: grid;
    gap: 8px;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 11px;
}
.discussion-comment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: #667085;
    font-size: .82rem;
}
.discussion-comment-meta strong {
    color: #18212f;
}
.discussion-comment-text {
    color: #344054;
    font-size: .94rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}
.discussion-reply-box {
    display: grid;
    gap: 8px;
}
.discussion-reply-box summary {
    cursor: pointer;
    color: #475467;
    font-size: .84rem;
    font-weight: 850;
}
.discussion-reply-box form {
    display: grid;
    gap: 8px;
}
.discussion-replies {
    display: grid;
    gap: 10px;
    border-left: 2px solid #e4e7ec;
    margin-left: 8px;
    padding-left: 10px;
}
.compare-side-card.discussion-panel {
    gap: 12px;
}
.compare-side-card .discussion-head {
    display: grid;
    gap: 4px;
}
.compare-side-card .discussion-count {
    justify-self: start;
}
.compare-side-card .discussion-comment {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 7px;
}
.compare-side-card .discussion-comment-body {
    padding: 9px;
}
.compare-side-card .discussion-form > div {
    align-items: stretch;
    flex-direction: column;
}

.sidebar-link-list,
.sidebar-product-list {
    display: grid;
    gap: 10px;
}

.sidebar-comparison-link,
.sidebar-product-link {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-width: 0;
}

.sidebar-comparison-link img,
.sidebar-product-link img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 6px;
    background: #f8fafc;
}

.sidebar-comparison-link span,
.sidebar-product-link strong {
    display: -webkit-box;
    overflow: hidden;
    color: #1f2937;
    font-size: .9rem;
    line-height: 1.28;
    font-weight: 800;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sidebar-link-list.compact a {
    display: block;
    border-bottom: 1px solid var(--line);
    padding: 0 0 9px;
    color: #344054;
    font-size: .92rem;
    font-weight: 750;
    line-height: 1.35;
}

.sidebar-link-list.compact a:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.sidebar-product-link small {
    display: block;
    margin-top: 3px;
    color: #475467;
    font-size: .82rem;
    font-weight: 760;
}

@media (max-width: 1100px) {
    .store-hero-grid {
        max-width: 920px;
    }

    .compare-detail-layout {
        grid-template-columns: 1fr;
    }

    .compare-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .header-inner {
        grid-template-columns: 124px 1fr auto;
        min-height: 84px;
    }

    .brand,
    .brand img {
        width: 124px;
        height: 84px;
    }

    .hosting-product-page .pdp-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-hero-grid {
        padding: 34px 0 30px;
    }

    .store-hero-copy {
        padding: 0;
        box-shadow: none;
    }

    .card-media {
        height: 142px;
        margin: 0;
    }

    .retailer-row,
    .variant-row {
        border: 1px solid var(--line);
        box-shadow: none;
    }

    .mobile-tabbar {
        border: 1px solid var(--line);
        box-shadow: 0 14px 34px rgba(17, 32, 51, .12);
    }

    .compare-detail-head {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .compare-detail-meta {
        justify-content: flex-start;
    }

    .compare-detail-layout {
        gap: 18px;
        padding-top: 18px;
    }

    .compare-product-stage,
    .compare-sidebar {
        grid-template-columns: 1fr;
    }

    .compare-vs-mark {
        position: static;
        justify-self: center;
        margin: -6px 0;
        transform: none;
    }

    .compare-product-panel {
        grid-template-rows: 190px 1fr;
    }

    .compare-product-image img {
        height: 174px;
    }
}

@media (max-width: 540px) {
    .header-inner {
        grid-template-columns: 96px 1fr 42px;
        min-height: 72px;
    }

    .brand,
    .brand img {
        width: 96px;
        height: 66px;
    }

    .hosting-product-page .pdp-highlight-grid {
        grid-template-columns: 1fr;
    }

    .store-hero-copy h1 {
        font-size: 1.9rem;
    }

    .with-link {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 1100px) {
    .hosting-product-page .pdp-commerce {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .hosting-product-page .pdp-gallery-card,
    .hosting-product-page .pdp-buybox {
        position: static;
    }

    .hosting-product-page .pdp-buybox {
        width: 100%;
    }
}

@media (max-width: 780px) {
    .hosting-product-page .breadcrumbs {
        gap: 6px;
        margin: 8px 0 14px;
        font-size: .84rem;
        line-height: 1.4;
    }

    .hosting-product-page .pdp-commerce {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .hosting-product-page .pdp-buybox {
        display: block;
        width: 100%;
        border: 0;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .hosting-product-page .pdp-buybox .price-box,
    .hosting-product-page .pdp-buybox .buybox-note {
        display: none;
    }

    .hosting-product-page .pdp-buybox .actions-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .hosting-product-page .pdp-buybox .actions-row .btn,
    .hosting-product-page .pdp-buybox .actions-row button {
        width: 100%;
        min-height: 46px;
    }

    .hosting-product-page .pdp-summary-card {
        width: 100%;
        min-width: 0;
        padding: 16px;
        overflow: hidden;
    }

    .hosting-product-page .pdp-summary-card h1 {
        font-size: clamp(1.8rem, 8vw, 2.35rem);
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .hosting-product-page .pdp-mobile-image {
        min-height: 180px;
        padding: 14px;
    }

    .hosting-product-page .pdp-mobile-image img {
        height: 150px;
    }

    .hosting-product-page .rating-widget {
        flex-wrap: wrap;
        gap: 8px;
    }

    .hosting-product-page .pdp-brand-chip {
        max-width: 100%;
        min-height: 48px;
    }

    .hosting-product-page .pdp-mobile-price {
        width: 100%;
        padding: 14px;
    }

    .hosting-product-page .pdp-mobile-price strong {
        font-size: clamp(1.8rem, 8vw, 2.35rem);
    }

    .hosting-product-page .pdp-kicker {
        font-size: .96rem;
    }

    .hosting-product-page #plan.panel {
        padding: 14px;
        overflow: hidden;
    }

    .hosting-product-page .plan-tabs {
        gap: 8px;
    }

    .hosting-product-page .plan-tabs button {
        min-height: 42px;
        white-space: nowrap;
    }

    .hosting-product-page .plan-comparison-head {
        padding: 12px;
    }

    .hosting-product-page .mobile-sticky-compare {
        background: var(--ink);
    }
}

@media (max-width: 540px) {
    .hosting-product-page .pdp-summary-card {
        padding: 14px;
    }

    .hosting-product-page .pdp-highlight-grid {
        grid-template-columns: 1fr;
    }

    .hosting-product-page .software-plan-card {
        padding: 14px;
    }
}

/* CompareWiki premium commerce clarity layer */
:root {
    --ink: #121826;
    --muted: #617084;
    --line: #e8edf4;
    --soft: #fff8ef;
    --paper: #ffffff;
    --green: #13966d;
    --red: #d92d20;
    --amber: #b76300;
    --blue: #2563eb;
    --cw-orange: #fc8019;
    --cw-orange-dark: #d96500;
    --cw-purple: #6d28d9;
    --cw-pink: #f43f5e;
    --cw-yellow: #ffd166;
    --cw-cyan: #0ea5e9;
    --cw-cream: #fffaf2;
    --cw-panel: #ffffff;
    --cw-panel-tint: #fff4e8;
    --cw-shadow: 0 20px 54px rgba(18, 24, 38, .11);
    --cw-shadow-soft: 0 12px 30px rgba(18, 24, 38, .08);
    --cw-focus: 0 0 0 4px rgba(252, 128, 25, .18);
}

html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body {
    background: #fff8ef;
    color: var(--ink);
    font-size: 16px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .94) 0, rgba(255, 248, 239, .96) 420px, rgba(247, 250, 252, .98) 100%);
}

.container {
    width: min(94%, 1440px);
}

.eyebrow {
    color: var(--cw-orange-dark);
    font-size: .74rem;
    font-weight: 900;
}

h1,
h2,
h3 {
    color: var(--ink);
    font-weight: 900;
}

p {
    color: var(--muted);
}

.btn,
button.btn,
.header-search button,
.hero-search button,
.wide-search button,
.auto-compare-search button {
    min-height: 46px;
    border: 0;
    border-radius: 14px;
    background: var(--cw-orange);
    color: #fff;
    box-shadow: 0 12px 26px rgba(252, 128, 25, .22);
    font-weight: 900;
}

.btn.secondary,
button.btn.secondary {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    box-shadow: 0 8px 20px rgba(18, 24, 38, .06);
}

.btn.small,
button.btn.small {
    min-height: 38px;
    border-radius: 12px;
}

.btn:hover,
button.btn:hover,
.header-search button:hover,
.hero-search button:hover,
.wide-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(252, 128, 25, .28);
}

input:focus,
textarea:focus,
select:focus,
.header-search input:focus,
.hero-search input:focus,
.wide-search input:focus,
.auth-form input:focus,
.modal-card input:focus,
.auto-compare-search input:focus {
    outline: 0;
    border-color: rgba(252, 128, 25, .56);
    box-shadow: var(--cw-focus);
}

.site-header {
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(232, 237, 244, .9);
    box-shadow: 0 10px 34px rgba(18, 24, 38, .08);
    backdrop-filter: blur(22px);
}

.header-inner {
    grid-template-columns: 188px minmax(300px, 780px) auto;
    gap: 18px;
    min-height: 88px;
}

.brand,
.brand img {
    width: 188px;
    height: 72px;
}

.brand {
    justify-content: flex-start;
}

.header-search,
.hero-search,
.wide-search {
    gap: 10px;
}

.header-search input,
.hero-search input,
.wide-search input,
.auth-form input,
.modal-card input,
.auto-compare-search input,
.notify-form input,
.discussion-form textarea,
.discussion-reply-box textarea {
    min-height: 52px;
    border: 1px solid rgba(214, 222, 232, .95);
    border-radius: 16px;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 8px 22px rgba(18, 24, 38, .045);
    color: var(--ink);
}

.header-search input {
    background: #fff url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 21L16.65 16.65M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z' stroke='%23617084' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") 16px center / 20px no-repeat;
    padding-left: 48px;
}

.header-actions {
    gap: 12px;
}

.account-link,
.text-button {
    color: var(--ink);
    font-weight: 900;
}

.pwa-install-btn {
    min-height: 40px;
    border: 1px solid rgba(252, 128, 25, .35);
    border-radius: 999px;
    background: #fff4e8;
    color: var(--cw-orange-dark);
    padding: 0 14px;
    font-weight: 900;
}

.menu-install-btn {
    width: 100%;
    margin-top: 12px;
}

.menu-toggle {
    border: 1px solid rgba(214, 222, 232, .95);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(18, 24, 38, .06);
}

.menu-panel {
    border-left: 0;
    background: #fffaf4;
    box-shadow: -28px 0 70px rgba(18, 24, 38, .2);
}

.main-nav a,
.menu-account-links a,
.menu-account-links button {
    border-radius: 14px;
    background: #fff;
}

.search-results {
    top: calc(100% + 10px);
    border: 1px solid rgba(214, 222, 232, .95);
    border-radius: 18px;
    box-shadow: var(--cw-shadow);
}

.search-results a {
    grid-template-columns: 58px 1fr;
    gap: 12px;
    padding: 12px;
}

.search-results img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #fff8ef;
}

.store-hero {
    overflow: hidden;
    background: #fff4e8;
    border-bottom: 1px solid rgba(232, 237, 244, .95);
}

.store-hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
    gap: 32px;
    align-items: center;
    padding: 46px 0 42px;
}

.store-hero-copy {
    position: relative;
    max-width: 760px;
}

.store-hero-copy h1 {
    max-width: 760px;
    margin: 10px 0 12px;
    font-size: clamp(2.25rem, 3vw, 4.8rem);
    line-height: 1;
    font-weight: 950;
}

.store-hero-copy p {
    max-width: 650px;
    margin: 0 0 24px;
    color: #536173;
    font-size: clamp(1.02rem, 1.35vw, 1.24rem);
}

.hero-search {
    max-width: 780px;
    padding: 8px;
    border: 1px solid rgba(255, 216, 178, .95);
    border-radius: 24px;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 20px 48px rgba(252, 128, 25, .16);
}

.hero-search input {
    border-color: transparent;
    box-shadow: none;
}

.hero-search button {
    min-width: 126px;
}

.hero-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.hero-showcase-card {
    display: grid;
    grid-template-rows: 174px auto auto;
    gap: 10px;
    min-width: 0;
    border: 1px solid rgba(255, 215, 177, .95);
    border-radius: 26px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 22px 50px rgba(177, 93, 16, .12);
    padding: 16px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hero-showcase-card:nth-child(2) {
    transform: translateY(22px);
}

.hero-showcase-card:nth-child(3) {
    transform: translateY(-10px);
}

.hero-showcase-card:hover {
    border-color: rgba(252, 128, 25, .58);
    box-shadow: 0 28px 64px rgba(177, 93, 16, .18);
    transform: translateY(-3px);
}

.hero-showcase-card:nth-child(2):hover {
    transform: translateY(17px);
}

.hero-showcase-card:nth-child(3):hover {
    transform: translateY(-15px);
}

.hero-showcase-card img {
    width: 100%;
    height: 174px;
    object-fit: contain;
    filter: saturate(1.08) contrast(1.04);
}

.hero-showcase-card span {
    display: -webkit-box;
    min-height: 42px;
    overflow: hidden;
    color: var(--ink);
    font-weight: 900;
    line-height: 1.25;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hero-showcase-card strong {
    color: var(--cw-orange-dark);
    font-size: 1.05rem;
}

.content-section,
.brand-section,
.term-strip,
.category-list-section {
    margin-top: 34px;
}

.section-heading {
    margin: 38px 0 18px;
}

.section-heading h1,
.section-heading h2 {
    margin-top: 5px;
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.with-link > a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid rgba(214, 222, 232, .95);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    padding: 0 12px;
    box-shadow: 0 8px 18px rgba(18, 24, 38, .05);
}

.category-strip,
.brand-rail,
.product-rail {
    gap: 18px;
    padding: 4px 4px 18px;
}

.category-tile,
.brand-bubble,
.product-card,
.term-card,
.about-block,
.gallery-panel,
.buy-panel,
.car-media,
.car-info,
.panel,
.side-card,
.auth-card,
.account-hero,
.account-summary,
.account-list-item,
.error-card,
.auto-compare-card,
.pdp-gallery-card,
.pdp-summary-card,
.pdp-buybox,
.software-plan-card,
.plan-table-wrap,
.compare-scroll,
.compare-product-panel,
.compare-overview-panel,
.compare-editorial-note,
.compare-spec-panel,
.compare-side-card {
    border: 1px solid rgba(224, 231, 240, .95);
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--cw-shadow-soft);
}

.category-tile,
.term-card,
.brand-bubble {
    position: relative;
    overflow: hidden;
}

.category-tile::before,
.term-card::before,
.brand-bubble::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: var(--cw-orange);
}

.category-tile:nth-child(4n+2)::before,
.term-card:nth-child(4n+2)::before,
.brand-bubble:nth-child(4n+2)::before {
    background: var(--green);
}

.category-tile:nth-child(4n+3)::before,
.term-card:nth-child(4n+3)::before,
.brand-bubble:nth-child(4n+3)::before {
    background: var(--cw-purple);
}

.category-tile:nth-child(4n)::before,
.term-card:nth-child(4n)::before,
.brand-bubble:nth-child(4n)::before {
    background: var(--cw-pink);
}

.category-tile:hover,
.product-card:hover,
.brand-bubble:hover,
.term-card:hover,
.software-plan-card:hover,
.account-list-item:hover {
    border-color: rgba(252, 128, 25, .42);
    box-shadow: var(--cw-shadow);
    transform: translateY(-4px);
}

.category-tile {
    min-height: 176px;
    padding: 18px;
}

.category-tile img,
.term-card-media img,
.brand-logo img,
.card-media img,
.pdp-gallery-card img,
.pdp-mobile-image img,
.hero-showcase-card img {
    image-rendering: auto;
}

.category-tile img {
    height: 88px;
    filter: saturate(1.08) contrast(1.03);
}

.category-tile span,
.term-card > span:not(.term-card-media),
.brand-bubble span:last-child {
    color: var(--ink);
    font-weight: 950;
}

.category-tile small,
.term-card small {
    color: var(--muted);
    font-weight: 850;
}

.category-tile.view-all,
.brand-view-all {
    background: var(--ink);
    color: #fff;
}

.brand-rail {
    grid-auto-columns: 142px;
}

.brand-bubble {
    min-height: 150px;
    padding: 18px 12px 14px;
}

.brand-logo {
    width: 84px;
    height: 84px;
    border: 1px solid rgba(232, 237, 244, .95);
    background: #fff8ef;
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, .78);
}

.product-rail {
    grid-auto-columns: minmax(220px, 246px);
}

.card-grid {
    gap: 20px;
}

.product-card {
    border-radius: 24px;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card-media {
    height: 214px;
    border-bottom: 1px solid rgba(232, 237, 244, .95);
    border-radius: 0;
    background: #fffaf4;
}

.card-media img {
    height: 190px;
    padding: 16px;
    filter: saturate(1.06) contrast(1.04);
}

.card-body {
    gap: 10px;
    padding: 16px;
}

.card-brand {
    color: var(--cw-orange-dark);
    font-weight: 900;
}

.card-body h3 {
    min-height: 54px;
    font-size: 1rem;
    font-weight: 900;
}

.card-price {
    color: var(--ink);
    font-size: 1.16rem;
    font-weight: 950;
}

.card-meta span,
.plan-mini-specs span,
.term-pills a,
.term-strip a,
.brand-chip,
.status-pill,
.pdp-brand-chip,
.variant-list span,
.drawer-variant-btn,
.plan-tabs button,
.plan-group-filter button,
.plan-feature-filter button,
.discussion-count,
.compare-product-badges span {
    border-color: rgba(232, 237, 244, .95);
    background: #fff8ef;
    color: #536173;
    font-weight: 900;
}

.card-actions {
    gap: 10px;
}

.page-shell {
    padding: 30px 0 70px;
}

.breadcrumbs {
    color: #6b7788;
    font-weight: 750;
}

.breadcrumbs a {
    color: var(--ink);
}

.archive-header,
.comparison-hero {
    border: 1px solid rgba(224, 231, 240, .95);
    border-radius: 28px;
    background: #fff4e8;
    box-shadow: var(--cw-shadow-soft);
    padding: 28px;
}

.archive-header h1,
.pdp-summary-card h1,
.compare-detail-head h1,
.article-card h1,
.car-info h1 {
    font-weight: 950;
}

.archive-description {
    max-width: 920px;
}

.archive-search {
    max-width: 860px;
    padding: 8px;
    border: 1px solid rgba(224, 231, 240, .95);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--cw-shadow-soft);
}

.archive-search input {
    border-color: transparent;
    box-shadow: none;
}

.term-card-grid {
    gap: 18px;
}

.term-card {
    min-height: 196px;
    padding: 18px;
}

.term-card-media {
    height: 112px;
    border: 1px solid rgba(232, 237, 244, .95);
    border-radius: 18px;
    background: #fff8ef;
}

.term-card-media img {
    height: 112px;
}

.category-nav .term-card {
    min-height: 246px;
    border-radius: 28px;
    padding: 18px;
}

.category-nav .term-card-media,
.category-nav .term-card-media img {
    height: 132px;
}

.pdp-commerce {
    grid-template-columns: minmax(300px, 470px) minmax(0, 1fr) 340px;
    gap: 22px;
}

.pdp-gallery-card,
.pdp-buybox {
    top: 112px;
}

.pdp-gallery-card {
    min-height: 560px;
    padding: 28px;
    background: #fffaf4;
}

.pdp-gallery-card img {
    height: 500px;
    filter: saturate(1.07) contrast(1.04);
}

.pdp-summary-card {
    gap: 18px;
    padding: 24px;
}

.pdp-summary-card h1 {
    font-size: clamp(2rem, 2vw, 3.3rem);
    line-height: 1.04;
}

.pdp-brand-chip {
    padding: 8px 12px;
    background: #fff;
}

.pdp-brand-chip img {
    width: 32px;
    height: 32px;
}

.rating-widget {
    color: #536173;
    font-weight: 850;
}

.rating-stars button {
    color: var(--cw-orange-dark);
    font-size: 1.35rem;
}

.pdp-highlight-grid {
    gap: 12px;
}

.pdp-highlight-grid div,
.guide-grid span,
.spec-table div {
    border: 1px solid rgba(232, 237, 244, .95);
    border-radius: 18px;
    background: #fffaf4;
    padding: 14px;
}

.pdp-highlight-grid span,
.spec-table span {
    color: #6b7788;
    font-weight: 750;
}

.pdp-highlight-grid strong,
.spec-table strong {
    color: var(--ink);
    font-weight: 950;
}

.price-box {
    border: 1px solid rgba(255, 203, 153, .95);
    border-radius: 22px;
    background: #fff4e8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.price-box strong {
    color: var(--ink);
    font-size: clamp(1.8rem, 2.3vw, 2.5rem);
    font-weight: 950;
}

.price-box em {
    color: var(--green);
}

.pdp-buybox {
    padding: 18px;
}

.buybox-note {
    border-top-color: rgba(232, 237, 244, .95);
}

.auto-compare-card {
    padding: 18px;
}

.auto-compare-result {
    border-radius: 16px;
}

.panel {
    padding: 22px;
}

.panel-heading {
    margin-bottom: 16px;
}

.retailer-row,
.variant-row,
.compare-row,
.journey-row {
    border-bottom-color: rgba(232, 237, 244, .95);
}

.head,
.compare-row.head > span,
.plan-pricing-table thead th,
.plan-feature-table th {
    background: #fff4e8;
}

.retailer-row > span,
.variant-row > span,
.compare-row > span {
    padding: 14px;
}

.price-cell .offer {
    color: var(--ink);
    font-weight: 950;
}

.price-cell .discount {
    color: var(--green);
}

.plan-tabs {
    gap: 10px;
}

.plan-tabs button {
    min-height: 46px;
    border-radius: 999px;
    background: #fff;
    padding: 0 18px;
}

.plan-tabs button.active,
.drawer-variant-btn.active,
.plan-group-filter button.active,
.plan-feature-filter button.active {
    border-color: var(--cw-orange);
    background: var(--cw-orange);
    color: #fff;
    box-shadow: 0 10px 24px rgba(252, 128, 25, .24);
}

.plan-comparison-head {
    border: 1px solid rgba(232, 237, 244, .95);
    border-radius: 22px;
    background: #fffaf4;
    padding: 18px;
}

.plan-table-wrap {
    border-radius: 22px;
}

.plan-pricing-table th,
.plan-pricing-table td {
    border-color: rgba(232, 237, 244, .95);
    padding: 16px;
}

.plan-name {
    font-size: 1.04rem;
}

.plan-price {
    color: var(--cw-orange-dark);
    font-size: 1.22rem;
}

.plan-support.yes {
    border-color: rgba(19, 150, 109, .24);
    background: #eafaf4;
    color: var(--green);
}

.software-plan-card {
    border-radius: 22px;
    padding: 18px;
}

.software-plan-card li::before {
    background: var(--cw-orange);
}

.hosting-product-page .pdp-commerce {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr) 320px;
}

.hosting-product-page .pdp-gallery-card {
    min-height: 340px;
}

.hosting-product-page .pdp-gallery-card img {
    max-width: 260px;
    height: 240px;
}

.hosting-product-page .pdp-summary-card h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.hosting-product-page .pdp-highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compare-detail-hero {
    background: #fff4e8;
    border-bottom: 1px solid rgba(232, 237, 244, .95);
}

.compare-detail-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
}

.compare-product-panel {
    grid-template-rows: 270px 1fr;
}

.compare-product-image {
    background: #fffaf4;
}

.compare-product-image img {
    height: 246px;
    filter: saturate(1.06) contrast(1.04);
}

.compare-vs-mark {
    top: 134px;
    width: 58px;
    height: 58px;
    border: 5px solid #fff4e8;
    background: var(--cw-orange);
    box-shadow: 0 14px 30px rgba(252, 128, 25, .25);
}

.compare-overview-table,
.compare-scroll {
    border-radius: 18px;
}

.compare-sidebar {
    top: 112px;
}

.discussion-login-card,
.discussion-form,
.discussion-pending-note,
.discussion-empty {
    border-radius: 18px;
    background: #fffaf4;
}

.discussion-comment-body {
    border-radius: 18px;
}

.site-subfooter {
    border-top: 1px solid rgba(232, 237, 244, .95);
    background: #fff4e8;
    padding: 34px 0 24px;
}

.subfooter-inner h2 {
    color: var(--ink);
}

.footer-link-row {
    border-top-color: rgba(214, 222, 232, .95);
}

.footer-link-row-content a {
    color: #536173;
}

.site-footer {
    border-top: 0;
    background: #121826;
    color: #fff;
    padding: 38px 0 46px;
}

.footer-grid {
    gap: 28px;
}

.footer-column {
    border-radius: 22px;
    padding: 18px;
}

.footer-column strong {
    color: #fff;
}

.footer-column a {
    position: static;
    bottom: auto;
    display: inline;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    color: #ffd7b2;
}

.footer-column div,
.footer-column p,
.footer-column li {
    color: #d9e4f2;
}

.mobile-tabbar {
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
}

.mobile-tabbar a {
    border-radius: 16px;
}

.mobile-tabbar a.active {
    background: var(--cw-orange);
}

.mobile-sticky-compare {
    border-radius: 18px;
    background: var(--cw-orange);
    box-shadow: 0 16px 34px rgba(252, 128, 25, .32);
}

@media (max-width: 1200px) {
    .card-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .pdp-commerce,
    .hosting-product-page .pdp-commerce {
        grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    }

    .pdp-buybox {
        position: static;
        grid-column: 1 / -1;
    }

    .pdp-buybox .actions-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: 172px minmax(240px, 1fr) auto;
    }

    .brand,
    .brand img {
        width: 172px;
    }

    .store-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        max-width: 760px;
    }

    .hero-showcase-card:nth-child(2),
    .hero-showcase-card:nth-child(3),
    .hero-showcase-card:hover,
    .hero-showcase-card:nth-child(2):hover,
    .hero-showcase-card:nth-child(3):hover {
        transform: none;
    }

    .compare-detail-layout {
        grid-template-columns: 1fr;
    }

    .compare-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pdp-commerce,
    .hosting-product-page .pdp-commerce {
        grid-template-columns: 1fr;
    }

    .pdp-gallery-card,
    .pdp-buybox {
        position: static;
    }

    .hosting-product-page .pdp-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    body {
        padding-bottom: calc(128px + env(safe-area-inset-bottom));
    }

    .container {
        width: min(94%, 1440px);
    }

    .header-inner {
        grid-template-columns: 134px minmax(0, 1fr) 44px;
        min-height: 78px;
        gap: 8px;
    }

    .brand,
    .brand img {
        width: 134px;
        height: 62px;
    }

    .header-search input {
        min-height: 46px;
        border-radius: 14px;
        padding-left: 42px;
    }

    .pwa-install-btn:not(.menu-install-btn) {
        display: none;
    }

    .store-hero-grid {
        padding: 28px 0 30px;
    }

    .store-hero-copy h1 {
        font-size: clamp(2.05rem, 10vw, 3.1rem);
    }

    .hero-search {
        display: grid;
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .hero-search button {
        width: 100%;
    }

    .hero-showcase {
        grid-auto-flow: column;
        grid-auto-columns: minmax(210px, 72vw);
        grid-template-columns: none;
        overflow-x: auto;
        padding: 2px 2px 18px;
    }

    .hero-showcase-card {
        grid-template-rows: 148px auto auto;
    }

    .hero-showcase-card img {
        height: 148px;
    }

    .archive-header {
        padding: 20px;
        border-radius: 22px;
    }

    .archive-search {
        display: grid;
        grid-template-columns: 1fr;
    }

    .archive-search button {
        width: 100%;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-rail {
        grid-auto-columns: minmax(184px, 76vw);
    }

    .brand-rail {
        grid-auto-columns: 128px;
    }

    .category-strip {
        grid-auto-columns: minmax(164px, 56vw);
    }

    .card-media {
        height: 158px;
    }

    .card-media img {
        height: 142px;
        padding: 12px;
    }

    .card-body {
        padding: 12px;
    }

    .card-body h3 {
        min-height: 46px;
        font-size: .92rem;
    }

    .card-actions {
        gap: 8px;
    }

    .card-action {
        min-height: 38px;
        border-radius: 12px;
        font-size: .82rem;
    }

    .category-nav .term-card-rail {
        grid-auto-columns: minmax(210px, 72vw);
    }

    .pdp-summary-card,
    .panel,
    .pdp-buybox {
        padding: 16px;
        border-radius: 22px;
    }

    .pdp-summary-card h1,
    .hosting-product-page .pdp-summary-card h1 {
        font-size: clamp(1.95rem, 9vw, 2.85rem);
        overflow-wrap: anywhere;
    }

    .pdp-mobile-image {
        min-height: 226px;
        border-radius: 20px;
        background: #fffaf4;
    }

    .pdp-mobile-image img {
        height: 206px;
    }

    .pdp-mobile-price strong {
        font-size: clamp(1.9rem, 8vw, 2.5rem);
    }

    .pdp-buybox {
        display: grid;
        gap: 12px;
    }

    .pdp-buybox .price-box,
    .pdp-buybox .buybox-note {
        display: none;
    }

    .pdp-buybox .actions-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pdp-buybox .actions-row .btn,
    .pdp-buybox .actions-row button {
        width: 100%;
    }

    .hosting-product-page .pdp-highlight-grid,
    .pdp-highlight-grid,
    .spec-table,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .plan-comparison-head {
        grid-template-columns: 1fr;
    }

    .plan-tabs button {
        min-height: 42px;
        padding: 0 14px;
    }

    .compare-product-stage,
    .compare-sidebar {
        grid-template-columns: 1fr;
    }

    .compare-product-panel {
        grid-template-rows: 210px 1fr;
    }

    .compare-product-image img {
        height: 190px;
    }

    .compare-vs-mark {
        position: static;
        justify-self: center;
        margin: -8px 0;
        transform: none;
    }

    .footer-column {
        border-radius: 18px;
    }

    .mobile-sticky-compare {
        left: 14px;
        right: 14px;
        min-height: 50px;
    }
}

@media (max-width: 540px) {
    .header-inner {
        grid-template-columns: 112px minmax(0, 1fr) 42px;
        min-height: 72px;
    }

    .brand,
    .brand img {
        width: 112px;
        height: 56px;
    }

    .header-search input {
        min-height: 44px;
        font-size: .9rem;
    }

    .store-hero-grid {
        padding-top: 22px;
    }

    .store-hero-copy p {
        font-size: 1rem;
    }

    .category-tile {
        min-height: 158px;
        padding: 16px;
    }

    .category-tile img {
        height: 74px;
    }

    .card-grid {
        gap: 10px;
    }

    .product-card {
        border-radius: 18px;
    }

    .card-media {
        height: 138px;
    }

    .card-media img {
        height: 124px;
        padding: 10px;
    }

    .card-price {
        font-size: 1rem;
    }

    .btn,
    button.btn {
        min-height: 42px;
        padding-inline: 12px;
    }

    .pdp-summary-card h1,
    .hosting-product-page .pdp-summary-card h1 {
        font-size: clamp(1.8rem, 10vw, 2.35rem);
    }

    .pdp-mobile-image {
        min-height: 194px;
    }

    .pdp-mobile-image img {
        height: 176px;
    }

    .pdp-buybox .actions-row {
        grid-template-columns: 1fr;
    }

    .plan-card-fallback-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .plan-table-wrap {
        display: none;
    }

    .footer-link-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-link-row-content {
        width: 100%;
    }
}

/* CompareWiki premium white homepage mockup layer */
:root {
    --cw-white: #ffffff;
    --cw-text: #111827;
    --cw-muted: #667085;
    --cw-faint: #98a2b3;
    --cw-border: #efefef;
    --cw-border-strong: #e8e8e8;
    --cw-orange: #ff5a00;
    --cw-orange-dark: #e54f00;
    --cw-shadow-xs: 0 1px 2px rgba(17, 24, 39, .03);
    --cw-shadow-sm: 0 8px 24px rgba(17, 24, 39, .05);
    --cw-shadow-md: 0 18px 48px rgba(17, 24, 39, .08);
}

body {
    background: #fff;
    color: var(--cw-text);
}

body::before {
    display: none;
}

.container {
    width: min(88%, 1296px);
}

.site-header {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--cw-border);
    box-shadow: none;
    backdrop-filter: blur(18px);
}

.header-inner {
    grid-template-columns: 192px minmax(420px, 680px) auto;
    min-height: 76px;
    gap: 22px;
}

.brand,
.brand img {
    width: 168px;
    height: 48px;
}

.header-search {
    max-width: 680px;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) 44px;
    gap: 0;
    align-items: center;
    min-height: 48px;
    border: 1px solid var(--cw-border-strong);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--cw-shadow-xs);
    overflow: visible;
}

.header-search-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-right: 1px solid var(--cw-border);
    color: var(--cw-text);
    font-size: .84rem;
    font-weight: 750;
    white-space: nowrap;
}

.header-search-category::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.header-search input {
    min-height: 46px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    padding: 0 16px;
    color: var(--cw-text);
    font-size: .9rem;
}

.header-search button {
    width: 36px;
    min-width: 36px;
    min-height: 36px;
    height: 36px;
    margin-right: 6px;
    border-radius: 999px;
    background: var(--cw-orange);
    box-shadow: none;
    color: transparent;
    font-size: 0;
    padding: 0;
    position: relative;
}

.header-search button::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 9px;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 999px;
}

.header-search button::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transform: rotate(45deg);
}

.header-actions {
    gap: 18px;
}

.header-action-link,
.account-link,
.text-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    color: var(--cw-text);
    font-size: .9rem;
    font-weight: 760;
}

.pwa-install-btn {
    min-height: 36px;
    border-color: transparent;
    background: transparent;
    color: var(--cw-muted);
    box-shadow: none;
    padding: 0 4px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border-color: var(--cw-border-strong);
    box-shadow: none;
}

.top-category-nav {
    border-top: 1px solid #f6f6f6;
    background: #fff;
}

.top-category-nav-inner {
    display: flex;
    align-items: center;
    gap: 38px;
    min-height: 58px;
    overflow-x: auto;
    scrollbar-width: none;
}

.top-category-nav-inner::-webkit-scrollbar {
    display: none;
}

.top-category-nav a {
    flex: 0 0 auto;
    color: var(--cw-text);
    font-size: .86rem;
    font-weight: 760;
    white-space: nowrap;
}

.top-category-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 850 !important;
}

.top-category-all::before {
    content: "";
    width: 18px;
    height: 12px;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    box-shadow: inset 0 5px 0 transparent, 0 5px 0 -3px currentColor;
}

.top-category-all::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.search-results {
    border-color: var(--cw-border);
    border-radius: 16px;
    box-shadow: var(--cw-shadow-md);
}

.home-template .site-subfooter {
    display: none;
}

.premium-home {
    background: #fff;
}

.home-hero {
    background: #fff;
    border-bottom: 1px solid var(--cw-border);
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(440px, .86fr);
    gap: 96px;
    align-items: center;
    min-height: 440px;
    padding: 68px 0 54px;
}

.home-hero-copy h1 {
    max-width: 620px;
    margin: 0 0 20px;
    color: var(--cw-text);
    font-size: clamp(3.2rem, 5vw, 5.35rem);
    line-height: .98;
    font-weight: 900;
}

.home-hero-copy h1 span {
    display: block;
    color: var(--cw-orange);
}

.home-hero-copy p {
    max-width: 560px;
    margin: 0 0 34px;
    color: var(--cw-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.home-hero-search {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 96px;
    width: min(100%, 560px);
    min-height: 54px;
    border: 1px solid var(--cw-border-strong);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--cw-shadow-xs);
    overflow: visible;
}

.home-hero-search input {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 10px 0 0 10px;
    background: #fff;
    box-shadow: none;
    padding: 0 20px;
    color: var(--cw-text);
    font-size: .92rem;
}

.home-hero-search button {
    min-height: 52px;
    border: 0;
    border-radius: 0 10px 10px 0;
    background: var(--cw-orange);
    color: #fff;
    box-shadow: none;
    font-weight: 850;
}

.home-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 28px;
}

.home-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cw-muted);
    font-size: .9rem;
    font-weight: 700;
}

.trust-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: var(--cw-text);
}

.trust-free::before {
    content: "";
    width: 16px;
    height: 18px;
    border: 1.8px solid currentColor;
    border-radius: 9px 9px 11px 11px;
}

.trust-free::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 10px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg) translate(-1px, -2px);
}

.trust-user::before {
    content: "";
    width: 7px;
    height: 7px;
    border: 1.8px solid currentColor;
    border-radius: 999px;
    box-shadow: 0 10px 0 3px #fff, 0 10px 0 1px currentColor;
}

.trust-refresh::before {
    content: "";
    width: 15px;
    height: 15px;
    border: 1.8px solid currentColor;
    border-left-color: transparent;
    border-radius: 999px;
}

.trust-refresh::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 4px;
    width: 6px;
    height: 6px;
    border-top: 1.8px solid currentColor;
    border-right: 1.8px solid currentColor;
    transform: rotate(45deg);
}

.home-featured-card {
    justify-self: end;
    width: min(100%, 420px);
    border: 1px solid var(--cw-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--cw-shadow-md);
    padding: 28px;
}

.home-card-label {
    display: block;
    margin-bottom: 22px;
    color: var(--cw-text);
    font-size: .9rem;
    font-weight: 900;
}

.home-featured-product {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
}

.home-featured-product img {
    width: 128px;
    height: 128px;
    object-fit: contain;
}

.home-featured-product h2 {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--cw-text);
    font-size: 1.06rem;
    line-height: 1.34;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-featured-product small,
.home-featured-product span {
    display: block;
    color: var(--cw-muted);
    font-size: .84rem;
}

.home-featured-product span {
    margin-top: 16px;
}

.home-featured-product strong {
    display: block;
    margin-top: 2px;
    color: var(--cw-orange);
    font-size: 1.55rem;
    line-height: 1.1;
    font-weight: 950;
}

.home-compare-cta {
    display: grid;
    place-items: center;
    min-height: 46px;
    margin-top: 24px;
    border: 1px solid var(--cw-border-strong);
    border-radius: 10px;
    background: #fff;
    color: var(--cw-text);
    font-size: .9rem;
    font-weight: 850;
}

.home-section-stack {
    display: grid;
    gap: 34px;
    padding: 28px 0 48px;
}

.home-section {
    min-width: 0;
}

.home-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.home-section-head h2 {
    margin: 0;
    color: var(--cw-text);
    font-size: clamp(1.3rem, 1.8vw, 1.75rem);
    line-height: 1.2;
    font-weight: 900;
}

.home-section-head p {
    max-width: 620px;
    margin: 10px auto 0;
    color: var(--cw-muted);
}

.home-section-head.centered {
    display: block;
    text-align: center;
}

.home-section-head a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cw-orange);
    font-size: .86rem;
    font-weight: 850;
}

.home-section-head a::after {
    content: "›";
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid var(--cw-border);
    border-radius: 999px;
    background: #fff;
    color: var(--cw-text);
    font-size: 1rem;
    line-height: 1;
    box-shadow: var(--cw-shadow-sm);
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 18px;
}

.home-category-card,
.home-brand-card,
.home-product-card,
.home-comparison-card,
.home-authority-grid article,
.home-newsletter {
    border: 1px solid var(--cw-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--cw-shadow-xs);
}

.home-category-card {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 14px;
    min-height: 120px;
    padding: 18px 12px;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.home-category-card:hover,
.home-brand-card:hover,
.home-product-card:hover,
.home-comparison-card:hover,
.home-authority-grid article:hover {
    border-color: #dedede;
    box-shadow: var(--cw-shadow-sm);
    transform: translateY(-2px);
}

.home-category-card strong {
    color: var(--cw-text);
    font-size: .88rem;
    line-height: 1.25;
    text-align: center;
}

.home-category-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--cw-text);
}

.home-category-icon::before,
.home-category-icon::after {
    content: "";
    position: absolute;
}

.icon-electronics::before {
    width: 25px;
    height: 24px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
}

.icon-electronics::after {
    width: 7px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 8px;
    box-shadow: 18px 0 0 -1px #fff, 18px 0 0 0 currentColor;
    left: 6px;
    top: 20px;
}

.icon-car::before {
    width: 31px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 7px 7px 5px 5px;
    top: 16px;
}

.icon-car::after {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: currentColor;
    bottom: 8px;
    left: 8px;
    box-shadow: 22px 0 0 currentColor;
}

.icon-medicines::before {
    width: 30px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 999px;
    transform: rotate(-38deg);
}

.icon-medicines::after {
    width: 2px;
    height: 15px;
    background: currentColor;
    transform: rotate(-38deg);
}

.icon-home_appliances::before {
    width: 29px;
    height: 34px;
    border: 2px solid currentColor;
    border-radius: 5px;
}

.icon-home_appliances::after {
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 999px;
    bottom: 7px;
}

.icon-bikes::before {
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 999px;
    left: 5px;
    bottom: 9px;
    box-shadow: 21px 0 0 -2px #fff, 21px 0 0 0 currentColor;
}

.icon-bikes::after {
    width: 26px;
    height: 15px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: skewX(-28deg) rotate(-8deg);
    top: 15px;
}

.icon-software_apps::before {
    content: "</>";
    position: static;
    color: currentColor;
    font-size: 1.35rem;
    font-weight: 900;
}

.icon-hosting::before {
    width: 32px;
    height: 26px;
    border: 2px solid currentColor;
    border-radius: 5px;
}

.icon-hosting::after {
    width: 18px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 7px 0 currentColor, 0 14px 0 currentColor;
}

.icon-grocery::before {
    width: 30px;
    height: 22px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    top: 13px;
}

.icon-grocery::after {
    width: 20px;
    height: 12px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    top: 6px;
}

.home-brand-rail,
.home-product-rail,
.home-comparison-rail {
    display: grid;
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    gap: 18px;
    padding: 2px 2px 14px;
    scrollbar-width: none;
}

.home-brand-rail::-webkit-scrollbar,
.home-product-rail::-webkit-scrollbar,
.home-comparison-rail::-webkit-scrollbar {
    display: none;
}

.home-brand-rail {
    grid-auto-columns: minmax(144px, 1fr);
    gap: 0;
    padding: 26px 0 12px;
}

.home-brand-card {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 12px;
    min-height: 162px;
    padding: 14px 18px 8px;
    border: 0;
    border-right: 1px solid var(--cw-border-strong);
    border-radius: 0;
    box-shadow: none;
    text-align: center;
}

.home-brand-card:last-child {
    border-right: 0;
}

.home-brand-card:hover {
    border-color: var(--cw-border-strong);
    box-shadow: none;
    transform: translateY(-2px);
}

.home-brand-logo {
    display: grid;
    place-items: center;
    width: 100%;
    height: 58px;
}

.home-brand-logo img {
    display: none;
    width: 100%;
    max-width: 132px;
    height: 54px;
    object-fit: contain;
}

.home-brand-wordmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    color: var(--cw-text);
    font-size: 1.42rem;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1;
}

.home-brand-card[data-brand="samsung"] .home-brand-wordmark,
.home-brand-card[data-brand="philips"] .home-brand-wordmark {
    color: #1347b8;
    font-weight: 950;
    letter-spacing: 0;
}

.home-brand-card[data-brand="apple"] .home-brand-wordmark {
    color: #050505;
    font-size: 1.3rem;
}

.home-brand-card[data-brand="boat"] .home-brand-wordmark {
    color: #111827;
    font-size: 1.55rem;
}

.home-brand-card[data-brand="sony"] .home-brand-wordmark {
    color: #050505;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    letter-spacing: 0;
}

.home-brand-card[data-brand="xiaomi"] .home-brand-wordmark {
    width: 54px;
    border-radius: 16px;
    background: var(--cw-orange);
    color: #fff;
    font-size: 1.4rem;
    text-transform: lowercase;
}

.home-brand-card[data-brand="cloudflare"] .home-brand-wordmark {
    color: #f97316;
    font-size: 1.18rem;
}

.home-brand-card[data-brand="bmw"] .home-brand-wordmark {
    width: 58px;
    height: 58px;
    border: 8px solid #111827;
    border-radius: 999px;
    color: #111827;
    font-size: .82rem;
    letter-spacing: 0;
}

.home-brand-card[data-brand="mahindra"] .home-brand-wordmark {
    color: #e11d48;
    font-size: 1.18rem;
    letter-spacing: 0;
}

.home-brand-card strong {
    display: block;
    color: var(--cw-text);
    font-size: 1rem;
    font-weight: 950;
    line-height: 1.2;
}

.home-brand-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--cw-muted);
    font-size: .9rem;
    font-weight: 650;
    line-height: 1.2;
    white-space: nowrap;
}

.home-brand-count i {
    position: relative;
    width: 15px;
    height: 15px;
    border: 1.6px solid currentColor;
    border-radius: 3px;
    transform: rotate(45deg);
}

.home-brand-count i::before,
.home-brand-count i::after {
    content: "";
    position: absolute;
    background: currentColor;
}

.home-brand-count i::before {
    left: 2px;
    right: 2px;
    top: 5px;
    height: 1.5px;
}

.home-brand-count i::after {
    top: 2px;
    bottom: 2px;
    left: 5px;
    width: 1.5px;
}

.home-product-rail {
    grid-auto-columns: minmax(182px, 1fr);
}

.home-product-card {
    position: relative;
    display: grid;
    grid-template-rows: 126px 1fr;
    min-width: 0;
    overflow: hidden;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.home-product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    border: 1px solid rgba(255, 90, 0, .24);
    border-radius: 999px;
    background: #fff;
    color: var(--cw-orange);
    padding: 4px 8px;
    font-size: .68rem;
    font-weight: 900;
}

.home-product-media {
    display: grid;
    place-items: center;
    min-width: 0;
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
}

.home-product-media img {
    width: 100%;
    height: 126px;
    object-fit: contain;
    padding: 0;
}

.home-product-body {
    display: grid;
    gap: 9px;
    align-content: start;
    padding: 12px;
}

.home-product-body h3 {
    display: -webkit-box;
    min-height: 36px;
    margin: 0;
    overflow: hidden;
    color: var(--cw-text);
    font-size: .84rem;
    line-height: 1.28;
    font-weight: 850;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--cw-muted);
    font-size: .74rem;
    line-height: 1.25;
}

.home-product-meta strong {
    color: var(--cw-orange);
    font-weight: 900;
}

.home-product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
}

.home-product-compare,
.home-product-view {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 32px;
    border: 1px solid var(--cw-border-strong);
    border-radius: 9px;
    background: #fff;
    color: var(--cw-text);
    font-size: .76rem;
    font-weight: 850;
}

.home-product-compare {
    background: var(--cw-orange);
    border-color: var(--cw-orange);
    color: #fff;
}

.home-comparison-rail {
    grid-auto-columns: minmax(260px, 1fr);
}

.home-comparison-card {
    display: grid;
    justify-items: center;
    gap: 7px;
    min-height: 210px;
    padding: 16px;
    text-align: center;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.home-vs-media {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: 92px;
    overflow: hidden;
    border-radius: 10px;
}

.home-vs-media img {
    width: 100%;
    height: 92px;
    object-fit: cover;
}

.home-vs-media span {
    position: absolute;
    inset: auto auto -5px 50%;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--cw-border);
    border-radius: 999px;
    background: #fff;
    color: var(--cw-orange);
    font-size: .68rem;
    font-weight: 950;
    transform: translateX(-50%);
}

.home-comparison-card strong,
.home-comparison-card small {
    display: -webkit-box;
    overflow: hidden;
    color: var(--cw-text);
    font-size: .92rem;
    line-height: 1.25;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.home-comparison-card small {
    color: var(--cw-muted);
    font-size: .84rem;
}

.home-comparison-card em {
    display: grid;
    place-items: center;
    min-width: 82px;
    min-height: 28px;
    border: 1px solid var(--cw-border-strong);
    border-radius: 8px;
    color: var(--cw-text);
    font-size: .72rem;
    font-style: normal;
    font-weight: 850;
}

.home-trust-section {
    padding: 24px 0 0;
}

.home-authority-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-authority-grid article {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.authority-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--cw-border);
    border-radius: 14px;
    color: var(--cw-orange);
}

.authority-icon::before {
    font-size: 1.15rem;
    font-weight: 950;
}

.authority-icon.compare::before { content: "="; }
.authority-icon.trusted::before { content: "✓"; }
.authority-icon.range::before { content: "#"; }
.authority-icon.smart::before { content: "!"; }

.home-authority-grid h3 {
    margin: 0;
    color: var(--cw-text);
    font-size: 1rem;
}

.home-authority-grid p {
    margin: 0;
    color: var(--cw-muted);
    font-size: .9rem;
    line-height: 1.55;
}

.home-newsletter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: 24px;
    align-items: center;
    padding: 28px;
}

.home-newsletter h2 {
    margin: 0 0 8px;
    color: var(--cw-text);
    font-size: 1.45rem;
}

.home-newsletter p {
    margin: 0;
    color: var(--cw-muted);
}

.home-newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.home-newsletter-form input {
    min-height: 44px;
    border: 1px solid var(--cw-border-strong);
    border-radius: 10px;
    background: #fff;
    padding: 0 14px;
}

.home-newsletter-form button {
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    background: var(--cw-orange);
    color: #fff;
    padding: 0 16px;
    font-weight: 850;
}

.home-template .site-footer,
.site-footer {
    border-top: 1px solid var(--cw-border);
    background: #fff;
    color: var(--cw-text);
    padding: 42px 0 32px;
}

.footer-grid {
    grid-template-columns: 1.25fr repeat(4, minmax(0, .86fr)) 1.25fr;
    gap: 28px;
    align-items: start;
}

.footer-brand-panel,
.footer-column {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.footer-brand-panel {
    display: grid;
    gap: 16px;
}

.footer-brand-panel img {
    width: 150px;
    height: auto;
}

.footer-brand-panel p,
.footer-column div,
.footer-column p,
.footer-column li {
    color: var(--cw-muted);
    font-size: .88rem;
    line-height: 1.65;
}

.footer-column strong {
    color: var(--cw-text);
    font-size: .9rem;
    font-weight: 900;
    text-transform: none;
}

.footer-column a {
    color: var(--cw-muted);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--cw-border);
    border-radius: 999px;
    color: var(--cw-text);
    font-size: .72rem;
    font-weight: 850;
}

.footer-socials a img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.footer-legal-strip {
    border-top: 1px solid var(--cw-border);
    background: #fff;
    color: var(--cw-muted);
    font-size: .84rem;
    padding: 14px 0 22px;
}

.footer-legal-strip .container {
    text-align: center;
}

.footer-legal-strip a {
    color: var(--cw-text);
    font-weight: 850;
}

.compare-table-cols-1 { --compare-columns: 1; }
.compare-table-cols-2 { --compare-columns: 2; }
.compare-table-cols-3 { --compare-columns: 3; }
.compare-table-cols-4 { --compare-columns: 4; }

.auth-card-wide {
    width: min(680px, 100%);
}

.phone-verification-form {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    margin-top: 18px;
}

.browser-verification-code {
    display: grid;
    gap: 4px;
    border: 1px solid rgba(252, 128, 25, .28);
    border-radius: 16px;
    background: #fff8f1;
    padding: 16px;
    margin: 16px 0;
}

.browser-verification-code span,
.browser-verification-code small {
    color: var(--cw-muted);
    font-weight: 750;
}

.browser-verification-code strong {
    color: var(--cw-text);
    font-size: 1.35rem;
    letter-spacing: .08em;
}

.auth-registration-flow {
    margin-top: 16px;
}

.interest-picker {
    border: 1px solid var(--cw-border);
    border-radius: 16px;
    padding: 16px;
}

.interest-picker legend {
    padding: 0 8px;
    color: var(--cw-text);
    font-weight: 900;
}

.interest-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.interest-option {
    display: flex !important;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--cw-border);
    border-radius: 14px;
    background: #fff;
    padding: 10px 12px;
}

.interest-option input {
    width: auto;
    min-height: auto;
}

.form-success {
    border: 1px solid rgba(22, 163, 74, .28);
    border-radius: 14px;
    background: #f0fdf4;
    color: #166534;
    padding: 10px 12px;
    font-weight: 800;
}

.auth-form input:disabled,
.auth-form button:disabled,
.interest-picker:disabled {
    cursor: not-allowed;
    opacity: .58;
}

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

.software-cro-page .hosting-cro-title-row span {
    background: #fff7ed;
    color: var(--cw-orange-dark);
}

.software-cro-page .hosting-cro-logo-card img {
    object-fit: contain;
    padding: 22px;
}

@media (max-width: 720px) {
    .phone-verification-form,
    .footer-social-editor,
    .interest-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1180px) {
    .header-inner {
        grid-template-columns: 160px minmax(320px, 1fr) auto;
    }

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

    .top-category-nav-inner {
        gap: 28px;
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
        gap: 42px;
        min-height: auto;
    }

    .home-featured-card {
        justify-self: start;
    }

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

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

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

@media (max-width: 780px) {
    .container {
        width: min(92%, 1296px);
    }

    .header-inner {
        grid-template-columns: 126px minmax(0, 1fr) 44px;
        min-height: 70px;
        gap: 10px;
    }

    .brand,
    .brand img {
        width: 126px;
        height: 42px;
    }

    .header-search {
        grid-template-columns: minmax(0, 1fr);
        min-height: 42px;
        border-radius: 999px;
    }

    .header-search-category,
    .header-search button {
        display: none;
    }

    .header-search input {
        min-height: 40px;
        border-radius: 999px;
        padding: 0 14px;
        font-size: .84rem;
    }

    .header-action-link,
    .account-link,
    .header-actions form {
        display: none;
    }

    .top-category-nav-inner {
        min-height: 48px;
        gap: 22px;
    }

    .home-hero-grid {
        padding: 42px 0 36px;
    }

    .home-hero-copy h1 {
        font-size: clamp(2.7rem, 13vw, 4.2rem);
    }

    .home-hero-copy p {
        font-size: .98rem;
    }

    .home-hero-search {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .home-hero-search input {
        border-radius: 12px 12px 0 0;
    }

    .home-hero-search button {
        border-radius: 0 0 12px 12px;
    }

    .home-trust-row {
        gap: 16px 24px;
    }

    .home-featured-card {
        width: 100%;
    }

    .home-featured-product {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    .home-featured-product img {
        width: 104px;
        height: 104px;
    }

    .home-section-stack {
        gap: 30px;
    }

    .home-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .home-brand-rail {
        grid-auto-columns: 158px;
        padding-top: 18px;
    }

    .home-brand-card {
        min-height: 148px;
        padding: 10px 18px 6px;
    }

    .home-brand-logo {
        height: 50px;
    }

    .home-brand-logo img {
        height: 48px;
    }

    .home-brand-card strong {
        font-size: .94rem;
    }

    .home-brand-count {
        font-size: .82rem;
    }

    .home-product-rail {
        grid-auto-columns: minmax(168px, 72vw);
    }

    .home-comparison-rail {
        grid-auto-columns: minmax(164px, 68vw);
    }

    .home-authority-grid,
    .home-newsletter,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .home-newsletter {
        padding: 22px;
    }
}

@media (max-width: 540px) {
    .container {
        width: min(94%, 1296px);
    }

    .header-inner {
        grid-template-columns: 112px minmax(0, 1fr) 42px;
    }

    .brand,
    .brand img {
        width: 112px;
        height: 38px;
    }

    .home-category-card {
        min-height: 112px;
    }

    .home-section-head {
        align-items: flex-start;
        flex-direction: row;
    }

    .home-section-head h2 {
        font-size: 1.18rem;
    }
}

/* Shared recent comparison card style */
.home-section-head > div p {
    max-width: none;
    margin: 8px 0 0;
    color: var(--cw-muted);
    font-size: 1rem;
}

.recent-comparison-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.home-comparison-rail.recent-comparison-rail {
    grid-auto-flow: row;
    grid-auto-columns: initial;
    overflow: visible;
    padding: 0;
}

.recent-comparison-card {
    display: grid;
    gap: 18px;
    min-width: 0;
    border: 1px solid var(--cw-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .06);
    padding: 20px;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.recent-comparison-card:hover {
    border-color: #dedede;
    box-shadow: 0 18px 44px rgba(17, 24, 39, .09);
    transform: translateY(-2px);
}

.recent-comparison-media {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    min-height: 138px;
}

.comparison-product-shot {
    display: block;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    background: #fafafa;
}

.comparison-product-shot img {
    width: 100%;
    height: 138px;
    object-fit: cover;
    padding: 0;
}

.comparison-vs-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 8px solid #fff;
    border-radius: 999px;
    background: #fff;
    color: var(--cw-orange);
    font-size: 1.15rem;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(17, 24, 39, .1);
    transform: translate(-50%, -50%);
}

.recent-comparison-title {
    display: -webkit-box;
    min-height: 54px;
    margin: 0;
    overflow: hidden;
    color: var(--cw-text);
    font-size: 1.12rem;
    line-height: 1.28;
    font-weight: 950;
    text-align: center;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recent-comparison-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    border: 1px solid var(--cw-border-strong);
    border-radius: 12px;
    background: #fff;
    color: var(--cw-orange);
    font-weight: 950;
}

.recent-comparison-cta i {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    position: relative;
}

.recent-comparison-cta i::before,
.recent-comparison-cta i::after {
    content: "";
    position: absolute;
    right: 0;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.recent-comparison-cta i::before {
    top: -3px;
    transform: rotate(45deg);
}

.recent-comparison-cta i::after {
    top: 3px;
    transform: rotate(-45deg);
}

.compare-sidebar .recent-comparison-rail,
.sidebar .recent-comparison-rail {
    grid-template-columns: 1fr;
    gap: 14px;
}

.compare-sidebar .recent-comparison-card,
.sidebar .recent-comparison-card {
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .05);
}

.compare-sidebar .recent-comparison-media,
.sidebar .recent-comparison-media {
    min-height: 96px;
}

.compare-sidebar .comparison-product-shot img,
.sidebar .comparison-product-shot img {
    height: 96px;
}

.compare-sidebar .comparison-vs-badge,
.sidebar .comparison-vs-badge {
    width: 48px;
    height: 48px;
    border-width: 7px;
    font-size: .95rem;
}

.compare-sidebar .recent-comparison-title,
.sidebar .recent-comparison-title {
    min-height: 42px;
    font-size: .95rem;
}

.compare-sidebar .recent-comparison-cta,
.sidebar .recent-comparison-cta {
    min-height: 40px;
    border-radius: 10px;
    font-size: .9rem;
}

@media (max-width: 1180px) {
    .recent-comparison-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .recent-comparison-rail {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .recent-comparison-card {
        padding: 16px;
    }

    .comparison-product-shot img {
        height: 116px;
    }

    .recent-comparison-media {
        min-height: 116px;
    }
}

/* Compare List discovery hub */
.compare-hub-shell {
    background: #fff;
    color: #111827;
    padding: 14px 0 64px;
}

.compare-hub-container {
    width: min(calc(100% - 48px), 1440px);
    margin: 0 auto;
}

.compare-hub-breadcrumbs {
    margin: 0 0 24px;
}

.compare-hub-hero {
    display: grid;
    gap: 26px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(17, 24, 39, .06);
    padding: 46px 42px 36px;
}

.compare-hub-hero-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.compare-hub-hero h1 {
    margin: 0;
    color: #111827;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: 0;
}

.compare-hub-hero h1 span {
    color: #ff5a1f;
}

.compare-hub-hero p {
    max-width: 650px;
    margin: 12px auto 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.7;
}

.compare-hub-builder {
    display: grid;
    grid-template-columns: 220px minmax(240px, 1fr) 48px minmax(240px, 1fr) 172px;
    gap: 12px;
    align-items: end;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
}

.compare-hub-builder.is-scoped {
    grid-template-columns: minmax(260px, 1fr) 48px minmax(260px, 1fr) 172px;
    max-width: 1060px;
}

.compare-hub-select,
.compare-hub-filter-row label {
    display: grid;
    gap: 6px;
    min-width: 0;
    position: relative;
}

.compare-hub-select span,
.compare-hub-filter-row label span {
    color: #667085;
    font-size: 11px;
    font-weight: 850;
}

.compare-hub-select select,
.compare-hub-autocomplete input,
.compare-hub-filter-row input,
.compare-hub-filter-row select {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    color: #111827;
    padding: 0 14px;
    font: inherit;
    font-weight: 760;
    outline: 0;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.compare-hub-select select,
.compare-hub-filter-row select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    line-height: 1;
    padding-right: 42px;
}

.compare-hub-field-select::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 18px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #667085;
    border-bottom: 2px solid #667085;
    pointer-events: none;
    transform: rotate(45deg);
}

.compare-hub-select select:focus,
.compare-hub-autocomplete input:focus,
.compare-hub-filter-row input:focus,
.compare-hub-filter-row select:focus {
    border-color: #ffb199;
    box-shadow: 0 0 0 4px rgba(255, 90, 31, .1);
}

.compare-hub-autocomplete {
    position: relative;
    min-width: 0;
}

.compare-hub-builder-vs,
.compare-hub-vs {
    display: grid;
    place-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    font-size: 14px;
    font-weight: 950;
}

.compare-hub-builder-vs {
    width: 48px;
    height: 48px;
    align-self: end;
}

.compare-hub-primary,
.compare-hub-card-cta,
.compare-hub-load-more,
.compare-hub-filter-row button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid #ff5a1f;
    border-radius: 14px;
    background: #ff5a1f;
    color: #fff;
    padding: 0 22px;
    font: inherit;
    font-weight: 950;
    white-space: nowrap;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}

.compare-hub-primary:hover,
.compare-hub-card-cta:hover,
.compare-hub-load-more:hover {
    box-shadow: 0 14px 28px rgba(255, 90, 31, .18);
    transform: translateY(-1px);
}

.compare-hub-primary:disabled {
    border-color: #e5e7eb;
    background: #f3f4f6;
    color: #98a2b3;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.compare-hub-builder-message {
    grid-column: 1 / -1;
    min-height: 20px;
    margin: -4px 0 0;
    color: #667085;
    font-size: 13px;
    font-weight: 760;
    text-align: center;
}

.compare-hub-results {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 20;
    display: none;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 50px rgba(17, 24, 39, .12);
}

.compare-hub-results.active {
    display: grid;
}

.compare-hub-results .empty {
    margin: 0;
    padding: 16px;
    color: #667085;
    font-size: 14px;
    font-weight: 760;
}

.compare-hub-result {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
    padding: 12px;
    text-align: left;
}

.compare-hub-result:last-child {
    border-bottom: 0;
}

.compare-hub-result:hover {
    background: #fff7f3;
}

.compare-hub-result span:first-child {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    overflow: hidden;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    background: #fff;
}

.compare-hub-result img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.compare-hub-result strong,
.compare-hub-result small {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compare-hub-result strong {
    color: #111827;
    font-size: 14px;
    font-weight: 900;
}

.compare-hub-result small {
    margin-top: 2px;
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.compare-hub-popular {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.compare-hub-popular > span {
    color: #667085;
    font-size: 14px;
    font-weight: 850;
}

.compare-hub-popular a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    color: #111827;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 8px 20px rgba(17, 24, 39, .04);
}

.compare-hub-popular a:hover {
    border-color: #ffb199;
    color: #ff5a1f;
}

.compare-hub-section {
    margin-top: 44px;
}

.compare-hub-section-head,
.compare-hub-all-head,
.compare-hub-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.compare-hub-section-head {
    margin-bottom: 22px;
}

.compare-hub-section-head h2,
.compare-hub-all-head h2,
.compare-hub-final-cta h2 {
    margin: 0;
    color: #111827;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 950;
}

.compare-hub-section-head a {
    color: #667085;
    font-size: 14px;
    font-weight: 900;
}

.compare-hub-section-head a:hover {
    color: #ff5a1f;
}

.compare-hub-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.compare-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.compare-hub-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 24, 39, .06);
    padding: 20px;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.compare-hub-card[hidden] {
    display: none;
}

.compare-hub-card:hover {
    border-color: #ffd0c1;
    box-shadow: 0 20px 46px rgba(17, 24, 39, .09);
    transform: translateY(-2px);
}

.compare-hub-card-media {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.compare-hub-product-shot {
    display: grid;
    place-items: center;
    min-width: 0;
    height: 154px;
    overflow: hidden;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    background: #fff;
}

.compare-hub-product-shot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.compare-hub-vs {
    width: 52px;
    height: 52px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .08);
}

.compare-hub-card-body {
    display: grid;
    align-content: start;
    gap: 14px;
    padding-top: 18px;
}

.compare-hub-card h3 {
    display: -webkit-box;
    min-height: 52px;
    margin: 0;
    overflow: hidden;
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 950;
    letter-spacing: 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.compare-hub-card.is-featured h3 {
    text-align: center;
}

.compare-hub-updated {
    color: #667085;
    font-size: 13px;
    font-weight: 760;
}

.compare-hub-card-cta {
    min-height: 46px;
    border-color: #ffd0c1;
    background: #fff;
    color: #ff5a1f;
    gap: 9px;
    padding: 0 16px;
    font-size: 14px;
}

.compare-hub-card-cta span {
    width: 15px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    position: relative;
}

.compare-hub-card-cta span::before,
.compare-hub-card-cta span::after {
    content: "";
    position: absolute;
    right: 0;
    width: 7px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.compare-hub-card-cta span::before {
    top: -3px;
    transform: rotate(45deg);
}

.compare-hub-card-cta span::after {
    top: 3px;
    transform: rotate(-45deg);
}

.compare-hub-shortcuts {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px;
}

.compare-hub-shortcuts a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    place-items: center;
    align-items: center;
    min-height: 74px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    color: #111827;
    padding: 14px;
    font: inherit;
    font-weight: 900;
    text-align: left;
    box-shadow: 0 10px 26px rgba(17, 24, 39, .045);
    transition: border-color .16s ease, box-shadow .16s ease, color .16s ease, transform .16s ease;
}

.compare-hub-shortcuts a:hover,
.compare-hub-shortcuts a.active {
    border-color: #ffd0c1;
    color: #ff5a1f;
    box-shadow: 0 16px 34px rgba(17, 24, 39, .07);
    transform: translateY(-1px);
}

.compare-hub-shortcuts a span {
    width: 34px;
    height: 34px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    position: relative;
}

.compare-hub-shortcuts a span::before,
.compare-hub-shortcuts a span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.compare-hub-shortcuts a span::before {
    width: 16px;
    height: 2px;
}

.compare-hub-shortcuts a span::after {
    width: 2px;
    height: 16px;
}

.compare-hub-filter-row {
    display: grid;
    grid-template-columns: minmax(300px, 1.35fr) minmax(180px, .75fr) minmax(180px, .75fr) minmax(180px, .75fr) 100px;
    gap: 12px;
    align-items: end;
    margin-bottom: 28px;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    background: #fbfcfd;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .04);
    padding: 14px;
}

.compare-hub-filter-row button {
    min-height: 48px;
    border-color: #e5e7eb;
    background: #fff;
    color: #111827;
    padding: 0 16px;
}

.compare-hub-filter-row button:hover {
    border-color: #ffd0c1;
    color: #ff5a1f;
}

.compare-hub-all-head {
    justify-content: flex-start;
    margin-bottom: 22px;
}

.compare-hub-all-head span {
    color: #667085;
    font-size: 14px;
    font-weight: 800;
}

.compare-hub-empty {
    margin: 22px 0 0;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    color: #667085;
    padding: 22px;
    text-align: center;
    font-weight: 850;
}

.compare-hub-load-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.compare-hub-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.compare-hub-pagination nav {
    width: 100%;
}

.compare-hub-pagination a,
.compare-hub-pagination span {
    border-radius: 10px;
}

.compare-hub-load-more {
    border-color: #e5e7eb;
    background: #fff;
    color: #111827;
}

.compare-hub-load-more:hover {
    border-color: #ffd0c1;
    color: #ff5a1f;
}

.compare-hub-final-cta {
    margin-top: 54px;
    border: 1px solid #ffd0c1;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(17, 24, 39, .055);
    padding: 32px 38px;
}

.compare-hub-final-cta p {
    margin: 8px 0 0;
    color: #667085;
    font-size: 16px;
    font-weight: 760;
}

.compare-hub-final-cta .compare-hub-primary {
    min-height: 52px;
}

@media (max-width: 1180px) {
    .compare-hub-builder {
        grid-template-columns: minmax(200px, .8fr) minmax(250px, 1fr) 48px minmax(250px, 1fr);
    }

    .compare-hub-builder.is-scoped {
        grid-template-columns: minmax(250px, 1fr) 48px minmax(250px, 1fr);
    }

    .compare-hub-builder .compare-hub-primary {
        grid-column: 1 / -1;
    }

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

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

    .compare-hub-filter-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .compare-hub-shell {
        padding-top: 12px;
    }

    .compare-hub-container {
        width: min(calc(100% - 28px), 1440px);
    }

    .compare-hub-hero {
        gap: 24px;
        padding: 38px 18px 28px;
    }

    .compare-hub-hero h1 {
        font-size: 36px;
    }

    .compare-hub-hero p {
        font-size: 16px;
    }

    .compare-hub-builder,
    .compare-hub-filter-row {
        grid-template-columns: 1fr;
    }

    .compare-hub-builder.is-scoped {
        grid-template-columns: 1fr;
    }

    .compare-hub-builder-vs {
        display: none;
    }

    .compare-hub-primary,
    .compare-hub-card-cta,
    .compare-hub-load-more,
    .compare-hub-filter-row button {
        width: 100%;
    }

    .compare-hub-featured-grid,
    .compare-hub-grid,
    .compare-hub-shortcuts {
        grid-template-columns: 1fr;
    }

    .compare-hub-section {
        margin-top: 40px;
    }

    .compare-hub-section-head,
    .compare-hub-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .compare-hub-all-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .compare-hub-product-shot {
        height: 132px;
    }

    .compare-hub-final-cta {
        padding: 26px 18px;
    }
}

/* Premium reusable category template */
.minimal-header-template {
    background: #fff;
}

.site-header-minimal {
    border-bottom: 0;
    box-shadow: none;
}

.site-header-minimal .header-inner {
    display: flex;
    justify-content: flex-start;
    min-height: 82px;
}

.category-page-shell {
    background: #fff;
    color: #111827;
    overflow-x: hidden;
}

.category-hero-section {
    padding: 22px 0 44px;
}

.category-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .78fr);
    gap: 72px;
    align-items: center;
}

.category-hero-grid > *,
.category-hero-copy,
.category-hero-card {
    min-width: 0;
}

.category-breadcrumbs {
    margin: 0 0 26px;
}

.category-hero-copy h1 {
    max-width: 760px;
    margin: 0;
    color: #111827;
    font-size: clamp(2.55rem, 5vw, 4.4rem);
    line-height: .98;
    font-weight: 950;
}

.category-hero-copy p {
    max-width: 650px;
    margin: 18px 0 0;
    color: #6b7280;
    font-size: 1.08rem;
    line-height: 1.7;
}

.category-hero-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    max-width: 650px;
    width: 100%;
    min-height: 54px;
    margin-top: 26px;
    overflow: hidden;
    border: 1px solid #efefef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(17, 24, 39, .04);
}

.category-hero-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    padding: 0 18px;
    color: #111827;
    font: inherit;
    outline: 0;
}

.category-hero-search button,
.category-hero-actions button,
.category-card-btn,
.category-view-more {
    border: 0;
    background: #ff5a1f;
    color: #fff;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.category-popular-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    max-width: 720px;
    margin-top: 18px;
    color: #6b7280;
    font-size: .88rem;
    font-weight: 700;
}

.category-popular-searches a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #efefef;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    font-weight: 750;
    box-shadow: 0 8px 20px rgba(17, 24, 39, .035);
}

.category-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 650px;
    margin-top: 30px;
    border: 1px solid #efefef;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(17, 24, 39, .055);
}

.category-stat-grid article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 2px 12px;
    align-items: center;
    min-height: 86px;
    padding: 18px;
    border-right: 1px solid #efefef;
}

.category-stat-grid article:last-child {
    border-right: 0;
}

.category-stat-grid strong {
    color: #111827;
    font-size: 1.08rem;
    font-weight: 950;
}

.category-stat-grid small {
    grid-column: 2;
    color: #6b7280;
    font-size: .76rem;
    font-weight: 700;
}

.category-stat-icon {
    grid-row: span 2;
    width: 28px;
    height: 28px;
    border: 2px solid #111827;
    border-radius: 8px;
}

.category-stat-icon.variants {
    border-radius: 999px;
}

.category-stat-icon.brands {
    transform: rotate(45deg);
}

.category-stat-icon.offers,
.category-stat-icon.updated {
    border-color: #ff5a1f;
}

.category-hero-card {
    display: grid;
    gap: 18px;
    border: 1px solid #efefef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(17, 24, 39, .08);
    padding: 24px;
}

.category-hero-card-head,
.category-card-kicker,
.category-catalog-toolbar,
.category-section-head,
.category-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.category-hero-card h2 {
    margin: 0;
    color: #111827;
    font-size: 1.5rem;
    line-height: 1.15;
    font-weight: 950;
}

.category-hero-rating,
.category-card-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid #efefef;
    border-radius: 10px;
    color: #111827;
    font-weight: 900;
}

.category-hero-rating::before,
.category-card-rating::before {
    content: "★";
    color: #f59e0b;
}

.category-hero-media {
    display: grid;
    place-items: center;
    min-height: 290px;
    border-radius: 16px;
    background: #fff;
}

.category-hero-media img {
    width: 100%;
    height: 290px;
    object-fit: contain;
}

.category-hero-card-foot {
    display: grid;
    gap: 12px;
}

.category-hero-card-foot span,
.category-card-price span {
    display: block;
    color: #6b7280;
    font-size: .86rem;
    font-weight: 700;
}

.category-hero-card-foot strong,
.category-card-price strong {
    display: block;
    margin-top: 4px;
    color: #ff5a1f;
    font-size: 1.35rem;
    font-weight: 950;
}

.category-hero-meta,
.category-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: #6b7280;
    font-size: .84rem;
    font-weight: 700;
}

.category-hero-meta span,
.category-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-hero-meta span:not(:last-child)::after,
.category-card-meta span:not(:last-child)::after {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #d1d5db;
}

.category-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}

.category-hero-actions a,
.category-hero-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 11px;
    font-weight: 900;
}

.category-hero-actions a {
    border: 1px solid #efefef;
    background: #fff;
    color: #111827;
}

.category-section {
    padding: 28px 0;
}

.category-section-head {
    margin-bottom: 20px;
}

.category-section-head h2 {
    margin: 0;
    color: #111827;
    font-size: 1.65rem;
    line-height: 1.2;
    font-weight: 950;
}

.category-section-head p {
    margin: 8px 0 0;
    color: #6b7280;
    font-size: .98rem;
}

.category-section-head a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff5a1f;
    font-weight: 900;
}

.category-section-head a::after {
    content: "→";
    color: currentColor;
}

.category-brand-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(150px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 14px;
    scrollbar-width: none;
}

.category-brand-rail::-webkit-scrollbar,
.category-comparison-rail::-webkit-scrollbar {
    display: none;
}

.category-brand-card {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-height: 156px;
    padding: 16px 14px;
    border: 1px solid #efefef;
    border-radius: 16px;
    background: #fff;
    text-align: center;
    box-shadow: 0 10px 28px rgba(17, 24, 39, .045);
}

.category-brand-logo {
    display: grid;
    place-items: center;
    width: 100%;
    height: 54px;
}

.category-brand-logo img {
    display: none;
    width: 100%;
    max-width: 112px;
    height: 54px;
    object-fit: contain;
}

.category-brand-wordmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    color: #111827;
    font-size: 1.22rem;
    line-height: 1;
    font-weight: 950;
    text-align: center;
}

.category-brand-card strong {
    color: #111827;
    font-size: .92rem;
    font-weight: 950;
}

.category-brand-card small,
.category-brand-card em {
    color: #6b7280;
    font-size: .8rem;
    font-style: normal;
    font-weight: 700;
}

.category-brand-card em {
    color: #ff5a1f;
}

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

.category-comparison-rail .comparison-product-shot {
    background: #fff;
}

.category-comparison-rail .comparison-product-shot img {
    object-fit: contain;
    padding: 8px;
}

.category-catalog-section {
    padding-top: 18px;
}

.category-catalog-toolbar {
    margin-bottom: 18px;
}

.category-catalog-toolbar strong {
    color: #111827;
    font-size: 1rem;
    font-weight: 900;
}

.category-catalog-toolbar label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid #efefef;
    border-radius: 12px;
    color: #6b7280;
    font-size: .86rem;
    font-weight: 700;
}

.category-catalog-toolbar select {
    border: 0;
    background: transparent;
    color: #111827;
    font: inherit;
    font-weight: 850;
    outline: 0;
}

.category-filter-toggle {
    display: none;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #efefef;
    border-radius: 12px;
    background: #fff;
    color: #111827;
    font: inherit;
    font-weight: 900;
}

.category-catalog-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.category-filter-sidebar {
    position: sticky;
    top: 94px;
    display: grid;
    gap: 16px;
    border: 1px solid #efefef;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 24, 39, .05);
    padding: 18px;
}

.category-filter-head strong {
    color: #111827;
    font-size: .96rem;
    font-weight: 950;
}

.category-filter-head button {
    border: 0;
    background: transparent;
    color: #6b7280;
    font: inherit;
    font-size: .8rem;
    font-weight: 850;
    cursor: pointer;
}

.category-filter-close {
    display: none;
}

.category-filter-group {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0 0 16px;
    border: 0;
    border-bottom: 1px solid #efefef;
}

.category-filter-group:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.category-filter-group legend {
    margin-bottom: 2px;
    color: #111827;
    font-size: .88rem;
    font-weight: 950;
}

.category-filter-group label {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    gap: 9px;
    align-items: center;
    color: #4b5563;
    font-size: .86rem;
    font-weight: 700;
}

.category-filter-group input {
    width: 16px;
    height: 16px;
    accent-color: #ff5a1f;
}

.category-filter-group small {
    color: #9ca3af;
    font-weight: 750;
}

.category-listing-area {
    display: grid;
    gap: 24px;
}

.category-grid-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.category-listing-card {
    min-height: 218px;
    overflow: hidden;
    border: 1px solid #efefef;
    border-radius: 16px;
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.category-listing-card:hover {
    border-color: #e5e7eb;
    box-shadow: 0 18px 42px rgba(17, 24, 39, .075);
    transform: translateY(-2px);
}

.category-card-media {
    display: grid;
    place-items: center;
    min-height: 218px;
    padding: 16px;
    background: #fff;
}

.category-card-media img {
    width: 100%;
    height: 170px;
    object-fit: contain;
}

.category-card-body {
    display: grid;
    align-content: center;
    gap: 9px;
    padding: 16px 16px 16px 4px;
}

.category-card-kicker a,
.category-card-kicker span {
    color: #6b7280;
    font-size: .75rem;
    font-weight: 800;
}

.category-card-body h3 {
    margin: 0;
    color: #111827;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 950;
}

.category-card-body h3 a {
    display: -webkit-box;
    overflow: hidden;
    color: inherit;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.category-card-price strong {
    font-size: .98rem;
}

.category-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 4px;
}

.category-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 10px;
    padding: 0 10px;
    font-size: .74rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
}

.category-card-btn.secondary {
    border: 1px solid #efefef;
    background: #fff;
    color: #111827;
    white-space: nowrap;
}

.category-view-more {
    justify-self: center;
    min-height: 46px;
    padding: 0 28px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(255, 90, 31, .16);
}

.category-view-more:disabled {
    cursor: wait;
    opacity: .7;
}

.category-filter-empty {
    margin: 0;
    padding: 22px;
    border: 1px solid #efefef;
    border-radius: 16px;
    color: #6b7280;
    text-align: center;
}

.category-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 30px 0 46px;
}

.category-trust-grid article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 4px 14px;
    align-items: start;
    border: 1px solid #efefef;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .045);
    padding: 18px;
}

.category-trust-grid strong {
    color: #111827;
    font-size: .9rem;
    font-weight: 950;
}

.category-trust-grid p {
    grid-column: 2;
    margin: 0;
    color: #6b7280;
    font-size: .8rem;
    line-height: 1.55;
}

.trust-icon {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    border: 1px solid #efefef;
    border-radius: 12px;
    background: #fff;
}

.category-about-block {
    margin-bottom: 38px;
}

@media (max-width: 1180px) {
    .category-hero-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .category-hero-card {
        max-width: 720px;
    }

    .category-catalog-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 22px;
    }

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

    .category-comparison-rail.recent-comparison-rail,
    .category-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .site-header-minimal .header-inner {
        min-height: 70px;
    }

    .category-hero-section {
        padding-top: 12px;
    }

    .category-hero-copy h1 {
        font-size: clamp(2.2rem, 12vw, 3.4rem);
    }

    .category-hero-search,
    .category-hero-actions {
        grid-template-columns: 1fr;
    }

    .category-hero-search button {
        min-height: 48px;
    }

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

    .category-stat-grid article:nth-child(2) {
        border-right: 0;
    }

    .category-stat-grid article:nth-child(-n+2) {
        border-bottom: 1px solid #efefef;
    }

    .category-hero-media,
    .category-hero-media img {
        min-height: 220px;
        height: 220px;
    }

    .category-brand-rail,
    .category-comparison-rail.recent-comparison-rail {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(238px, 76vw);
        grid-template-columns: none;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        padding-bottom: 14px;
    }

    .category-comparison-rail.recent-comparison-rail {
        gap: 16px;
    }

    .category-catalog-toolbar {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .category-catalog-toolbar label {
        grid-column: 1 / -1;
        justify-content: space-between;
    }

    .category-filter-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .category-catalog-layout {
        display: block;
    }

    .category-filter-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 80;
        width: min(88vw, 340px);
        overflow-y: auto;
        border-radius: 0 18px 18px 0;
        transform: translateX(-105%);
        transition: transform .2s ease;
    }

    .category-filter-sidebar.active {
        transform: translateX(0);
    }

    .category-filter-close {
        position: relative;
        display: inline-grid;
        place-items: center;
        width: 32px;
        height: 32px;
        border: 1px solid #efefef !important;
        border-radius: 999px;
    }

    .category-filter-close::before,
    .category-filter-close::after {
        content: "";
        position: absolute;
        width: 14px;
        height: 2px;
        border-radius: 999px;
        background: #111827;
    }

    .category-filter-close::before {
        transform: rotate(45deg);
    }

    .category-filter-close::after {
        transform: rotate(-45deg);
    }

    .category-grid-items,
    .category-trust-grid {
        grid-template-columns: 1fr;
    }

    .category-listing-card {
        grid-template-columns: 40% minmax(0, 1fr);
    }
}

@media (max-width: 540px) {
    .category-section-head,
    .category-hero-card-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-stat-grid {
        grid-template-columns: 1fr;
    }

    .category-stat-grid article {
        border-right: 0;
        border-bottom: 1px solid #efefef;
    }

    .category-stat-grid article:last-child {
        border-bottom: 0;
    }

    .category-listing-card {
        grid-template-columns: 1fr;
    }

    .category-card-media {
        min-height: 180px;
        padding-bottom: 0;
    }

    .category-card-media img {
        height: 160px;
    }

    .category-card-body {
        padding: 14px 16px 16px;
    }
}

/* Category page revisions */
.category-stat-grid {
    overflow: hidden;
}

.category-stat-grid article {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.category-stat-grid small {
    grid-column: auto;
}

.category-stat-icon {
    display: none;
}

.category-brand-card {
    min-height: 128px;
}

@media (max-width: 780px) {
    .category-stat-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(132px, 1fr);
        overflow-x: auto;
        scrollbar-width: none;
    }

    .category-stat-grid::-webkit-scrollbar {
        display: none;
    }

    .category-stat-grid article,
    .category-stat-grid article:nth-child(2),
    .category-stat-grid article:nth-child(-n+2),
    .category-stat-grid article:last-child {
        min-height: 82px;
        border-right: 1px solid #efefef;
        border-bottom: 0;
    }

    .category-stat-grid article:last-child {
        border-right: 0;
    }
}

@media (max-width: 540px) {
    .category-stat-grid {
        grid-template-columns: none;
        grid-auto-columns: minmax(88px, 1fr);
    }

    .category-hero-copy h1 {
        max-width: 100%;
        font-size: clamp(2rem, 10vw, 2.45rem);
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .category-hero-card {
        overflow: hidden;
    }

    .category-hero-card h2 {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .category-hero-meta,
    .category-card-meta {
        gap: 7px 10px;
    }

    .category-hero-actions a,
    .category-hero-actions button {
        width: 100%;
    }
}

/* Premium comparison-first PDP */
.pdp-premium-page {
    --pdp-ink: #111827;
    --pdp-muted: #6b7280;
    --pdp-line: #efefef;
    --pdp-orange: #ff5a1f;
    --pdp-soft: #fafafa;
    --pdp-shadow: 0 18px 46px rgba(17, 24, 39, .07);
    --pdp-shadow-soft: 0 10px 30px rgba(17, 24, 39, .05);
    background: #fff;
    color: var(--pdp-ink);
    padding: 36px 0 76px;
}

.pdp-container {
    width: min(92vw, 1680px);
    margin: 0 auto;
}

.pdp-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: var(--pdp-muted);
    font-size: .94rem;
    margin-bottom: 28px;
}

.pdp-breadcrumbs a {
    color: var(--pdp-muted);
}

.pdp-breadcrumbs a:hover {
    color: var(--pdp-orange);
}

.pdp-titlebar {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.pdp-titlebar h1 {
    max-width: 1180px;
    color: var(--pdp-ink);
    font-size: clamp(2.25rem, 3.3vw, 4.6rem);
    line-height: 1.03;
    font-weight: 900;
    letter-spacing: 0;
}

.pdp-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    margin-top: 18px;
    color: var(--pdp-muted);
    font-weight: 650;
}

.pdp-meta-line > span {
    position: relative;
}

.pdp-meta-line > span + span::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: #c8cdd5;
}

.pdp-premium-page .rating-widget {
    margin: 0;
}

.pdp-premium-hero {
    display: grid;
    grid-template-columns: minmax(0, 20fr) minmax(320px, 25fr) minmax(300px, 20fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 72px;
}

.pdp-gallery-premium,
.pdp-summary-premium,
.pdp-best-price-card,
.pdp-section {
    border: 1px solid var(--pdp-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--pdp-shadow-soft);
}

.pdp-gallery-premium {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 20px;
    min-height: 680px;
    padding: 20px;
}

.pdp-thumb-rail {
    display: grid;
    align-content: start;
    gap: 12px;
}

.pdp-thumb {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border: 1px solid var(--pdp-line);
    border-radius: 12px;
    background: #fff;
    padding: 7px;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.pdp-thumb.active,
.pdp-thumb:hover {
    border-color: var(--pdp-orange);
    box-shadow: 0 10px 22px rgba(255, 90, 31, .12);
    transform: translateY(-1px);
}

.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pdp-main-image {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 638px;
    border: 1px solid var(--pdp-line);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.pdp-main-image img {
    width: min(86%, 780px);
    height: 560px;
    object-fit: contain;
    transition: transform .22s ease;
}

.pdp-main-image:hover img {
    transform: scale(1.035);
}

.pdp-zoom-button {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    min-height: 42px;
    border: 1px solid var(--pdp-line);
    border-radius: 999px;
    background: #fff;
    color: var(--pdp-ink);
    padding: 0 18px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .08);
}

.pdp-summary-premium {
    display: grid;
    gap: 24px;
    padding: 28px;
}

.pdp-section-label {
    display: inline-block;
    color: var(--pdp-ink);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.pdp-summary-premium p,
.pdp-cms-content p,
.pdp-empty-copy {
    color: var(--pdp-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 8px 0 0;
}

.pdp-highlight-list {
    display: grid;
    gap: 0;
    border: 1px solid var(--pdp-line);
    border-radius: 14px;
    overflow: hidden;
}

.pdp-highlight-list > strong {
    padding: 16px 18px;
    border-bottom: 1px solid var(--pdp-line);
    font-size: 1.06rem;
}

.pdp-highlight-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--pdp-line);
}

.pdp-highlight-list div:last-child {
    border-bottom: 0;
}

.pdp-highlight-list span {
    color: var(--pdp-muted);
}

.pdp-highlight-list b {
    text-align: right;
}

.pdp-variant-selector {
    display: grid;
    gap: 12px;
}

.pdp-variant-chips,
.pdp-variant-select-inline,
.pdp-suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pdp-variant-chip {
    display: inline-grid;
    gap: 2px;
    min-height: 46px;
    border: 1px solid var(--pdp-line);
    border-radius: 12px;
    background: #fff;
    color: var(--pdp-ink);
    padding: 9px 14px;
    text-align: left;
    font-weight: 850;
    transition: border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.pdp-variant-chip small {
    color: var(--pdp-muted);
    font-size: .82rem;
    font-weight: 750;
}

.pdp-variant-chip.active,
.pdp-variant-chip:hover {
    border-color: var(--pdp-orange);
    color: var(--pdp-orange);
    box-shadow: 0 10px 22px rgba(255, 90, 31, .1);
}

.pdp-compare-box {
    display: grid;
    gap: 14px;
    border-top: 1px solid var(--pdp-line);
    padding-top: 22px;
}

.pdp-compare-box .auto-compare-search {
    grid-template-columns: minmax(0, 1fr) 110px;
}

.pdp-compare-box .auto-compare-search input {
    min-height: 48px;
    border-color: var(--pdp-line);
    border-radius: 10px;
}

.pdp-compare-box .auto-compare-search button {
    border-color: var(--pdp-orange);
    border-radius: 10px;
    background: var(--pdp-orange);
}

.pdp-suggestion-chips a {
    border: 1px solid var(--pdp-line);
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--pdp-muted);
    font-size: .88rem;
    font-weight: 750;
}

.pdp-suggestion-chips a:hover {
    border-color: var(--pdp-orange);
    color: var(--pdp-orange);
}

.pdp-best-price-card {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 18px;
    padding: 28px;
}

.pdp-current-pill {
    justify-self: end;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    background: #f0fdf4;
    color: #15803d;
    padding: 5px 10px;
    font-size: .78rem;
    font-weight: 900;
}

.pdp-price-stack strong {
    display: block;
    color: var(--pdp-orange);
    font-size: clamp(2rem, 2.35vw, 3.35rem);
    line-height: 1;
    margin: 8px 0;
}

.pdp-price-stack span,
.pdp-best-price-card small {
    color: var(--pdp-muted);
}

.pdp-buy-actions {
    display: grid;
    gap: 10px;
}

.pdp-primary-btn,
.pdp-secondary-btn,
.pdp-table-action,
.pdp-view-offers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 10px;
    font-weight: 900;
}

.pdp-primary-btn {
    border: 1px solid var(--pdp-orange);
    background: var(--pdp-orange);
    color: #fff;
    box-shadow: 0 14px 28px rgba(255, 90, 31, .18);
}

.pdp-secondary-btn {
    border: 1px solid var(--pdp-line);
    background: #fff;
    color: var(--pdp-ink);
}

.pdp-secondary-btn:hover,
.pdp-table-action:hover,
.pdp-view-offers:hover {
    border-color: var(--pdp-orange);
    color: var(--pdp-orange);
}

.pdp-trust-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--pdp-line);
    color: var(--pdp-muted);
    list-style: none;
}

.pdp-trust-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.pdp-trust-list li::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 999px;
    background: var(--pdp-orange);
    opacity: .85;
}

.pdp-section {
    margin-bottom: 64px;
    padding: 34px;
}

.pdp-section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 26px;
}

.pdp-section-head h2,
.pdp-cms-content h2,
.pdp-community-section h2 {
    color: var(--pdp-ink);
    font-size: clamp(1.45rem, 1.6vw, 2.2rem);
    line-height: 1.08;
    margin-top: 6px;
}

.pdp-selected-variant-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--pdp-muted);
}

.pdp-selected-variant-note strong {
    color: var(--pdp-ink);
    margin-right: 6px;
}

.pdp-selected-variant-note span {
    border: 1px solid var(--pdp-line);
    border-radius: 999px;
    padding: 7px 10px;
    background: #fff;
}

.pdp-offers-table-wrap,
.pdp-spec-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--pdp-line);
    border-radius: 14px;
    background: #fff;
}

.pdp-offers-table,
.pdp-spec-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    background: #fff;
}

.pdp-offers-table th,
.pdp-offers-table td,
.pdp-spec-table th,
.pdp-spec-table td {
    border-bottom: 1px solid var(--pdp-line);
    padding: 18px 20px;
    text-align: left;
    vertical-align: middle;
}

.pdp-offers-table th,
.pdp-spec-table th {
    color: var(--pdp-muted);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.pdp-offers-table tbody tr:last-child td,
.pdp-spec-table tbody tr:last-child th,
.pdp-spec-table tbody tr:last-child td {
    border-bottom: 0;
}

.pdp-offers-table td strong {
    display: block;
    color: var(--pdp-ink);
    font-size: 1.08rem;
}

.pdp-offers-table td em {
    display: inline-flex;
    margin-top: 4px;
    border-radius: 999px;
    background: #f0fdf4;
    color: #15803d;
    padding: 3px 8px;
    font-size: .72rem;
    font-style: normal;
    font-weight: 900;
}

.pdp-offers-table tr.is-best-price {
    background: #fffaf7;
}

.pdp-seller-cell {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 850;
}

.pdp-seller-cell img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.pdp-table-action {
    min-height: 40px;
    border: 1px solid var(--pdp-orange);
    background: var(--pdp-orange);
    color: #fff;
    padding: 0 16px;
}

.pdp-table-action:hover {
    background: #fff;
}

.pdp-muted-action {
    color: var(--pdp-muted);
    font-weight: 750;
}

.pdp-view-offers {
    min-height: 44px;
    margin: 20px auto 0;
    border: 1px solid var(--pdp-line);
    background: #fff;
    color: var(--pdp-ink);
    padding: 0 18px;
}

.pdp-spec-table th {
    width: 18%;
    color: var(--pdp-muted);
}

.pdp-spec-table td {
    width: 32%;
    color: var(--pdp-ink);
    font-weight: 750;
}

.pdp-cms-content {
    display: grid;
    gap: 34px;
}

.pdp-cms-content article + article {
    border-top: 1px solid var(--pdp-line);
    padding-top: 34px;
}

.pdp-cms-content ul {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
    padding-left: 20px;
    color: var(--pdp-muted);
    line-height: 1.7;
}

.pdp-cms-content .entry-content {
    color: var(--pdp-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.pdp-community-section {
    box-shadow: var(--pdp-shadow-soft);
}

.pdp-premium-page .discussion-head {
    margin-bottom: 18px;
}

.pdp-premium-page .discussion-login-card,
.pdp-premium-page .discussion-form,
.pdp-premium-page .discussion-empty {
    border-radius: 14px;
}

.pdp-wide-section {
    margin-bottom: 64px;
}

.pdp-wide-section .section-heading {
    margin-bottom: 18px;
}

.pdp-related-rail.product-rail {
    grid-auto-columns: minmax(250px, calc((100% - 72px) / 4));
    gap: 24px;
}

.pdp-comparison-rail.recent-comparison-rail {
    grid-auto-columns: minmax(360px, calc((100% - 48px) / 3));
    gap: 24px;
}

.pdp-comparison-rail .recent-comparison-card {
    min-height: 292px;
}

.pdp-comparison-rail .recent-comparison-media {
    min-height: 160px;
}

@media (max-width: 1280px) {
    .pdp-premium-hero {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    }

    .pdp-gallery-premium {
        grid-column: 1 / -1;
        min-height: 560px;
    }

    .pdp-main-image {
        min-height: 520px;
    }

    .pdp-main-image img {
        height: 460px;
    }
}

@media (max-width: 980px) {
    .pdp-premium-page {
        padding-top: 24px;
    }

    .pdp-premium-hero {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 44px;
    }

    .pdp-best-price-card {
        position: static;
    }

    .pdp-section {
        margin-bottom: 40px;
    }

    .pdp-section-head {
        display: grid;
    }

    .pdp-variant-select-inline {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .pdp-related-rail.product-rail {
        grid-auto-columns: minmax(230px, 44%);
    }

    .pdp-comparison-rail.recent-comparison-rail {
        grid-auto-columns: minmax(330px, 72%);
    }
}

@media (max-width: 720px) {
    .pdp-container {
        width: min(94vw, 1680px);
    }

    .pdp-titlebar h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .pdp-meta-line {
        gap: 8px 14px;
        font-size: .9rem;
    }

    .pdp-gallery-premium {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 12px;
    }

    .pdp-thumb-rail {
        order: 2;
        grid-auto-flow: column;
        grid-auto-columns: 68px;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .pdp-thumb {
        width: 68px;
        height: 68px;
    }

    .pdp-main-image {
        min-height: 360px;
    }

    .pdp-main-image img {
        width: 92%;
        height: 320px;
    }

    .pdp-zoom-button {
        bottom: 14px;
        min-height: 38px;
        font-size: .88rem;
    }

    .pdp-summary-premium,
    .pdp-best-price-card,
    .pdp-section {
        padding: 20px;
    }

    .pdp-highlight-list div {
        display: grid;
        gap: 4px;
    }

    .pdp-highlight-list b {
        text-align: left;
    }

    .pdp-variant-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .pdp-variant-chip {
        min-width: 172px;
    }

    .pdp-compare-box .auto-compare-search {
        grid-template-columns: 1fr;
    }

    .pdp-compare-box .auto-compare-search button {
        min-height: 48px;
    }

    .pdp-offers-table,
    .pdp-spec-table {
        min-width: 760px;
    }

    .pdp-related-rail.product-rail {
        grid-auto-columns: minmax(220px, 78%);
    }

    .pdp-comparison-rail.recent-comparison-rail {
        grid-auto-columns: minmax(292px, 88%);
    }

    .pdp-premium-page .mobile-sticky-compare {
        display: inline-flex;
    }
}

/* Hosting CRO PDP */
.hosting-cro-page {
    --hosting-ink: #111827;
    --hosting-muted: #6b7280;
    --hosting-line: #efefef;
    --hosting-orange: #ff5a1f;
    --hosting-soft: #fbfbfb;
    --hosting-shadow: 0 18px 46px rgba(17, 24, 39, .07);
    --hosting-shadow-soft: 0 10px 26px rgba(17, 24, 39, .05);
    background: #fff;
    color: var(--hosting-ink);
    padding: 30px 0 72px;
}

.hosting-cro-container {
    width: min(92vw, 1440px);
    margin: 0 auto;
}

.hosting-cro-breadcrumbs {
    margin-bottom: 28px;
}

.hosting-cro-hero {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 360px;
    gap: 40px;
    align-items: start;
    margin-bottom: 54px;
}

.hosting-cro-logo-card,
.hosting-cro-summary,
.hosting-cro-price-card,
.hosting-plans-section,
.hosting-editorial-content,
.hosting-discussion-section {
    border: 1px solid var(--hosting-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--hosting-shadow-soft);
}

.hosting-cro-logo-card {
    display: grid;
    place-items: center;
    min-height: 260px;
    padding: 34px;
}

.hosting-cro-logo-card img {
    width: 100%;
    max-width: 190px;
    height: 160px;
    object-fit: contain;
}

.hosting-cro-summary {
    min-height: 260px;
    padding: 36px;
    box-shadow: none;
}

.hosting-cro-title-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.hosting-cro-title-row h1 {
    color: var(--hosting-ink);
    font-size: clamp(2.25rem, 3vw, 3.8rem);
    line-height: 1.02;
    font-weight: 900;
}

.hosting-cro-title-row span {
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    background: #f0fdf4;
    color: #15803d;
    padding: 5px 10px;
    font-size: .78rem;
    font-weight: 900;
}

.hosting-cro-summary p {
    max-width: 740px;
    margin: 18px 0 0;
    color: var(--hosting-muted);
    font-size: 1.06rem;
    line-height: 1.7;
}

.hosting-cro-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hosting-cro-badges span {
    border: 1px solid var(--hosting-line);
    border-radius: 10px;
    background: #fff;
    color: var(--hosting-ink);
    padding: 11px 14px;
    font-size: .92rem;
    font-weight: 850;
    box-shadow: 0 8px 18px rgba(17, 24, 39, .04);
}

.hosting-cro-price-card {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 14px;
    padding: 28px;
}

.hosting-cro-price-card > span,
.hosting-section-head span {
    color: var(--hosting-muted);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hosting-cro-price-card strong {
    color: var(--hosting-orange);
    font-size: clamp(2.3rem, 3vw, 4rem);
    line-height: 1;
}

.hosting-cro-price-card small {
    color: var(--hosting-muted);
    font-weight: 750;
}

.hosting-cro-primary,
.hosting-cro-secondary,
.hosting-plan-cta,
.hosting-plan-assistant button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 10px;
    font-weight: 900;
}

.hosting-cro-primary {
    border: 1px solid var(--hosting-orange);
    background: var(--hosting-orange);
    color: #fff;
    box-shadow: 0 14px 28px rgba(255, 90, 31, .18);
}

.hosting-cro-secondary {
    border: 1px solid var(--hosting-line);
    background: #fff;
    color: var(--hosting-ink);
}

.hosting-cro-secondary:hover,
.hosting-plan-assistant button:hover {
    border-color: var(--hosting-orange);
    color: var(--hosting-orange);
}

.hosting-cro-price-card ul {
    display: grid;
    gap: 10px;
    margin: 8px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--hosting-line);
    color: var(--hosting-muted);
    list-style: none;
}

.hosting-cro-price-card li {
    position: relative;
    padding-left: 18px;
    font-size: .92rem;
}

.hosting-cro-price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #16a34a;
}

.hosting-type-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.hosting-type-tabs button {
    display: grid;
    gap: 6px;
    min-height: 86px;
    border: 1px solid var(--hosting-line);
    border-radius: 14px;
    background: #fff;
    color: var(--hosting-ink);
    padding: 16px 18px;
    text-align: left;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .04);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.hosting-type-tabs button.active,
.hosting-type-tabs button:hover {
    border-color: var(--hosting-orange);
    box-shadow: 0 16px 32px rgba(255, 90, 31, .11);
    transform: translateY(-1px);
}

.hosting-type-tabs strong {
    font-size: .98rem;
}

.hosting-type-tabs small {
    color: var(--hosting-muted);
    line-height: 1.4;
}

.hosting-plans-section {
    margin-bottom: 28px;
    padding: 28px;
}

.hosting-section-head {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: end;
    margin-bottom: 24px;
}

.hosting-section-head h2 {
    margin-top: 6px;
    color: var(--hosting-ink);
    font-size: clamp(1.65rem, 2vw, 2.4rem);
    line-height: 1.08;
}

.hosting-section-head p {
    margin: 8px 0 0;
    color: var(--hosting-muted);
}

.hosting-plan-panel[hidden] {
    display: none !important;
}

.hosting-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 18px;
}

.hosting-plan-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 16px;
    min-height: 460px;
    border: 1px solid var(--hosting-line);
    border-radius: 16px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .04);
}

.hosting-plan-card.recommended {
    border-color: #86efac;
    box-shadow: 0 22px 46px rgba(22, 163, 74, .12);
}

.hosting-plan-badge {
    justify-self: start;
    border-radius: 999px;
    background: #dcfce7;
    color: #15803d;
    padding: 5px 10px;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hosting-plan-card h3 {
    color: var(--hosting-ink);
    font-size: 1.28rem;
    line-height: 1.18;
}

.hosting-plan-price {
    display: grid;
    gap: 4px;
}

.hosting-plan-price strong {
    color: var(--hosting-orange);
    font-size: 2rem;
    line-height: 1;
}

.hosting-plan-price span,
.hosting-plan-card p,
.hosting-best-for span {
    color: var(--hosting-muted);
}

.hosting-plan-card p {
    margin: 0;
    line-height: 1.6;
}

.hosting-best-for {
    display: grid;
    gap: 4px;
    border-top: 1px solid var(--hosting-line);
    padding-top: 16px;
}

.hosting-best-for b {
    color: var(--hosting-ink);
    line-height: 1.45;
}

.hosting-plan-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hosting-plan-card li {
    position: relative;
    padding-left: 20px;
    color: var(--hosting-ink);
    font-size: .92rem;
    line-height: 1.45;
}

.hosting-plan-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
}

.hosting-plan-cta {
    align-self: end;
    width: 100%;
    margin-top: 8px;
    border: 1px solid var(--hosting-orange);
    background: #fff;
    color: var(--hosting-orange);
}

.hosting-plan-card.recommended .hosting-plan-cta,
.hosting-plan-cta:hover {
    background: var(--hosting-orange);
    color: #fff;
}

.hosting-plan-assistant {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
    margin-top: 26px;
    border: 1px solid #fed7aa;
    border-radius: 16px;
    background: #fff;
    padding: 20px 24px;
}

.hosting-plan-assistant div {
    display: grid;
    gap: 4px;
}

.hosting-plan-assistant strong {
    color: var(--hosting-ink);
    font-size: 1.08rem;
}

.hosting-plan-assistant span {
    color: var(--hosting-muted);
}

.hosting-plan-assistant button {
    min-width: 170px;
    border: 1px solid var(--hosting-orange);
    background: #fff;
    color: var(--hosting-orange);
}

.hosting-editorial-content {
    margin: 0 auto 28px;
    padding: 30px 34px;
}

.hosting-editorial-content .entry-content {
    color: var(--hosting-ink);
    font-size: 1.04rem;
    line-height: 1.78;
}

.hosting-editorial-content .entry-content h1,
.hosting-editorial-content .entry-content h2,
.hosting-editorial-content .entry-content h3 {
    margin: 26px 0 10px;
    color: var(--hosting-ink);
    line-height: 1.18;
}

.hosting-editorial-content .entry-content h1:first-child,
.hosting-editorial-content .entry-content h2:first-child,
.hosting-editorial-content .entry-content h3:first-child {
    margin-top: 0;
}

.hosting-editorial-content .entry-content p {
    margin: 0 0 18px;
    color: var(--hosting-muted);
}

.hosting-discussion-section {
    margin-bottom: 34px;
    padding: 24px;
}

.hosting-related-section,
.hosting-comparison-section {
    margin-top: 32px;
}

.hosting-related-rail.product-rail {
    grid-auto-columns: minmax(250px, calc((100% - 72px) / 4));
    gap: 24px;
}

.hosting-comparison-rail.recent-comparison-rail {
    grid-auto-columns: minmax(330px, calc((100% - 72px) / 4));
    gap: 24px;
}

@media (max-width: 1180px) {
    .hosting-cro-hero {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .hosting-cro-price-card {
        position: static;
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .hosting-cro-page {
        padding-top: 22px;
    }

    .hosting-cro-hero {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 34px;
    }

    .hosting-cro-logo-card {
        min-height: 180px;
    }

    .hosting-cro-summary,
    .hosting-cro-price-card,
    .hosting-plans-section,
    .hosting-editorial-content,
    .hosting-discussion-section {
        padding: 20px;
    }

    .hosting-type-tabs {
        display: flex;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .hosting-type-tabs::-webkit-scrollbar {
        display: none;
    }

    .hosting-type-tabs button {
        flex: 0 0 220px;
    }

    .hosting-section-head,
    .hosting-plan-assistant {
        display: grid;
    }

    .hosting-plan-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hosting-related-rail.product-rail {
        grid-auto-columns: minmax(230px, 78%);
    }

    .hosting-comparison-rail.recent-comparison-rail {
        grid-auto-columns: minmax(292px, 88%);
    }
}

/* Global responsiveness polish */
.footer-grid {
    grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
}

.hosting-cro-title-row h1 {
    font-size: clamp(2rem, 2.4vw, 3rem);
}

.hosting-cro-price-card strong {
    font-size: clamp(2.1rem, 2.55vw, 3.25rem);
}

.hosting-section-head h2 {
    font-size: clamp(1.5rem, 1.65vw, 2rem);
}

.hosting-plan-card h3 {
    font-size: 1.12rem;
}

.hosting-plan-price strong {
    font-size: 1.72rem;
}

@media (max-width: 1180px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    body {
        background: #fff;
        padding-bottom: calc(74px + env(safe-area-inset-bottom));
        -webkit-font-smoothing: antialiased;
    }

    .container,
    .pdp-container,
    .hosting-cro-container {
        width: min(94vw, 1440px);
    }

    .site-header {
        border-bottom: 1px solid #efefef;
        box-shadow: 0 8px 24px rgba(17, 24, 39, .06);
    }

    .mobile-tabbar {
        left: 10px;
        right: 10px;
        bottom: calc(8px + env(safe-area-inset-bottom));
        width: auto;
        border-radius: 18px;
        box-shadow: 0 18px 46px rgba(17, 24, 39, .14);
    }

    h1,
    .home-hero-copy h1,
    .category-hero-copy h1,
    .pdp-titlebar h1,
    .hosting-cro-title-row h1 {
        font-size: clamp(1.85rem, 8vw, 2.45rem);
        line-height: 1.08;
    }

    h2,
    .section-heading h2,
    .home-section-head h2,
    .category-section-head h2,
    .hosting-section-head h2 {
        font-size: clamp(1.2rem, 5.2vw, 1.55rem);
        line-height: 1.14;
    }

    .home-hero-copy p,
    .category-hero-copy p,
    .hosting-cro-summary p,
    .hosting-section-head p,
    .hosting-editorial-content .entry-content {
        font-size: .94rem;
        line-height: 1.62;
    }

    .hosting-cro-hero {
        margin-bottom: 24px;
    }

    .hosting-cro-summary {
        order: 1;
        min-height: auto;
    }

    .hosting-cro-logo-card {
        order: 2;
        min-height: 150px;
        padding: 18px;
    }

    .hosting-cro-logo-card img {
        height: 104px;
        max-width: 160px;
    }

    .hosting-cro-price-card {
        order: 3;
    }

    .hosting-cro-title-row {
        gap: 8px;
        margin-bottom: 12px;
    }

    .hosting-cro-badges {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        margin-top: 18px;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .hosting-cro-badges::-webkit-scrollbar,
    .hosting-plan-grid::-webkit-scrollbar {
        display: none;
    }

    .hosting-cro-badges span {
        flex: 0 0 auto;
        padding: 9px 12px;
        font-size: .82rem;
    }

    .hosting-plans-section {
        padding: 18px 0 18px 18px;
        overflow: hidden;
    }

    .hosting-section-head {
        padding-right: 18px;
        margin-bottom: 16px;
    }

    .hosting-plan-grid {
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        overflow-x: auto;
        padding: 2px 18px 14px 0;
        scroll-padding-left: 18px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .hosting-plan-card {
        flex: 0 0 min(82vw, 330px);
        min-height: auto;
        padding: 20px;
        scroll-snap-align: start;
    }

    .hosting-plan-card ul {
        gap: 8px;
    }

    .hosting-plan-card li {
        font-size: .86rem;
    }

    .hosting-plan-price strong {
        font-size: 1.48rem;
    }

    .hosting-plan-assistant {
        margin: 14px 18px 0 0;
        padding: 16px;
    }

    .hosting-plan-assistant button {
        width: 100%;
    }

    .hosting-editorial-content {
        max-width: 100%;
        padding: 20px;
    }

    .hosting-related-section,
    .hosting-comparison-section {
        margin-top: 24px;
    }

    .card-body h3,
    .home-product-card h3,
    .recent-comparison-title {
        font-size: .92rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-brand-panel,
    .footer-column {
        border-bottom: 1px solid #efefef;
        padding-bottom: 18px;
    }

    .footer-column:last-child {
        border-bottom: 0;
    }
}

/* Post type SEO settings and image-backed Shop by Category cards */
.post-type-seo-grid {
    display: grid;
    gap: 14px;
}

.post-type-seo-card {
    border: 1px solid var(--line, #e5e7eb);
    border-radius: 12px;
    background: #fff;
    padding: 0;
}

.post-type-seo-card summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    padding: 16px 18px;
    font-weight: 900;
}

.post-type-seo-card summary small {
    color: var(--muted, #64748b);
    font-weight: 700;
}

.post-type-seo-card[open] summary {
    border-bottom: 1px solid var(--line, #e5e7eb);
}

.post-type-seo-card > .form-grid {
    padding: 18px;
}

.home-category-image {
    display: grid;
    place-items: center;
    width:100%;
    height: 100%;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

.home-category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Premium car PDP */
.car-pdp-page {
    --car-text: #111827;
    --car-muted: #667085;
    --car-soft: #f8fafc;
    --car-border: #e5e7eb;
    --car-border-strong: #dfe4ea;
    --car-orange: #ff5a1f;
    --car-shadow: 0 16px 42px rgba(17, 24, 39, .06);
    background: #fff;
    color: var(--car-text);
    padding: 18px 0 64px;
}

.car-pdp-container {
    width: min(calc(100% - 48px), 1440px);
    margin: 0 auto;
}

.car-pdp-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0 0 22px;
    color: var(--car-muted);
    font-size: .9rem;
    font-weight: 760;
}

.car-pdp-breadcrumbs a {
    color: var(--car-text);
}

.car-pdp-breadcrumbs a:hover {
    color: var(--car-orange);
}

.car-pdp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
    gap: 28px;
    align-items: start;
}

.car-pdp-gallery,
.car-pdp-summary,
.car-pdp-quick-specs,
.car-pdp-section {
    border: 1px solid var(--car-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--car-shadow);
}

.car-pdp-gallery {
    overflow: hidden;
    padding: 14px;
}

.car-pdp-main-image {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 450px;
    overflow: hidden;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    background: var(--car-soft);
}

.car-pdp-main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.car-pdp-save {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--car-border);
    border-radius: 16px;
    background: #fff;
    color: var(--car-text);
    font-size: 1.35rem;
    font-weight: 950;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .08);
}

.car-pdp-save:hover {
    border-color: #ffd0c1;
    color: var(--car-orange);
}

.car-pdp-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(108px, .8fr);
    gap: 12px;
    margin-top: 12px;
}

.car-pdp-thumbs button {
    min-width: 0;
    min-height: 74px;
    overflow: hidden;
    border: 1px solid var(--car-border);
    border-radius: 16px;
    background: #fff;
    color: var(--car-text);
    font: inherit;
    font-weight: 850;
}

.car-pdp-thumbs button.active {
    border-color: var(--car-orange);
    box-shadow: 0 0 0 3px rgba(255, 90, 31, .12);
}

.car-pdp-thumbs img {
    width: 100%;
    height: 74px;
    object-fit: cover;
}

.car-pdp-view-images {
    padding: 0 12px;
}

.car-pdp-summary {
    display: grid;
    gap: 18px;
    padding: 28px;
}

.car-pdp-title-row {
    display: grid;
    gap: 14px;
}

.car-pdp-title-row h1 {
    margin: 0;
    color: var(--car-text);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: 0;
}

.car-pdp-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-top: 10px;
    border: 1px solid var(--car-border);
    border-radius: 16px;
    background: var(--car-soft);
    color: var(--car-text);
    padding: 0 12px;
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.car-pdp-rating {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    color: var(--car-muted);
    font-size: .92rem;
    font-weight: 760;
}

.car-pdp-rating span {
    color: #f59e0b;
    letter-spacing: 1px;
}

.car-pdp-rating strong {
    color: var(--car-text);
}

.car-pdp-price {
    display: grid;
    gap: 4px;
}

.car-pdp-price span,
.car-pdp-price small,
.car-pdp-stat-grid span,
.car-pdp-quick-specs span,
.car-pdp-section-head p,
.car-pdp-variant-top small,
.car-pdp-similar-card small {
    color: var(--car-muted);
    font-size: .86rem;
    font-weight: 760;
}

.car-pdp-price strong {
    color: var(--car-text);
    font-size: 2.45rem;
    line-height: 1;
    font-weight: 950;
}

.car-pdp-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--car-border);
    border-radius: 16px;
    overflow: hidden;
}

.car-pdp-stat-grid article {
    display: grid;
    align-content: center;
    gap: 5px;
    min-width: 0;
    min-height: 82px;
    border-right: 1px solid var(--car-border);
    padding: 14px;
}

.car-pdp-stat-grid article:last-child {
    border-right: 0;
}

.car-pdp-stat-grid strong,
.car-pdp-quick-specs strong {
    color: var(--car-text);
    font-size: .96rem;
    line-height: 1.3;
    font-weight: 950;
}

.car-pdp-compare-box {
    display: grid;
    gap: 12px;
    border: 1px solid var(--car-border);
    border-radius: 16px;
    background: #fff;
    padding: 16px;
}

.car-pdp-compare-box h2 {
    margin: 0;
    color: var(--car-text);
    font-size: 1.05rem;
    font-weight: 950;
}

.car-pdp-compare-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 10px;
}

.car-pdp-compare-search input {
    min-height: 48px;
    border-radius: 12px;
}

.car-pdp-compare-search button {
    min-height: 48px;
    border-radius: 12px;
    background: var(--car-orange);
}

.car-pdp-popular {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
}

.car-pdp-popular > span {
    color: var(--car-muted);
    font-size: .83rem;
    font-weight: 850;
}

.car-pdp-popular a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid var(--car-border);
    border-radius: 12px;
    background: #fff;
    color: var(--car-text);
    padding: 0 12px;
    font-size: .82rem;
    font-weight: 850;
}

.car-pdp-popular a:hover {
    border-color: #ffd0c1;
    color: var(--car-orange);
}

.car-pdp-quick-specs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 24px;
    overflow: hidden;
}

.car-pdp-quick-specs article {
    display: grid;
    gap: 6px;
    min-width: 0;
    border-right: 1px solid var(--car-border);
    padding: 18px 20px;
}

.car-pdp-quick-specs article:last-child {
    border-right: 0;
}

.car-pdp-section {
    margin-top: 24px;
    padding: 22px;
}

.car-pdp-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.car-pdp-section-head h2 {
    margin: 0;
    color: var(--car-text);
    font-size: 1.45rem;
    line-height: 1.2;
    font-weight: 950;
}

.car-pdp-section-head p {
    margin: 6px 0 0;
}

.car-pdp-section-head > a,
.car-pdp-section-head button {
    border: 1px solid var(--car-border);
    border-radius: 12px;
    background: #fff;
    color: var(--car-text);
    padding: 10px 14px;
    font: inherit;
    font-size: .88rem;
    font-weight: 900;
}

.car-pdp-section-head > a:hover,
.car-pdp-section-head button:hover {
    border-color: #ffd0c1;
    color: var(--car-orange);
}

.car-pdp-variant-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--car-border);
    padding-bottom: 18px;
}

.car-pdp-variant-filters fieldset {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    min-width: 0;
    margin: 0;
    border: 0;
    padding: 0;
}

.car-pdp-variant-filters legend {
    flex: 0 0 100%;
    margin-bottom: 2px;
    color: var(--car-text);
    font-size: .83rem;
    font-weight: 950;
}

.car-pdp-variant-filters button {
    min-height: 40px;
    border: 1px solid var(--car-border);
    border-radius: 12px;
    background: #fff;
    color: var(--car-text);
    padding: 0 16px;
    font: inherit;
    font-size: .86rem;
    font-weight: 850;
}

.car-pdp-variant-filters button.active {
    border-color: #ffb199;
    background: #fff7f3;
    color: var(--car-orange);
    box-shadow: inset 0 0 0 1px rgba(255, 90, 31, .08);
}

.car-pdp-variant-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    padding: 2px 2px 12px;
    -webkit-overflow-scrolling: touch;
}

.car-pdp-variant-card {
    flex: 0 0 min(320px, 78vw);
    display: grid;
    gap: 16px;
    min-width: 0;
    border: 1px solid var(--car-border);
    border-radius: 16px;
    background: #fff;
    padding: 18px;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.car-pdp-variant-card:hover {
    border-color: #ffd0c1;
    box-shadow: 0 16px 34px rgba(17, 24, 39, .08);
    transform: translateY(-1px);
}

.car-pdp-variant-card[hidden] {
    display: none;
}

.car-pdp-variant-top {
    display: grid;
    gap: 7px;
}

.car-pdp-variant-top span {
    justify-self: start;
    min-height: 24px;
    border: 1px solid #ffd0c1;
    border-radius: 10px;
    background: #fff7f3;
    color: var(--car-orange);
    padding: 3px 8px;
    font-size: .72rem;
    font-weight: 950;
}

.car-pdp-variant-top h3 {
    min-height: 44px;
    margin: 0;
    color: var(--car-text);
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 950;
}

.car-pdp-variant-top strong {
    color: var(--car-text);
    font-size: 1.28rem;
    font-weight: 950;
}

.car-pdp-variant-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.car-pdp-variant-meta span {
    border: 1px solid var(--car-border);
    border-radius: 10px;
    background: var(--car-soft);
    color: var(--car-text);
    padding: 7px 9px;
    font-size: .82rem;
    font-weight: 850;
}

.car-pdp-variant-card p {
    display: grid;
    gap: 3px;
    margin: 0;
    color: var(--car-text);
    font-size: .9rem;
    line-height: 1.35;
    font-weight: 850;
}

.car-pdp-variant-card p b {
    color: var(--car-muted);
    font-size: .78rem;
    font-weight: 850;
}

.car-pdp-outline-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid #ffd0c1;
    border-radius: 12px;
    background: #fff;
    color: var(--car-orange);
    padding: 0 14px;
    font: inherit;
    font-weight: 950;
    cursor: pointer;
}

.car-pdp-outline-cta:hover {
    background: var(--car-orange);
    color: #fff;
}

.car-pdp-variant-details dl,
.car-pdp-guide-accordion dl {
    display: grid;
    gap: 0;
    margin: 0;
    border: 1px solid var(--car-border);
    border-radius: 12px;
    overflow: hidden;
}

.car-pdp-variant-details dl div,
.car-pdp-guide-accordion dl div {
    display: grid;
    grid-template-columns: minmax(110px, .8fr) minmax(0, 1fr);
    gap: 10px;
    border-bottom: 1px solid var(--car-border);
    padding: 10px 12px;
}

.car-pdp-variant-details dl div:last-child,
.car-pdp-guide-accordion dl div:last-child {
    border-bottom: 0;
}

.car-pdp-variant-details dt,
.car-pdp-guide-accordion dt {
    color: var(--car-muted);
    font-size: .8rem;
    font-weight: 850;
}

.car-pdp-variant-details dd,
.car-pdp-guide-accordion dd {
    margin: 0;
    color: var(--car-text);
    font-size: .86rem;
    font-weight: 850;
}

.car-pdp-compare-check {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--car-muted);
    font-size: .86rem;
    font-weight: 850;
}

.car-pdp-compare-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--car-orange);
}

.car-pdp-empty {
    grid-column: 1 / -1;
    margin: 0;
    border: 1px dashed var(--car-border);
    border-radius: 16px;
    background: #fff;
    color: var(--car-muted);
    padding: 18px;
    text-align: center;
    font-weight: 850;
}

.car-pdp-spec-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 22px;
}

.car-pdp-spec-tabs {
    display: grid;
    align-content: start;
    gap: 4px;
    border-right: 1px solid var(--car-border);
    padding-right: 16px;
}

.car-pdp-spec-tabs button {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    color: var(--car-text);
    padding: 0 14px;
    font: inherit;
    font-size: .9rem;
    font-weight: 850;
    text-align: left;
}

.car-pdp-spec-tabs button.active {
    background: #fff7f3;
    color: var(--car-orange);
}

.car-pdp-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.car-pdp-spec-grid div {
    display: grid;
    grid-template-columns: minmax(140px, .8fr) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 54px;
    border: 1px solid var(--car-border);
    border-radius: 12px;
    background: #fff;
    padding: 13px 16px;
}

.car-pdp-spec-grid span {
    color: var(--car-muted);
    font-size: .86rem;
    font-weight: 850;
}

.car-pdp-spec-grid strong {
    color: var(--car-text);
    font-size: .92rem;
    line-height: 1.4;
    font-weight: 900;
}

.car-pdp-cms-content {
    color: var(--car-text);
}

.car-pdp-guide-accordion {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.car-pdp-guide-accordion details {
    border: 1px solid var(--car-border);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

.car-pdp-guide-accordion summary {
    cursor: pointer;
    padding: 16px 18px;
    color: var(--car-text);
    font-weight: 950;
}

.car-pdp-guide-accordion details[open] summary {
    border-bottom: 1px solid var(--car-border);
}

.car-pdp-guide-accordion dl {
    margin: 0;
    border: 0;
    border-radius: 0;
}

.car-pdp-discussion {
    box-shadow: var(--car-shadow);
}

.car-pdp-similar-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.car-pdp-similar-card {
    display: grid;
    gap: 10px;
    min-width: 0;
    border: 1px solid var(--car-border);
    border-radius: 16px;
    background: #fff;
    padding: 14px;
}

.car-pdp-similar-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--car-soft);
}

.car-pdp-similar-card h3 {
    min-height: 42px;
    margin: 0;
    color: var(--car-text);
    font-size: .98rem;
    line-height: 1.35;
    font-weight: 950;
}

.car-pdp-similar-card span {
    color: var(--car-text);
    font-weight: 950;
}

.car-pdp-similar-card .car-pdp-outline-cta {
    min-height: 38px;
    font-size: .86rem;
}

.car-pdp-comparison-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1180px) {
    .car-pdp-hero {
        grid-template-columns: 1fr;
    }

    .car-pdp-variant-filters,
    .car-pdp-quick-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .car-pdp-quick-specs article {
        border-right: 0;
        border-bottom: 1px solid var(--car-border);
    }

    .car-pdp-variant-grid,
    .car-pdp-spec-grid,
    .car-pdp-comparison-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .car-pdp-page {
        padding-top: 12px;
    }

    .car-pdp-container {
        width: min(calc(100% - 28px), 1440px);
    }

    .car-pdp-main-image {
        min-height: 280px;
    }

    .car-pdp-main-image img {
        height: 280px;
    }

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

    .car-pdp-summary,
    .car-pdp-section {
        padding: 18px;
    }

    .car-pdp-stat-grid,
    .car-pdp-quick-specs,
    .car-pdp-variant-filters,
    .car-pdp-variant-grid,
    .car-pdp-spec-grid,
    .car-pdp-similar-grid,
    .car-pdp-comparison-rail,
    .car-pdp-compare-search {
        grid-template-columns: 1fr;
    }

    .car-pdp-stat-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--car-border);
    }

    .car-pdp-stat-grid article:last-child,
    .car-pdp-quick-specs article:last-child {
        border-bottom: 0;
    }

    .car-pdp-section-head {
        flex-direction: column;
    }

    .car-pdp-spec-layout {
        grid-template-columns: 1fr;
    }

    .car-pdp-spec-tabs {
        display: flex;
        overflow-x: auto;
        border-right: 0;
        border-bottom: 1px solid var(--car-border);
        padding: 0 0 12px;
    }

    .car-pdp-spec-tabs button {
        flex: 0 0 auto;
        width: auto;
        white-space: nowrap;
    }

    .car-pdp-spec-grid div,
    .car-pdp-variant-details dl div,
    .car-pdp-guide-accordion dl div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* Premium categories hub */
.categories-hub-page {
    --hub-text: #111827;
    --hub-muted: #6b7280;
    --hub-border: #efefef;
    --hub-orange: #ff5a1f;
    background: #fff;
    color: var(--hub-text);
}

.categories-hub-hero {
    border-bottom: 1px solid var(--hub-border);
    background: #fff;
}

.categories-hub-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 64px;
    align-items: center;
    padding: 56px 0 64px;
}

.categories-hub-breadcrumbs {
    margin: 0 0 22px;
}

.categories-hub-eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--hub-orange);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.categories-hub-copy h1 {
    max-width: 840px;
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 5.35rem);
    line-height: .98;
    letter-spacing: 0;
}

.categories-hub-copy p {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--hub-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.categories-hub-search {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 132px;
    max-width: 780px;
    margin-top: 28px;
    border: 1px solid var(--hub-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 24, 39, .07);
    overflow: visible;
}

.categories-hub-search input {
    min-height: 58px;
    border: 0;
    border-radius: 16px 0 0 16px;
    padding: 0 20px;
    font-size: .98rem;
}

.categories-hub-search button {
    min-height: 58px;
    border: 0;
    border-radius: 0 15px 15px 0;
    background: var(--hub-orange);
    color: #fff;
    font-weight: 900;
}

.categories-hub-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 780px;
    margin-top: 30px;
    border: 1px solid var(--hub-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 24, 39, .05);
    overflow: hidden;
}

.categories-hub-stats article {
    padding: 22px 24px;
}

.categories-hub-stats article + article {
    border-left: 1px solid var(--hub-border);
}

.categories-hub-stats strong {
    display: block;
    font-size: 1.58rem;
    line-height: 1;
}

.categories-hub-stats span {
    display: block;
    margin-top: 8px;
    color: var(--hub-muted);
    font-weight: 800;
}

.categories-hub-featured {
    display: grid;
    gap: 20px;
    border: 1px solid var(--hub-border);
    border-radius: 16px;
    background: #fff;
    padding: 26px;
    box-shadow: 0 24px 60px rgba(17, 24, 39, .09);
}

.categories-hub-featured > span {
    color: var(--hub-orange);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.categories-hub-featured img {
    width: 100%;
    height: 214px;
    object-fit: contain;
}

.categories-hub-featured h2 {
    margin: 0;
    font-size: 1.65rem;
}

.categories-hub-featured p {
    margin: 8px 0 0;
    color: var(--hub-muted);
    line-height: 1.65;
}

.categories-hub-featured a,
.categories-hub-section-head > a,
.categories-hub-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid var(--hub-border);
    border-radius: 12px;
    background: #fff;
    color: var(--hub-orange);
    font-weight: 900;
}

.categories-hub-featured a {
    background: var(--hub-orange);
    color: #fff;
}

.categories-hub-stack {
    display: grid;
    gap: 56px;
    padding: 52px 0 72px;
}

.categories-hub-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.categories-hub-section-head h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2.1vw, 2.25rem);
}

.categories-hub-section-head p {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--hub-muted);
    line-height: 1.7;
}

.categories-hub-section-head > a {
    min-width: 132px;
    padding: 0 16px;
    white-space: nowrap;
}

.categories-hub-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 18px;
}

.categories-hub-card,
.categories-hub-term-card,
.categories-hub-trust article {
    border: 1px solid var(--hub-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .045);
}

.categories-hub-card {
    display: grid;
    gap: 16px;
    min-height: 290px;
    padding: 18px;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.categories-hub-card:hover,
.categories-hub-term-card:hover {
    border-color: rgba(255, 90, 31, .34);
    box-shadow: 0 20px 46px rgba(17, 24, 39, .08);
    transform: translateY(-3px);
}

.categories-hub-card-media,
.categories-hub-term-media {
    display: grid;
    place-items: center;
    border: 1px solid var(--hub-border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.categories-hub-card-media {
    height: 138px;
}

.categories-hub-card-media img,
.categories-hub-term-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.categories-hub-card-body {
    display: grid;
    gap: 6px;
}

.categories-hub-card-body strong,
.categories-hub-term-card strong,
.categories-hub-trust strong {
    color: var(--hub-text);
    font-size: 1.04rem;
    font-weight: 950;
}

.categories-hub-card-body small,
.categories-hub-term-card small {
    color: var(--hub-muted);
    font-weight: 800;
}

.categories-hub-card-body em {
    color: var(--hub-muted);
    font-style: normal;
    font-size: .9rem;
    line-height: 1.55;
}

.categories-hub-card-cta {
    margin-top: auto;
}

.categories-hub-term-section {
    padding-top: 8px;
}

.categories-hub-term-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.categories-hub-term-card {
    display: grid;
    gap: 12px;
    min-height: 206px;
    padding: 14px;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.categories-hub-term-media {
    height: 108px;
}

.categories-hub-term-card span:last-child {
    display: grid;
    gap: 5px;
}

.categories-hub-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.categories-hub-trust article {
    padding: 24px;
}

.categories-hub-trust p {
    margin: 10px 0 0;
    color: var(--hub-muted);
    line-height: 1.7;
}

@media (max-width: 1180px) {
    .categories-hub-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .categories-hub-featured {
        max-width: 560px;
    }

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

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

@media (max-width: 820px) {
    .categories-hub-hero-grid {
        padding: 30px 0 38px;
    }

    .categories-hub-copy h1 {
        font-size: clamp(2.35rem, 12vw, 4.1rem);
    }

    .categories-hub-copy p {
        font-size: .98rem;
        line-height: 1.65;
    }

    .categories-hub-search {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .categories-hub-search input {
        border-radius: 16px 16px 0 0;
    }

    .categories-hub-search button {
        border-radius: 0 0 15px 15px;
    }

    .categories-hub-stats {
        grid-template-columns: repeat(3, minmax(132px, 1fr));
        overflow-x: auto;
    }

    .categories-hub-stats article {
        min-width: 132px;
        padding: 18px;
    }

    .categories-hub-stack {
        gap: 42px;
        padding: 36px 0 56px;
    }

    .categories-hub-section-head {
        align-items: flex-start;
    }

    .categories-hub-section-head p {
        font-size: .94rem;
    }

    .categories-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .categories-hub-card {
        min-height: 246px;
        padding: 14px;
    }

    .categories-hub-card-media {
        height: 112px;
    }

    .categories-hub-card-body em {
        display: none;
    }

    .categories-hub-term-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding: 2px 2px 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .categories-hub-term-card {
        flex: 0 0 min(46vw, 210px);
        scroll-snap-align: start;
    }

    .categories-hub-trust {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .categories-hub-section-head {
        gap: 14px;
    }

    .categories-hub-section-head > a {
        min-width: auto;
        min-height: 38px;
        padding: 0 12px;
        font-size: .84rem;
    }

    .categories-hub-featured {
        padding: 18px;
    }

    .categories-hub-featured img {
        height: 168px;
    }

    .categories-hub-grid {
        grid-template-columns: 1fr;
    }

    .categories-hub-card {
        grid-template-columns: 106px minmax(0, 1fr);
        min-height: 0;
        align-items: center;
    }

    .categories-hub-card-media {
        height: 106px;
    }

    .categories-hub-card-cta {
        grid-column: 1 / -1;
    }

    .categories-hub-term-card {
        flex-basis: min(62vw, 220px);
    }
}

/* Clear image-first brand cards across homepage and category pages */
.home-brand-rail,
.category-brand-rail {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 4px 2px 18px;
    scrollbar-width: none;
}

.home-brand-rail::-webkit-scrollbar,
.category-brand-rail::-webkit-scrollbar {
    display: none;
}

.home-brand-card,
.category-brand-card {
    flex: 0 0 calc((100% - 96px) / 7);
    min-width: 150px;
    min-height: 176px;
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 10px;
    border: 1px solid #efefef;
    border-radius: 16px;
    background: #fff;
    padding: 18px 14px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .045);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.home-brand-card:hover,
.category-brand-card:hover {
    border-color: rgba(255, 90, 31, .34);
    box-shadow: 0 18px 44px rgba(17, 24, 39, .08);
    transform: translateY(-3px);
}

.home-brand-logo,
.category-brand-logo {
    display: grid;
    place-items: center;
    width: 100%;
    height: 78px;
    overflow: hidden;
}

.home-brand-logo img,
.category-brand-logo img {
    display: block;
    width: 100%;
    max-width: 128px;
    height: 68px;
    object-fit: contain;
}

.home-brand-wordmark,
.category-brand-wordmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 56px;
    border-radius: 14px;
    color: #111827;
    font-size: 1.18rem;
    font-weight: 950;
    line-height: 1;
    text-align: center;
}

.home-brand-card strong,
.category-brand-card strong {
    display: block;
    color: #111827;
    font-size: .98rem;
    font-weight: 950;
    line-height: 1.25;
}

.home-brand-count,
.category-brand-card small {
    color: #6b7280;
    font-size: .86rem;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

@media (max-width: 1320px) {
    .home-brand-card,
    .category-brand-card {
        flex-basis: calc((100% - 80px) / 6);
    }
}

@media (max-width: 900px) {
    .home-brand-card,
    .category-brand-card {
        flex-basis: min(38vw, 190px);
        min-width: 156px;
    }
}

@media (max-width: 540px) {
    .home-brand-card,
    .category-brand-card {
        flex-basis: min(58vw, 210px);
    }
}

/* Mobile app polish for comparison pages and PWA install prompt */
.mobile-pwa-install-strip {
    display: none;
}

@media (min-width: 781px) {
    .mobile-pwa-install-strip,
    .mobile-pwa-install-btn {
        display: none !important;
    }
}

@media (max-width: 780px) {
    .mobile-pwa-install-strip {
        position: sticky;
        top: 72px;
        z-index: 29;
        display: flex;
        justify-content: center;
        border-bottom: 1px solid #eef0f3;
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(14px);
    }

    .mobile-pwa-install-strip .pwa-install-btn {
        min-height: 34px;
        border: 0;
        background: transparent;
        color: #6b7280;
        padding: 0 10px;
        font-size: .8rem;
        font-weight: 800;
        text-decoration: underline;
        text-underline-offset: 4px;
        box-shadow: none;
    }

    .comparison-redesign {
        background: #f6f7fb;
    }

    .comparison-redesign .container {
        width: min(94%, 1440px);
    }

    .compare-detail-hero {
        border-bottom: 0;
        background: #f6f7fb;
        padding: 12px 0 8px;
    }

    .compare-detail-hero .breadcrumbs {
        display: none;
    }

    .compare-detail-head {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: start;
    }

    .compare-detail-head .eyebrow {
        border: 1px solid #eef0f3;
        border-radius: 999px;
        background: #fff;
        color: #ff5a00;
        padding: 5px 10px;
        font-size: .68rem;
    }

    .compare-detail-head h1 {
        max-width: none;
        margin: 8px 0 0;
        color: #111827;
        font-size: clamp(1.22rem, 5.8vw, 1.72rem);
        line-height: 1.16;
        letter-spacing: 0;
        overflow-wrap: anywhere;
    }

    .compare-detail-head p {
        display: none;
    }

    .compare-detail-meta {
        justify-content: flex-start;
        gap: 6px;
    }

    .compare-detail-meta span {
        min-height: 28px;
        border-color: #eef0f3;
        background: #fff;
        padding: 0 10px;
        color: #667085;
        font-size: .74rem;
    }

    .compare-detail-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 8px 0 42px;
    }

    .compare-detail-main {
        gap: 12px;
    }

    .compare-product-stage {
        position: relative;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .compare-product-panel {
        grid-template-rows: 118px 1fr;
        min-width: 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(17, 24, 39, .06);
    }

    .compare-product-image {
        border-bottom-color: #eef0f3;
        background: #fffaf6;
    }

    .compare-product-image img {
        height: 108px;
        padding: 10px;
    }

    .compare-product-copy {
        gap: 5px;
        padding: 10px;
    }

    .compare-product-brand {
        display: none;
    }

    .compare-product-copy h2 {
        display: -webkit-box;
        min-height: 38px;
        overflow: hidden;
        color: #111827;
        font-size: .82rem;
        line-height: 1.2;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .compare-product-copy strong {
        font-size: .9rem;
        line-height: 1.2;
    }

    .compare-product-badges {
        display: none;
    }

    .compare-vs-mark {
        position: absolute;
        left: 50%;
        top: 59px;
        width: 36px;
        height: 36px;
        margin: 0;
        border: 3px solid #fff;
        background: #ff5a00;
        color: #fff;
        font-size: .72rem;
        box-shadow: 0 10px 22px rgba(255, 90, 0, .24);
        transform: translate(-50%, -50%);
    }

    .compare-overview-panel,
    .compare-editorial-note,
    .compare-spec-panel,
    .compare-side-card {
        border-color: #eef0f3;
        border-radius: 20px;
        padding: 14px;
        box-shadow: 0 8px 22px rgba(17, 24, 39, .055);
    }

    .compare-overview-panel .section-heading,
    .compare-spec-panel .section-heading,
    .compare-side-card .section-heading {
        margin-bottom: 10px;
    }

    .compare-overview-table,
    .compare-spec-panel .compare-scroll {
        display: block;
        overflow-x: auto;
        border: 1px solid #eef0f3;
        border-radius: 16px;
        background: #fff;
        box-shadow: none;
        -webkit-overflow-scrolling: touch;
    }

    .compare-table {
        display: grid;
        gap: 0;
        min-width: max(340px, 100%);
        overflow: hidden;
        border: 0;
        border-radius: 0;
        background: #fff;
        box-shadow: none;
    }

    .compare-overview-row,
    .compare-row {
        display: grid;
        min-width: max(340px, 100%);
        overflow: hidden;
        border: 0;
        border-bottom: 1px solid #eef0f3;
        border-radius: 0;
        background: #fff;
        box-shadow: none;
    }

    .compare-overview-row {
        grid-template-columns: minmax(88px, .72fr) repeat(2, minmax(112px, 1fr));
    }

    .compare-row {
        grid-template-columns: minmax(88px, .72fr) repeat(var(--compare-columns, 2), minmax(112px, 1fr));
    }

    .compare-overview-row:last-child,
    .compare-row:last-child {
        border-bottom: 0;
    }

    .compare-overview-row span,
    .compare-row > span {
        min-width: 0;
        border-right: 1px solid #eef0f3;
        border-bottom: 0;
        padding: 9px 8px;
        color: #111827;
        font-size: .78rem;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .compare-overview-row span:first-child,
    .compare-row > span:first-child {
        position: sticky;
        left: 0;
        z-index: 1;
        background: #f8fafc;
        color: #667085;
        font-size: .7rem;
        font-weight: 900;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    .compare-overview-row.head span,
    .compare-row.head > span {
        background: #fff6ef;
        color: #475467;
        font-size: .7rem;
        font-weight: 950;
    }

    .compare-overview-row.head span:first-child,
    .compare-row.head > span:first-child {
        z-index: 2;
        background: #fff6ef;
        color: #475467;
    }

    .compare-overview-row span:last-child,
    .compare-row > span:last-child {
        border-right: 0;
    }

    .compare-best-deal-btn {
        width: 100%;
        min-height: 40px;
        border-radius: 12px;
        background: #ff5a00;
        color: #fff;
        font-size: .82rem;
    }

    .compare-editorial-note .entry-content {
        font-size: .9rem;
    }

    .compare-editorial-note .entry-content h2 {
        font-size: 1rem;
    }

    .compare-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .compare-side-card h2 {
        font-size: 1rem;
    }

    .compare-side-card .recent-comparison-rail {
        grid-auto-columns: minmax(210px, 78vw);
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .sidebar-link-list.compact,
    .sidebar-product-list {
        gap: 8px;
    }

    .sidebar-product-link {
        border: 1px solid #eef0f3;
        border-radius: 14px;
        background: #fff;
        padding: 8px;
    }
}

@media (max-width: 420px) {
    .compare-product-stage {
        gap: 8px;
    }

    .compare-product-panel {
        grid-template-rows: 104px 1fr;
        border-radius: 18px;
    }

    .compare-product-image img {
        height: 94px;
        padding: 8px;
    }

    .compare-vs-mark {
        top: 52px;
        width: 32px;
        height: 32px;
    }

    .compare-product-copy {
        padding: 9px;
    }

    .compare-product-copy h2 {
        min-height: 36px;
        font-size: .78rem;
    }

    .compare-product-copy strong {
        font-size: .82rem;
    }
}
