﻿.products-page {
    max-width: 1220px;
    margin: 0 auto;
    padding: 42px 20px 80px;
}

.products-hero {
    margin-bottom: 34px;
}

.product-page-trail {
    flex-wrap: wrap;
    justify-content: flex-start;
}

.section-kicker,
.product-kicker {
    color: var(--hover-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.products-hero h1,
.product-detail h1 {
    color: var(--primary-blue);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    margin: 0 0 18px;
}

.products-hero p,
.product-lead {
    color: var(--text-secondary);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    max-width: 920px;
}

.product-view-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 28px;
}

.product-view-switcher a {
    align-items: center;
    background: #ffffff;
    border: 1px solid #d7e2ed;
    border-radius: 8px;
    color: var(--primary-blue);
    display: inline-flex;
    font-weight: 700;
    min-height: 44px;
    padding: 0 18px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.product-view-switcher a:hover,
.product-view-switcher a:focus-visible,
.product-view-switcher a.is-active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #ffffff;
}

.product-catalog {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
    background: #ffffff;
    border: 1px solid #dfe6ee;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(0, 43, 92, 0.07);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 430px;
    padding: 24px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card-link {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.product-card-link:focus-visible {
    outline: 3px solid rgba(53, 122, 189, 0.45);
    outline-offset: 3px;
}

.product-card:hover {
    border-color: #c8d8e8;
    box-shadow: 0 14px 30px rgba(0, 43, 92, 0.11);
    transform: translateY(-2px);
}

.product-card-media {
    align-items: center;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4f9 100%);
    border: 1px solid #dde7f0;
    border-radius: 6px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    margin: 0 0 18px;
    overflow: hidden;
    padding: 14px;
    width: 100%;
}

.product-card-media img {
    display: block;
    height: 100%;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.product-card h2 {
    color: var(--primary-blue);
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.2;
    margin: 0 0 14px;
    text-align: left;
}

.product-card p,
.product-text p,
.product-text li {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.65;
}

.product-card p {
    margin: 0 0 20px;
}

.product-more,
.product-back,
.product-link {
    color: var(--primary-blue);
    display: inline-flex;
    font-weight: 700;
    margin-top: auto;
    text-decoration: none;
}

.product-more {
    align-items: center;
    align-self: flex-start;
    border-radius: 6px;
    padding: 6px 0;
    transition: background 0.2s ease, color 0.2s ease, padding 0.2s ease;
}

.product-card-link:hover .product-more,
.product-card-link:focus-visible .product-more {
    background: transparent;
    color: var(--brand-copper-strong, var(--color-accent-hover));
    padding-left: 0;
    padding-right: 0;
}

.product-back:hover,
.product-link:hover {
    color: var(--hover-blue);
}

.product-detail {
    max-width: 1040px;
}

.product-back {
    display: inline-block;
    margin-bottom: 26px;
}

.product-section {
    border-top: 1px solid #dfe6ee;
    padding: 30px 0;
}

.product-section h2 {
    color: var(--primary-blue);
    font-size: clamp(22px, 3vw, 30px);
    margin: 0 0 18px;
    text-align: left;
}

.product-section h3 {
    color: var(--primary-blue);
    font-size: clamp(18px, 2.4vw, 24px);
    margin: 22px 0 10px;
    text-align: left;
}

.product-list {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 22px 0 0;
}

.product-list article {
    background: #f8f9fa;
    border: 1px solid #e3e8ef;
    border-radius: 8px;
    padding: 18px;
}

.product-list h3 {
    margin-top: 0;
}

.product-catalog-compact .product-card {
    min-height: 360px;
}

.product-card p:empty {
    display: none;
}

.official-product-content {
    color: var(--color-muted);
    font-family: var(--site-font-family);
    overflow: hidden;
}

.official-product-content,
.official-product-content :where(p, li, td, th, span, div, a, strong, b, em, sup) {
    color: var(--color-muted);
    font-family: var(--site-font-family);
    font-size: 16px;
    line-height: 1.72;
}

.official-product-content :where(h2, h3, h4, strong, b) {
    color: var(--color-text);
    font-weight: 700;
}

.official-product-content :where(h2, h3, h4) {
    line-height: 1.25;
    margin: 32px 0 14px;
}

.official-product-content p {
    margin: 0 0 18px;
    text-align: left;
    text-indent: 0;
}

.official-product-content p:empty {
    display: none;
}

.official-product-content p:has(> strong:first-child),
.official-product-content p:has(> b:first-child) {
    margin-top: 28px;
}

.official-product-content p:has(> strong:first-child) strong,
.official-product-content p:has(> b:first-child) b {
    color: var(--color-text);
    font-size: 17px;
    letter-spacing: 0;
    line-height: 1.35;
}

.official-product-content li {
    margin-bottom: 8px;
    text-align: left;
    text-indent: 0;
}

.official-product-content :where(ul, ol) {
    margin: 12px 0 22px 24px;
    padding: 0;
}

.official-product-content img {
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: 6px;
    box-sizing: border-box;
    display: block;
    height: auto;
    margin: 20px auto;
    max-width: min(100%, 680px);
    object-fit: contain;
    padding: 6px;
}

.official-product-content a {
    color: var(--color-accent-hover);
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.official-product-content a:hover {
    color: var(--color-accent);
}

.official-product-content a * {
    color: inherit;
}

.official-product-content table {
    border-collapse: collapse;
    display: block;
    margin: 22px 0;
    max-width: 100%;
    overflow-x: auto;
    width: 100%;
}

@supports selector(table:has(img)) {
    .official-product-content table:has(img) {
        display: block;
        margin: 26px auto;
        max-width: 100%;
        overflow: visible;
        width: 100%;
    }

    .official-product-content table:has(img) tbody {
        display: block;
        width: 100%;
    }

    .official-product-content table:has(img) tr {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
        width: 100%;
    }

    .official-product-content table:has(img) th,
    .official-product-content table:has(img) td {
        align-items: center;
        display: flex;
        flex: 0 1 min(100%, 520px);
        justify-content: center;
        max-width: 100%;
        min-width: 0;
        text-align: center;
        vertical-align: middle;
        width: auto;
    }

    .official-product-content table:has(img) img {
        margin-left: auto;
        margin-right: auto;
        max-height: 520px;
        object-fit: contain;
    }
}

.official-product-content :where(th, td) {
    border: 1px solid var(--color-line);
    padding: 11px 13px;
    text-align: left;
    vertical-align: top;
}

.official-product-content th {
    background: var(--color-bg-2);
    color: var(--color-text);
}

.official-product-content tr:nth-child(even) td {
    background: color-mix(in srgb, var(--color-bg) 58%, transparent);
}

.official-product-content .center {
    text-align: center;
}

.official-product-content .left {
    float: none;
}

.spec-table {
    border-collapse: collapse;
    margin-top: 16px;
    width: 100%;
}

.spec-table th,
.spec-table td {
    border: 1px solid #d9e0e8;
    color: var(--text-secondary);
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

.spec-table th {
    background: #f1f5f9;
    color: var(--primary-blue);
    width: 36%;
}

.equipment-map-page {
    max-width: 1360px;
}

.equipment-map-hero {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
    margin: 0 0 30px;
}

.equipment-map-hero-copy h1 {
    color: var(--primary-blue);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    margin: 0 0 16px;
}

.equipment-map-hero-copy p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.equipment-map-hero-media {
    background: #ffffff;
    border: 1px solid #dfe6ee;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 43, 92, 0.08);
    margin: 0;
    overflow: hidden;
    padding: 12px;
}

.equipment-map-hero-media img {
    display: block;
    height: auto;
    width: 100%;
}

.equipment-map-board {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.equipment-map-group {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #d8e4ee;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 43, 92, 0.08);
    padding: 18px;
}

.equipment-map-excitation {
    grid-row: span 2;
}

.equipment-map-root {
    align-items: center;
    background: var(--color-text);
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    justify-content: center;
    line-height: 1.25;
    min-height: 58px;
    padding: 12px 14px;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.equipment-map-root:hover,
.equipment-map-root:focus-visible {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
}

.equipment-map-branch {
    border-top: 1px solid #d8e4ee;
    margin-top: 18px;
    padding-top: 16px;
}

.equipment-map-branch h2 {
    color: var(--color-text);
    font-size: 17px;
    line-height: 1.3;
    margin: 0 0 12px;
}

.equipment-map-nodes {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.equipment-map-branch .equipment-map-nodes {
    margin-top: 0;
}

.equipment-map-nodes a {
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #edf5f5 100%);
    border: 1px solid #cbdbe5;
    border-left: 4px solid var(--color-accent-hover);
    border-radius: 8px;
    color: var(--color-text);
    display: flex;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    line-height: 1.35;
    min-height: 48px;
    padding: 9px 12px;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.equipment-map-nodes a:hover,
.equipment-map-nodes a:focus-visible {
    border-color: #83b49e;
    box-shadow: 0 10px 20px rgba(0, 43, 92, 0.12);
    color: var(--primary-blue);
    transform: translateY(-1px);
}

@media (max-width: 940px) {
    .product-catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .equipment-map-hero,
    .equipment-map-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .products-page {
        padding: 30px 16px 60px;
    }

    .product-catalog,
    .product-list,
    .equipment-map-hero,
    .equipment-map-board {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 0;
    }

    .product-view-switcher a {
        flex: 1 1 180px;
        justify-content: center;
    }

    .equipment-map-group {
        padding: 14px;
    }
}

/* Executive inner-page theme */
.products-page {
    max-width: 1500px;
    padding: clamp(42px, 5vw, 78px) 20px 96px;
}

body .products-page .products-hero {
    background:
        linear-gradient(112deg, rgba(13, 42, 66, 0.95), rgba(13, 42, 66, 0.76)),
        url("/assets/images/index/slide2.png") center / cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    box-shadow: none;
    min-height: 330px;
}

.products-hero h1 {
    font-family: var(--site-font-family);
    font-size: clamp(42px, 5vw, 74px);
    font-weight: 600;
}

.products-hero p:not(.section-kicker) {
    color: rgba(255, 255, 255, 0.76);
}

.product-hero-request {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 0;
}

.product-hero-request:hover,
.product-hero-request:focus-visible {
    background: rgba(255, 255, 255, 0.14);
}

.product-view-switcher {
    border-color: rgba(19, 24, 49, 0.14);
    border-radius: 0;
    box-shadow: none;
}

.product-view-switcher a {
    border-radius: 0;
}

.product-view-switcher a:hover,
.product-view-switcher a:focus-visible,
.product-view-switcher a.is-active {
    background: var(--color-header);
    color: #ffffff;
}

.product-catalog {
    gap: 0;
}

.product-card {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(19, 24, 49, 0.14);
    border-radius: 0;
    box-shadow: none;
}

.product-card::before {
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent));
    height: 2px;
}

.product-card:hover {
    border-color: rgba(134, 119, 255, 0.38);
    box-shadow: 0 26px 70px rgba(16, 17, 38, 0.13);
}

.product-card-media {
    background: #eef2f7;
    border-bottom-color: rgba(19, 24, 49, 0.14);
}

.product-card h2,
.product-section h2,
.product-section h3,
.equipment-map-hero-copy h1,
.reference-section h2,
.product-buying-guide h2 {
    color: var(--ez-text, var(--color-text));
    font-family: var(--site-font-family);
}

.product-card h2 {
    font-weight: 600;
}

.product-card p,
.product-text p,
.product-text li,
.product-section p,
.product-section li,
.product-buying-guide p,
.product-buying-guide li {
    color: var(--color-muted);
}

.product-more,
.product-back,
.product-link,
.resource-download-card span {
    color: var(--color-accent-hover);
}

.product-list article,
.product-buying-guide,
.resource-download-card,
.reference-table-wrap,
.reference-figure,
.equipment-map-group,
.equipment-map-hero-media {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(19, 24, 49, 0.14);
    border-radius: 0;
    box-shadow: none;
}

.equipment-map-root {
    background: var(--color-header);
    border-radius: 0;
}

.equipment-map-root:hover,
.equipment-map-root:focus-visible {
    background: #181b3e;
}

.equipment-map-nodes a {
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(19, 24, 49, 0.14);
    border-left-color: var(--color-accent);
    border-radius: 0;
}

.resource-download-card::before {
    background: linear-gradient(180deg, var(--color-accent), var(--color-accent));
    border-radius: 0;
}

.reference-table th,
.reference-table td,
.spec-table th,
.spec-table td,
.official-product-content th,
.official-product-content td {
    border-color: rgba(19, 24, 49, 0.14);
}

.reference-table thead th,
.reference-table tfoot th,
.reference-table tfoot td,
.spec-table th,
.official-product-content th {
    background: #eef2f7;
    color: var(--ez-text, var(--color-text));
}

@media (max-width: 940px) {
    .product-catalog {
        gap: 18px;
    }
}

/* Product catalog commercial layer */
.products-page {
    max-width: 1280px;
}

body .products-page .products-hero {
    align-items: center;
    background:
        linear-gradient(112deg, rgba(13, 42, 66, 0.94), rgba(13, 42, 66, 0.8)),
        url("/assets/images/index/slide2.png") center / cover;
    border-radius: 8px;
    box-shadow: 0 22px 52px rgba(21, 49, 69, 0.16);
    display: grid !important;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 0 0 28px;
    overflow: hidden;
    padding: clamp(30px, 5vw, 54px);
}

.products-hero h1 {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.06;
    margin: 0 0 16px;
    max-width: 920px;
}

.products-hero p:not(.section-kicker) {
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
    max-width: 860px;
}

.products-hero .section-kicker {
    color: var(--color-accent-warm);
}

.product-hero-request {
    align-items: center;
    background: var(--color-accent);
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    text-decoration: none;
    white-space: nowrap;
}

.product-hero-request:hover,
.product-hero-request:focus-visible {
    background: var(--color-accent-hover);
    color: #ffffff;
}

.product-view-switcher {
    background: #ffffff;
    border: 1px solid #d7e6ed;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(21, 49, 69, 0.07);
    padding: 8px;
}

.product-view-switcher a {
    border: 0;
}

.product-catalog {
    gap: 18px;
}

.product-card {
    border-color: #d7e6ed;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(21, 49, 69, 0.09);
    min-height: 470px;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.product-card::before {
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent));
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.product-card:hover {
    border-color: #9fc9ba;
    box-shadow: 0 26px 58px rgba(21, 49, 69, 0.15);
    transform: translateY(-4px);
}

.product-card-media {
    aspect-ratio: 16 / 10;
    background:
        linear-gradient(135deg, rgba(24, 165, 116, 0.12), rgba(15, 111, 159, 0.08)),
        #f8fbfd;
    border: 0;
    border-bottom: 1px solid #dce7ed;
    border-radius: 0;
    margin: 0;
    padding: 20px;
}

.product-card h2,
.product-card p,
.product-more {
    margin-left: 24px;
    margin-right: 24px;
}

.product-card h2 {
    color: var(--color-text);
    font-size: clamp(20px, 1.7vw, 25px);
    font-weight: 800;
    margin-top: 22px;
}

.product-card p {
    color: var(--color-muted);
    font-size: 15px;
}

.product-more {
    color: var(--color-accent-hover);
    margin-bottom: 22px;
}

.product-card-link:hover .product-more,
.product-card-link:focus-visible .product-more {
    background: transparent;
    color: var(--color-accent-hover);
}

.product-buying-guide {
    align-items: start;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #d7e6ed;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(21, 49, 69, 0.09);
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    margin-top: 24px;
    padding: clamp(28px, 4vw, 44px);
}

.product-buying-guide h2 {
    color: var(--color-text);
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.12;
    margin: 0 0 16px;
}

.product-buying-guide p,
.product-buying-guide li {
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.65;
}

.product-buying-guide p {
    margin: 0;
}

.product-buying-guide ul {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-buying-guide li {
    background: #f4f8f8;
    border-left: 4px solid var(--color-accent);
    border-radius: 8px;
    padding: 14px 16px;
}

.product-resource-page .product-lead a {
    color: var(--color-accent-hover);
    font-weight: 800;
}

.resource-download-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-download-card {
    background: #ffffff;
    border: 1px solid #d7e6ed;
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(21, 49, 69, 0.08);
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 190px;
    padding: 20px;
    position: relative;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.resource-download-card::before {
    background: linear-gradient(180deg, var(--color-accent), var(--color-accent));
    border-radius: 8px 0 0 8px;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 4px;
}

.resource-download-card:hover,
.resource-download-card:focus-visible {
    border-color: #9fc9ba;
    box-shadow: 0 20px 44px rgba(21, 49, 69, 0.13);
    transform: translateY(-2px);
}

.resource-download-card h2 {
    color: var(--color-text);
    font-size: 19px;
    line-height: 1.25;
    margin: 0 0 10px;
}

.resource-download-card p {
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 18px;
}

.resource-download-card span {
    color: var(--color-accent-hover);
    font-weight: 800;
    margin-top: auto;
}

.reference-section h2 {
    color: var(--color-text);
    font-size: clamp(22px, 2.8vw, 32px);
    line-height: 1.18;
    margin: 0 0 18px;
}

.reference-table-wrap {
    background: #ffffff;
    border: 1px solid #d7e6ed;
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(21, 49, 69, 0.08);
    overflow-x: auto;
}

.reference-table {
    border-collapse: collapse;
    min-width: 720px;
    width: 100%;
}

.reference-table th,
.reference-table td {
    border-bottom: 1px solid #dce7ed;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.45;
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
}

.reference-table thead th,
.reference-table tfoot th,
.reference-table tfoot td {
    background: #edf7f4;
    color: var(--color-text);
    font-weight: 800;
}

.reference-table tbody tr:last-child td,
.reference-table tfoot tr:last-child th,
.reference-table tfoot tr:last-child td {
    border-bottom: 0;
}

.reference-table-numeric th,
.reference-table-numeric td {
    text-align: center;
}

.reference-table-numeric th:nth-child(2),
.reference-table-numeric th:nth-child(3),
.reference-table-numeric th:nth-child(4) {
    min-width: 150px;
}

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

.reference-figure {
    background: #ffffff;
    border: 1px solid #d7e6ed;
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(21, 49, 69, 0.08);
    margin: 0;
    padding: 16px;
}

.reference-figure img {
    background: #ffffff;
    border: 1px solid #dce7ed;
    border-radius: 6px;
    display: block;
    height: auto;
    margin: 0 auto;
    max-width: 100%;
}

.reference-figure figcaption {
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    margin-top: 12px;
}

@media (max-width: 880px) {
    body .products-page .products-hero,
    .product-buying-guide {
        grid-template-columns: 1fr;
    }

    .product-hero-request {
        justify-self: start;
    }

    .resource-download-grid,
    .reference-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .product-card h2,
    .product-card p,
    .product-more {
        margin-left: 20px;
        margin-right: 20px;
    }

    .resource-download-grid,
    .reference-gallery {
        grid-template-columns: 1fr;
    }

    .resource-download-card {
        min-height: 0;
    }
}

/* Final executive catalog overrides */
.products-page {
    max-width: 1380px;
    padding: clamp(42px, 5vw, 78px) 20px 96px;
}

body .products-page .products-hero {
    align-items: center;
    background:
        linear-gradient(112deg, rgba(13, 42, 66, 0.96), rgba(13, 42, 66, 0.76)),
        url("/assets/images/index/slide2.png") center / cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    box-shadow: none;
    display: grid !important;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 340px;
    overflow: hidden;
    padding: clamp(36px, 5vw, 68px);
}

.products-hero h1 {
    color: #ffffff;
    font-family: var(--site-font-family);
    font-size: clamp(34px, 3.6vw, 52px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.04;
    max-width: 920px;
}

.products-hero p:not(.section-kicker) {
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.55;
    max-width: 940px;
}

.products-hero .section-kicker {
    color: var(--color-accent);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.product-hero-request {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 0;
    color: #ffffff;
    font-weight: 700;
}

.product-hero-request:hover,
.product-hero-request:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.72);
}

.product-view-switcher,
.product-card,
.product-list article,
.product-buying-guide,
.resource-download-card,
.reference-table-wrap,
.reference-figure,
.equipment-map-group,
.equipment-map-hero-media {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(19, 24, 49, 0.14);
    border-radius: 0;
    box-shadow: none;
}

.product-view-switcher {
    padding: 0;
}

.product-view-switcher a {
    border-radius: 0;
    color: var(--ez-text, var(--color-text));
    font-weight: 700;
}

.product-view-switcher a + a {
    border-left: 1px solid rgba(19, 24, 49, 0.14);
}

.product-view-switcher a:hover,
.product-view-switcher a:focus-visible,
.product-view-switcher a.is-active {
    background: var(--color-header);
    color: #ffffff;
}

.product-catalog,
.reference-gallery {
    gap: 0;
}

.product-card::before {
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent));
    height: 2px;
}

.product-card:hover,
.product-list article:hover,
.resource-download-card:hover,
.reference-figure:hover,
.equipment-map-group:hover {
    border-color: rgba(134, 119, 255, 0.38);
    box-shadow: 0 26px 70px rgba(16, 17, 38, 0.13);
}

.product-card-media,
.reference-figure img {
    background: #eef2f7;
    border-color: rgba(19, 24, 49, 0.14);
    border-radius: 0;
    box-shadow: none;
}

.product-card h2,
.product-section h2,
.product-section h3,
.equipment-map-hero-copy h1,
.reference-section h2,
.product-buying-guide h2,
.resource-download-card h3 {
    color: var(--ez-text, var(--color-text));
    font-family: var(--site-font-family);
    font-weight: 600;
}

.product-card p,
.product-text p,
.product-text li,
.product-section p,
.product-section li,
.product-buying-guide p,
.product-buying-guide li,
.reference-figure figcaption,
.resource-download-card p {
    color: var(--color-muted);
}

.product-more,
.product-back,
.product-link,
.resource-download-card span {
    color: var(--color-accent-hover);
}

.equipment-map-root {
    background: var(--color-header);
    border-radius: 0;
}

.equipment-map-root:hover,
.equipment-map-root:focus-visible {
    background: #181b3e;
}

.equipment-map-nodes a {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(19, 24, 49, 0.14);
    border-left-color: var(--color-accent);
    border-radius: 0;
}

.resource-download-card::before {
    background: linear-gradient(180deg, var(--color-accent), var(--color-accent));
    border-radius: 0;
}

.reference-table th,
.reference-table td,
.spec-table th,
.spec-table td,
.official-product-content th,
.official-product-content td {
    border-color: rgba(19, 24, 49, 0.14);
}

.reference-table thead th,
.reference-table tfoot th,
.reference-table tfoot td,
.spec-table th,
.official-product-content th {
    background: #eef2f7;
    color: var(--ez-text, var(--color-text));
}

@media (max-width: 880px) {
    body .products-page .products-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .products-page {
        padding: 32px 16px 64px;
    }

    body .products-page .products-hero {
        min-height: 0;
        padding: 30px 22px;
    }

    .products-hero h1 {
        font-size: clamp(30px, 8.8vw, 36px);
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .products-hero p:not(.section-kicker) {
        font-size: 1rem;
    }

    .product-hero-request {
        justify-self: stretch;
        white-space: normal;
        width: auto;
    }
}

/* Refined product scale */
.products-page,
.product-detail,
.equipment-map-page,
.reference-page {
    padding-top: clamp(30px, 4vw, 56px);
}

body .products-page .products-hero {
    background:
        linear-gradient(112deg, rgba(10, 31, 48, 0.94), rgba(10, 31, 48, 0.78)),
        url("/assets/images/index/slide2.png") center / cover;
    border-radius: 6px;
    padding: clamp(28px, 4vw, 46px);
}

.products-hero h1,
.product-detail h1,
.equipment-map-hero-copy h1 {
    font-family: var(--site-font-family);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    line-height: 1.14;
}

body .products-page .products-hero h1 {
    color: #ffffff;
}

.products-hero p:not(.section-kicker),
.product-lead,
.product-text p,
.product-text li,
.product-section p,
.product-section li,
.product-buying-guide p,
.product-buying-guide li {
    font-size: 16px;
    line-height: 1.65;
}

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

.product-card h2,
.product-section h2,
.product-section h3,
.reference-section h2,
.product-buying-guide h2,
.resource-download-card h3 {
    color: var(--site-ink, var(--color-text));
    font-family: var(--site-font-family);
}

.product-card h2 {
    font-size: clamp(18px, 1.7vw, 23px);
}

.product-card::before,
.resource-download-card::before {
    background: linear-gradient(90deg, var(--site-accent, var(--color-accent)), var(--site-green, var(--color-accent)));
}

.product-more,
.product-back,
.product-link,
.resource-download-card span {
    color: var(--site-accent, var(--color-accent));
}

.equipment-map-nodes a {
    border-left-color: var(--site-accent, var(--color-accent));
}

@media (max-width: 640px) {
    .products-hero h1,
    .product-detail h1,
    .equipment-map-hero-copy h1 {
        font-size: clamp(26px, 7vw, 34px);
    }
}

/* Final product system pass: calmer catalog surfaces, consistent contrast rhythm. */
.products-page,
.product-detail,
.equipment-map-page,
.reference-page {
    background:
        linear-gradient(180deg, #eef3f6 0, #f7fafb 320px, #f4f6f8 100%);
    box-sizing: border-box;
}

.products-page {
    padding-top: clamp(34px, 4.2vw, 58px);
}

body .products-page .products-hero {
    background:
        linear-gradient(112deg, rgba(16, 24, 32, 0.88) 0%, rgba(22, 36, 50, 0.72) 58%, rgba(22, 36, 50, 0.5) 100%),
        url("/assets/images/index/slide2.png") center / cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(16, 24, 32, 0.12);
    min-height: clamp(300px, 34vw, 380px);
    overflow: hidden;
    padding: clamp(34px, 5vw, 56px);
}

.products-hero .section-kicker {
    color: var(--color-accent-warm);
}

body .products-page .products-hero h1 {
    color: #ffffff;
    font-size: clamp(30px, 3.15vw, 44px);
    font-weight: 700;
    line-height: 1.12;
    max-width: 880px;
    text-shadow: 0 9px 22px rgba(0, 0, 0, 0.34);
}

.products-hero p:not(.section-kicker) {
    color: rgba(255, 255, 255, 0.84);
    max-width: 880px;
}

.product-hero-request {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.34);
    border-radius: 6px;
    min-height: 52px;
}

.product-hero-request:hover,
.product-hero-request:focus-visible {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.product-catalog,
.reference-gallery {
    gap: 16px;
}

.product-card,
.product-list article,
.product-buying-guide,
.resource-download-card,
.reference-table-wrap,
.reference-figure,
.equipment-map-group,
.equipment-map-hero-media,
.product-view-switcher {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 24, 32, 0.12);
    border-radius: 8px;
    box-shadow: none;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-card::before,
.resource-download-card::before {
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-warm));
    height: 3px;
}

.product-card:hover,
.product-list article:hover,
.resource-download-card:hover,
.reference-figure:hover,
.equipment-map-group:hover {
    border-color: rgba(199, 116, 45, 0.34);
    box-shadow: 0 16px 40px rgba(16, 24, 32, 0.1);
    transform: translateY(-2px);
}

.product-card-media,
.reference-figure img {
    aspect-ratio: 16 / 10;
    background: #f7fafb;
    border-color: rgba(16, 24, 32, 0.12);
    border-radius: 6px;
    box-shadow: none;
    overflow: hidden;
}

.product-card-media img,
.reference-figure img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.product-card h2,
.product-section h2,
.product-section h3,
.equipment-map-hero-copy h1,
.reference-section h2,
.product-buying-guide h2,
.resource-download-card h3 {
    color: var(--color-text);
    font-family: var(--site-font-family);
    font-weight: 700;
}

.product-card h2 {
    font-size: clamp(18px, 1.55vw, 22px);
    line-height: 1.18;
}

.product-card p,
.product-text p,
.product-text li,
.product-section p,
.product-section li,
.product-buying-guide p,
.product-buying-guide li,
.reference-figure figcaption,
.resource-download-card p {
    color: var(--color-muted);
    line-height: 1.64;
}

.product-more,
.product-back,
.product-link,
.resource-download-card span {
    color: var(--color-accent);
}

.product-more:hover,
.product-back:hover,
.product-link:hover,
.resource-download-card:hover span {
    color: var(--color-accent-hover);
}

.product-view-switcher {
    gap: 0;
    overflow: hidden;
    padding: 0;
}

.product-view-switcher a {
    border-radius: 0;
    color: var(--color-text);
}

.product-view-switcher a:hover,
.product-view-switcher a:focus-visible,
.product-view-switcher a.is-active {
    background: var(--color-header);
    color: #ffffff;
}

.reference-table thead th,
.reference-table tfoot th,
.reference-table tfoot td,
.spec-table th,
.official-product-content th {
    background: var(--color-accent-soft);
    color: var(--color-text);
}

.equipment-map-root {
    background: var(--color-header);
    border-radius: 8px;
}

.equipment-map-nodes a {
    background: #ffffff;
    border-color: rgba(16, 24, 32, 0.12);
    border-left-color: var(--color-accent);
    border-radius: 8px;
}

@media (max-width: 880px) {
    body .products-page .products-hero {
        min-height: 0;
    }

    .product-catalog,
    .reference-gallery {
        gap: 14px;
    }
}

@media (max-width: 640px) {
    .products-page,
    .product-detail,
    .equipment-map-page,
    .reference-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    body .products-page .products-hero {
        padding: 28px 20px;
    }

    body .products-page .products-hero h1 {
        font-size: clamp(28px, 7vw, 34px);
    }
}

.products-page,
.product-detail,
.equipment-map-page,
.reference-page {
    background: linear-gradient(180deg, #dfe8ee 0, #eef3f6 320px, #e5edf2 100%);
}

/* Keep product pages visually continuous across the full viewport, not only inside the content container. */
body:has(.products-page),
body:has(.equipment-map-page),
body:has(.reference-page) {
    background:
        linear-gradient(180deg, var(--color-bg-2) 0, var(--color-bg) 320px, var(--color-bg-2) 100%) !important;
}

body:has(.products-page) .products-page,
body:has(.equipment-map-page) .equipment-map-page,
body:has(.reference-page) .reference-page {
    background: transparent !important;
}

body:has(.products-page) .product-detail {
    background: transparent !important;
}

.official-product-content img {
    background: transparent;
    border: 0;
    border-radius: 0;
    margin: 18px auto;
    max-width: min(100%, 760px);
    padding: 0;
}

.official-product-content :where(p, td):has(> img:only-child) {
    text-align: center;
}

.official-product-content table:has(img) {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.official-product-content table:has(img) :where(th, td) {
    background: transparent !important;
    border: 0;
    padding: clamp(10px, 1.8vw, 20px);
}

.official-product-content table:has(img) tr:nth-child(even) td {
    background: transparent !important;
}

@supports selector(table:has(img)) {
    .official-product-content table:has(img) tr {
        align-items: center;
        gap: clamp(20px, 3vw, 40px);
    }

    .official-product-content table:has(img) th,
    .official-product-content table:has(img) td {
        flex: 1 1 360px;
    }
}

.product-titlebar {
    align-items: end;
    border-bottom: 1px solid #d2dde6;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 0 0 30px;
    padding: 0 0 24px;
}

.product-titlebar__copy {
    min-width: 0;
}

.product-titlebar__actions {
    align-items: stretch;
    display: grid;
    gap: 10px;
    justify-items: stretch;
    min-width: min(280px, 38vw);
}

.product-titlebar .product-kicker {
    margin-bottom: 10px;
}

.product-titlebar h1 {
    margin-bottom: 0;
}

.product-titlebar + .product-section {
    border-top: 0;
    padding-top: 0;
}

.product-document-download {
    align-items: center;
    align-self: end;
    border-radius: 6px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    line-height: 1.2;
    min-height: 42px;
    padding: 0 15px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.product-survey-download {
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
    box-shadow: 0 12px 24px rgba(199, 116, 45, 0.2);
    color: #ffffff !important;
}

.product-survey-download:hover,
.product-survey-download:focus-visible {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    box-shadow: 0 14px 28px rgba(169, 92, 26, 0.24);
    color: #ffffff !important;
    transform: translateY(-1px);
}

.product-document-download--secondary {
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(199, 116, 45, 0.38);
    box-shadow: none;
    color: var(--color-accent) !important;
}

.product-document-download--secondary:hover,
.product-document-download--secondary:focus-visible {
    background: rgba(199, 116, 45, 0.12);
    border-color: rgba(199, 116, 45, 0.58);
    color: var(--color-accent-hover) !important;
    transform: translateY(-1px);
}

.product-document-download svg {
    fill: none;
    flex: 0 0 auto;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 18px;
}

.product-document-download span {
    color: inherit !important;
}

.document-link-row--promoted {
    display: none;
}

@media (max-width: 720px) {
    .product-titlebar {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .product-document-download {
        justify-self: stretch;
        white-space: normal;
        width: 100%;
    }

    .product-titlebar__actions {
        min-width: 0;
    }
}

.equipment-map-hero {
    grid-template-columns: minmax(310px, 0.68fr) minmax(560px, 1.32fr);
}

.equipment-map-hero > * {
    min-width: 0;
}

.equipment-map-hero-copy h1 {
    hyphens: auto;
    overflow-wrap: anywhere;
}

.equipment-map-hero-copy p:not(.section-kicker) {
    max-width: 34em;
    overflow-wrap: break-word;
}

.equipment-map-global-visual {
    aspect-ratio: 16 / 9;
    background: #eaf2f7;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
}

.equipment-map-global-visual::before {
    background: radial-gradient(ellipse at 48% 44%, rgba(255, 255, 255, 0.98) 0%, rgba(234, 243, 249, 0.9) 44%, rgba(234, 243, 249, 0.34) 70%, rgba(234, 243, 249, 0) 100%);
    border-radius: 50%;
    content: "";
    filter: blur(5px);
    height: 42%;
    pointer-events: none;
    position: absolute;
    right: -7%;
    top: 2%;
    width: 36%;
    z-index: 1;
}

.equipment-map-global-visual::after {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.48) 24%, rgba(255, 255, 255, 0) 46%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 34%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.equipment-map-hero-media .equipment-map-global-bg {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
}

.equipment-map-global-overlay {
    color: var(--color-text);
    font-family: var(--site-font-family);
    inset: 0;
    margin: 0;
    pointer-events: none;
    position: absolute;
    z-index: 2;
}

.equipment-map-origin-label {
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 24, 32, 0.12);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(16, 24, 32, 0.12);
    color: var(--color-text);
    display: flex;
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 800;
    left: calc(58.2% - 148px);
    line-height: 1;
    min-height: 28px;
    padding: 0 13px;
    position: absolute;
    top: calc(22.3% - 13px);
    white-space: nowrap;
}

.equipment-map-brand-mark {
    align-items: center;
    bottom: 24px;
    color: #082447;
    display: flex;
    font-size: clamp(25px, 3.1vw, 42px);
    font-weight: 800;
    gap: 14px;
    left: 28px;
    letter-spacing: 0;
    line-height: 1;
    position: absolute;
    text-shadow: 0 2px 18px rgba(255, 255, 255, 0.96);
    z-index: 4;
}

.equipment-map-brand-icon {
    background: conic-gradient(from 35deg, #082447 0 38%, transparent 38% 49%, var(--color-accent) 49% 86%, transparent 86% 100%);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(8, 36, 71, 0.18);
    display: inline-block;
    flex: 0 0 auto;
    height: clamp(40px, 4.1vw, 58px);
    position: relative;
    width: clamp(40px, 4.1vw, 58px);
}

.equipment-map-brand-icon::before {
    background: #ffffff;
    border-radius: 50%;
    content: "";
    inset: 8px;
    position: absolute;
}

.equipment-map-brand-icon::after {
    background: var(--color-accent);
    clip-path: polygon(43% 5%, 70% 5%, 56% 40%, 78% 40%, 35% 95%, 46% 54%, 24% 54%);
    content: "";
    inset: 12px 15px 11px 15px;
    position: absolute;
}

.equipment-map-supply-panel {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(16, 24, 32, 0.14);
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(16, 24, 32, 0.14);
    max-width: 380px;
    overflow: hidden;
    position: absolute;
    right: 22px;
    top: 54px;
    width: 43%;
    z-index: 3;
}

.equipment-map-supply-panel h2 {
    background: var(--color-header);
    color: #ffffff;
    font-size: clamp(14px, 1.25vw, 18px);
    line-height: 1.15;
    margin: 0;
    padding: 14px 18px;
}

.equipment-map-supply-panel ul {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 13px 18px 15px;
}

.equipment-map-supply-panel li {
    align-items: flex-start;
    color: var(--color-text);
    display: flex;
    font-size: clamp(10px, 0.9vw, 13px);
    font-weight: 800;
    gap: 9px;
    line-height: 1.25;
}

.equipment-map-supply-panel li::before {
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(217, 120, 37, 0.16);
    content: "";
    flex: 0 0 auto;
    height: 8px;
    margin-top: 5px;
    width: 8px;
}

@media (max-width: 940px) {
    .equipment-map-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .equipment-map-hero-copy h1 {
        font-size: clamp(28px, 7.5vw, 32px);
        max-width: min(100%, 10.8em);
    }

    .equipment-map-hero-copy p:not(.section-kicker) {
        font-size: 16px;
        max-width: min(100%, 21em);
    }

    .equipment-map-global-visual {
        aspect-ratio: 4 / 3;
    }

    .equipment-map-brand-mark {
        bottom: 16px;
        font-size: 25px;
        left: 16px;
    }

    .equipment-map-supply-panel {
        right: 12px;
        top: 12px;
        width: min(270px, calc(100% - 24px));
    }

    .equipment-map-supply-panel ul {
        gap: 6px;
        padding: 10px 12px 12px;
    }

    .equipment-map-supply-panel h2 {
        padding: 10px 12px;
    }
}

.catalog-topbar {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin: 0 0 24px;
}

.catalog-topbar .page-trail {
    flex: 0 1 auto;
    margin: 0;
}

.catalog-view-switcher {
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 24, 32, 0.12);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(16, 24, 32, 0.06);
    display: inline-flex;
    gap: 4px;
    flex: 0 0 auto;
    margin: 0 0 0 auto;
    padding: 5px;
    width: max-content;
}

.catalog-view-switcher span {
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    padding: 0 10px;
    white-space: nowrap;
}

.catalog-view-switcher a {
    align-items: center;
    border-radius: 6px;
    color: var(--color-text);
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    justify-content: center;
    line-height: 1;
    min-height: 34px;
    min-width: 92px;
    padding: 0 14px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.catalog-view-switcher a:hover,
.catalog-view-switcher a:focus-visible {
    background: rgba(16, 24, 32, 0.08);
    color: var(--color-text);
}

.catalog-view-switcher a.is-active {
    background: var(--color-accent);
    color: #ffffff;
}

@media (max-width: 640px) {
    .catalog-topbar {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .catalog-view-switcher {
        align-items: stretch;
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin: 0;
        width: 100%;
    }

    .catalog-view-switcher span {
        grid-column: 1 / -1;
        padding: 8px 10px 4px;
    }

    .catalog-view-switcher a {
        min-width: 0;
    }
}

.product-buying-guide {
    box-sizing: border-box;
    width: 100%;
}

.product-buying-guide > *,
.product-buying-guide ul,
.product-buying-guide li {
    min-width: 0;
}

@media (max-width: 880px) {
    .product-buying-guide {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .product-buying-guide {
        padding: 24px 20px;
    }

    .product-buying-guide li {
        overflow-wrap: anywhere;
    }
}
