body.hst-products-page {
    margin: 0 !important;
    color: #333;
    background: #fff;
    font-family: var(--hst-font-family);
    overflow-x: hidden;
}

body.hst-products-page .site-content .ast-container,
body.hst-products-page #primary {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: block;
}

body.hst-products-page #content {
    padding: 0;
}

.hst-products-main {
    width: 100%;
}

.hst-products-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 960px;
    position: relative;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
}

.hst-products-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
}

.hst-products-hero__copy {
    width: min(1624px, calc(100% - 296px));
    margin: 0 auto;
    padding: 0 0 208px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.hst-products-hero h1 {
    margin: 0 0 25px;
    color: #fff;
    font-size: var(--hst-font-hero-title, 80px);
    font-weight: 600;
    line-height: 1.35;
}

.hst-products-hero p {
    margin: 0 0 118px;
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--hst-font-hero-subtitle, 48px);
    font-weight: 400;
    line-height: 1.2;
}

.hst-products-detail-btn {
    min-height: 52px;
    padding: 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #e60012;
    color: #fff !important;
    font-size: var(--hst-font-button, 18px);
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none !important;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.hst-products-detail-btn:hover {
    background: #c40010;
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.28);
    transform: translateY(-1px);
}

.hst-products-detail-btn span,
.hst-products-thumbs button span {
    width: 17px;
    height: 1px;
    position: relative;
    display: block;
    background: currentColor;
}

.hst-products-detail-btn span::after,
.hst-products-thumbs button span::after {
    content: "";
    position: absolute;
    right: 0;
    top: -5px;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.hst-products-catalog {
    width: min(1624px, calc(100% - 296px));
    margin: 0 auto;
    padding: 72px 0 132px;
}

.hst-products-toolbar {
    min-height: 58px;
    margin-bottom: 38px;
    padding-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.08);
}

.hst-products-toolbar h2 {
    margin: 0;
    color: #333;
    font-size: clamp(30px, 2.6vw, 40px);
    font-weight: 600;
    line-height: 1.35;
    white-space: nowrap;
}

.hst-products-toolbar form {
    display: grid;
    grid-template-columns: 220px 220px 48px;
    align-items: center;
    gap: 18px;
}

.hst-products-toolbar label {
    margin: 0;
    position: relative;
    display: block;
}

.hst-products-toolbar label > span {
    position: absolute;
    left: 22px;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    color: #333;
    font-size: 16px;
    line-height: 1.4;
    overflow: hidden;
    pointer-events: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hst-products-toolbar label:hover > span,
.hst-products-toolbar label:focus-within > span {
    color: #e60012;
}

.hst-products-toolbar label::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid rgba(51, 51, 51, 0.62);
    border-bottom: 2px solid rgba(51, 51, 51, 0.62);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

.hst-products-toolbar label:hover::after,
.hst-products-toolbar label:focus-within::after {
    border-color: #e60012;
}

.hst-products-toolbar select {
    width: 100%;
    height: 54px;
    border: 1px solid rgba(51, 51, 51, 0.1);
    border-radius: 6px;
    background: #f8f8f8;
    box-sizing: border-box;
    color: transparent;
    appearance: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.025);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hst-products-toolbar select:hover,
.hst-products-toolbar select:focus {
    border-color: rgba(230, 0, 18, 0.42);
    background: #fff;
    color: transparent;
    box-shadow: 0 10px 26px rgba(230, 0, 18, 0.08);
}

.hst-products-toolbar option {
    color: #333;
    background: #fff;
}

.hst-products-toolbar button.hst-products-search-submit {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    background: #e60012;
    color: #fff;
    cursor: pointer;
    opacity: 1;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 10px 20px rgba(230, 0, 18, 0.16);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hst-products-toolbar button.hst-products-search-submit:hover,
.hst-products-toolbar button.hst-products-search-submit:focus {
    background: #c40010;
    color: #fff;
    box-shadow: 0 12px 24px rgba(230, 0, 18, 0.22);
    transform: translateY(-1px);
}

.hst-products-toolbar button.hst-products-search-submit svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: currentColor;
    color: inherit;
    opacity: 1;
}

.hst-products-toolbar button.hst-products-search-submit svg path {
    fill: currentColor;
}

.hst-products-layout {
    display: grid;
    grid-template-columns: 244px 1fr;
    gap: 44px;
    align-items: start;
    overflow: visible;
}

.hst-products-sidebar {
    position: relative;
    z-index: 5;
}

.hst-products-sidebar nav {
    border: 1px solid rgba(51, 51, 51, 0.08);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.045);
    overflow: visible;
}

.hst-products-sidebar-group,
.hst-products-sidebar-child-group {
    display: block;
}

.hst-products-sidebar-child-group {
    position: relative;
}

.hst-products-sidebar-products {
    display: none;
    min-width: 260px;
    position: absolute;
    left: 100%;
    top: 0;
    z-index: 20;
    border: 1px solid rgba(51, 51, 51, 0.08);
    border-left: 0;
    background: #fff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.hst-products-sidebar-child-group:hover > .hst-products-sidebar-products,
.hst-products-sidebar-child-group:focus-within > .hst-products-sidebar-products {
    display: block;
}

.hst-products-sidebar-products .is-product {
    display: flex;
}

.hst-products-sidebar a {
    min-height: 48px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.08);
    color: #333 !important;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none !important;
    box-sizing: border-box;
    transition: background 0.2s ease, color 0.2s ease, font-weight 0.2s ease, box-shadow 0.2s ease;
}

.hst-products-sidebar a span {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hst-products-sidebar a.is-section {
    min-height: 54px;
    border-bottom: 0;
    background: linear-gradient(135deg, #e60012 0%, #c90010 100%);
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
}

.hst-products-sidebar a.is-section + .hst-products-sidebar-child-group,
.hst-products-sidebar-child-group + .hst-products-sidebar-child-group {
    border-top: 1px solid rgba(51, 51, 51, 0.08);
}

.hst-products-sidebar a.is-child {
    min-height: 38px;
    padding-left: 18px;
    background: #fff;
    font-size: 14px;
    line-height: 1.3;
}

.hst-products-sidebar a.is-product {
    min-height: 36px;
    padding: 0 16px 0 30px;
    background: #fbfbfb;
    color: rgba(51, 51, 51, 0.78) !important;
    font-size: 12.5px;
    line-height: 1.35;
}

.hst-products-sidebar a.is-product span {
    display: block;
}

.hst-products-sidebar a:hover,
.hst-products-sidebar a:focus-visible {
    background: #e60012;
    color: #fff !important;
    font-weight: 700;
    box-shadow: inset 3px 0 0 #b8000e;
}

.hst-products-sidebar a.is-section.is-current,
.hst-products-sidebar a.is-section.is-active-branch,
.hst-products-sidebar a.is-section:hover,
.hst-products-sidebar a.is-section:focus-visible {
    background: linear-gradient(135deg, #e60012 0%, #c90010 100%);
    color: #fff !important;
}

.hst-products-sidebar a.is-child.is-current,
.hst-products-sidebar a.is-child.is-active-branch,
.hst-products-sidebar a.is-product.is-current {
    background: rgba(230, 0, 18, 0.06);
    color: #e60012 !important;
    font-weight: 700;
    box-shadow: inset 3px 0 0 #e60012;
}

.hst-products-sidebar a.is-child:hover,
.hst-products-sidebar a.is-child:focus-visible,
.hst-products-sidebar a.is-product:hover,
.hst-products-sidebar a.is-product:focus-visible {
    color: #fff !important;
}

.hst-products-sidebar a.is-current {
    font-weight: 600;
}

.hst-products-sidebar i {
    width: 8px;
    height: 8px;
    display: block;
    flex: 0 0 auto;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-3px);
}

.hst-products-sidebar a.is-child i {
    transform: rotate(-45deg);
}

.hst-products-sidebar-child-group:hover > .is-child i,
.hst-products-sidebar-child-group:focus-within > .is-child i {
    transform: rotate(-45deg) translateX(2px);
}

.hst-products-sidebar a.is-section i {
    display: none;
}

.hst-products-sidebar a.is-product i {
    display: none;
}

.hst-products-panel {
    min-width: 0;
}

.hst-products-main-image {
    margin: 0 0 48px;
    width: 100%;
    position: relative;
}

.hst-products-main-image img {
    width: 100%;
    display: block;
}

.hst-products-main-image figcaption {
    position: absolute;
    left: 0;
    top: 40px;
    min-width: 228px;
    height: 54px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #df0616;
    color: #fff;
    font-size: var(--hst-font-content-title);
    font-weight: 600;
    line-height: 1.4;
    box-sizing: border-box;
}

.hst-products-thumbs {
    width: calc(100% - 88px);
    margin: 0 44px 80px;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    gap: 72px;
    align-items: center;
}

.hst-products-thumbs div {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    justify-content: space-between;
    min-width: 0;
}

.hst-products-thumbs div > button {
    width: 100%;
    height: auto;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 0;
    display: none;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hst-products-thumbs div > button.is-visible {
    display: block;
}

.hst-products-thumbs div > button.is-active {
    border-color: #df0615;
    box-shadow: 0 0 0 2px rgba(223, 6, 21, 0.14);
}

.hst-products-thumbs div > button:focus-visible {
    outline: 2px solid #df0615;
    outline-offset: 3px;
}

.hst-products-thumbs img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    display: block;
    object-fit: cover;
    background: #d9d9d9;
}

.hst-products-thumbs > button {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #df0615;
    color: #fff;
    cursor: pointer;
}

.hst-products-thumbs > button.is-disabled {
    opacity: 0.3;
    cursor: default;
}

.hst-products-thumbs > button.is-prev span {
    transform: rotate(180deg);
}

.hst-product-overview {
    margin: 0 0 64px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
    align-items: center;
}

.hst-product-overview__media {
    min-width: 0;
}

.hst-product-overview__slider {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 16px;
    align-items: center;
}

.hst-product-overview__image {
    margin: 0;
    min-height: 330px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(51, 51, 51, 0.08);
    border-radius: 10px;
    background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.045);
    box-sizing: border-box;
}

.hst-product-overview__image img {
    width: 100%;
    max-height: 400px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.06));
}

.hst-product-overview__arrow {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    color: rgba(51, 51, 51, 0.34);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.hst-product-overview__arrow:hover,
.hst-product-overview__arrow:focus-visible {
    background: transparent !important;
    color: #e60012;
    transform: translateX(2px);
}

.hst-product-overview__arrow:focus:not(:hover):not(:focus-visible) {
    background: transparent !important;
    color: rgba(51, 51, 51, 0.34);
    outline: none;
    transform: none;
}

.hst-product-overview__arrow.is-prev:hover,
.hst-product-overview__arrow.is-prev:focus-visible {
    transform: translateX(-2px);
}

.hst-product-overview__arrow.is-disabled {
    opacity: 0.35;
    cursor: default;
}

.hst-product-overview__arrow span {
    width: 22px;
    height: 22px;
    display: block;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
    transform: rotate(45deg);
}

.hst-product-overview__arrow.is-prev span {
    transform: rotate(-135deg);
}

.hst-product-overview__thumbs {
    margin: 22px 50px 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.hst-product-overview__thumbs button {
    padding: 0;
    border: 1px solid rgba(51, 51, 51, 0.08);
    border-radius: 6px;
    display: none;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hst-product-overview__thumbs button.is-visible {
    display: block;
}

.hst-product-overview__thumbs button.is-active {
    border-color: rgba(230, 0, 18, 0.64);
    box-shadow: 0 8px 18px rgba(230, 0, 18, 0.12);
    transform: translateY(-1px);
}

.hst-product-overview__thumbs img {
    width: 100%;
    aspect-ratio: 1;
    display: block;
    object-fit: contain;
    background: #f8f8f8;
}

.hst-product-overview__copy h2 {
    margin: 0 0 16px;
    color: #222;
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 600;
    line-height: 1.25;
}

.hst-product-overview__subtitle {
    margin: 0 0 34px;
    color: rgba(51, 51, 51, 0.22);
    font-family: Consolas, Monaco, monospace;
    font-size: clamp(18px, 1.25vw, 24px);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.hst-product-overview__copy hr {
    width: 72px;
    margin: 0 0 28px;
    border: 0;
    border-top: 3px solid #e60012;
}

.hst-product-overview__category {
    margin: 0 0 24px;
    color: #222;
    font-size: clamp(22px, 1.7vw, 32px);
    font-weight: 500;
    line-height: 1.35;
}

.hst-product-overview__summary,
.hst-product-overview__summary p {
    color: rgba(34, 34, 34, 0.82);
    font-size: clamp(15.5px, 1.1vw, 17px);
    font-weight: 400;
    line-height: 1.68;
    text-align: justify;
}

.hst-product-overview__summary p {
    margin: 0 0 14px;
}

.hst-product-overview__summary p:last-child {
    margin-bottom: 0;
}

.hst-product-category-summary {
    margin: 0 0 72px;
    padding: 42px 48px;
    background: #f7f7f7;
    border-left: 4px solid #df0615;
}

.hst-product-category-summary h2 {
    margin: 0 0 24px;
    color: #222;
    font-size: clamp(24px, 2vw, 36px);
    font-weight: 600;
    line-height: 1.25;
}

.hst-product-category-summary__content,
.hst-product-category-summary__content p {
    color: #333;
    font-size: var(--hst-font-body);
    font-weight: 400;
    line-height: 1.75;
    text-align: justify;
}

.hst-product-category-summary__content p {
    margin: 0 0 18px;
}

.hst-product-category-summary__content p:last-child {
    margin-bottom: 0;
}

.hst-product-category-summary__content h3,
.hst-product-category-summary__content h4 {
    margin: 28px 0 14px;
    color: #222;
    font-weight: 600;
    line-height: 1.35;
}

.hst-product-detail-copy {
    padding-top: 72px;
    border-top: 1px solid rgba(51, 51, 51, 0.12);
}

.hst-product-detail-copy h2 {
    margin: 0 0 40px;
    color: #333;
    font-size: var(--hst-font-section-title);
    font-weight: 600;
    line-height: 1;
}

.hst-product-detail-copy > p {
    margin: 0 0 48px;
    color: #333;
    font-size: var(--hst-font-body);
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;
}

.hst-product-detail-copy hr {
    margin: 0 0 48px;
    border: 0;
    border-top: 1px solid rgba(51, 51, 51, 0.2);
}

.hst-product-detail-copy h3 {
    margin: 0 0 40px;
    color: #333;
    font-size: var(--hst-font-content-title);
    font-weight: 600;
    line-height: 1.333;
}

.hst-product-feature-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 44px;
    margin-bottom: 48px;
}

.hst-product-feature-row h4 {
    margin: 0;
    color: #333;
    font-size: var(--hst-font-content-title);
    font-weight: 600;
    line-height: 1.5;
}

.hst-product-feature-row p {
    margin: 0;
    color: rgba(51, 51, 51, 0.6);
    font-size: var(--hst-font-body);
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;
}

/* Keep inner-page hero placement aligned with the homepage hero. */
.hst-products-hero {
    display: flex;
    align-items: center;
    height: 960px;
}

.hst-products-hero__copy {
    padding-top: 0;
    padding-bottom: 208px;
}

.hst-products-hero h1 {
    margin: 0 0 28px;
    font-size: var(--hst-font-hero-title);
    line-height: 1.35;
}

.hst-products-hero p {
    margin: 0 0 118px;
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--hst-font-hero-subtitle);
    line-height: 1.2;
}

.hst-products-detail-btn {
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 52px;
    padding: 0 34px;
    background: #e60012;
    font-size: var(--hst-font-button);
    font-weight: 600;
}

@media (max-width: 1600px) {
    .hst-products-hero__copy,
    .hst-products-catalog {
        width: min(1200px, calc(100% - 72px));
    }

    .hst-products-layout {
        grid-template-columns: 224px 1fr;
        gap: 42px;
    }

    .hst-products-toolbar form {
        grid-template-columns: 210px 210px 48px;
        gap: 16px;
    }

    .hst-products-thumbs {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        gap: 28px;
    }

    .hst-products-thumbs div {
        grid-template-columns: repeat(5, minmax(72px, 1fr));
    }

    .hst-products-thumbs img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .hst-product-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px;
    }

    .hst-product-overview__slider {
        gap: 14px;
    }

    .hst-product-overview__image {
        min-height: 300px;
    }
}

@media (max-width: 1100px) {
    .hst-products-hero__copy {
        width: min(1200px, calc(100% - 40px));
    }

    .hst-products-hero {
        height: 960px;
    }

    .hst-products-hero__copy {
        padding-top: 0;
        padding-bottom: 208px;
    }

    .hst-products-hero h1 {
        font-size: var(--hst-font-hero-title);
    }

    .hst-products-hero p {
        margin-bottom: 118px;
        font-size: var(--hst-font-hero-subtitle);
    }

    .hst-products-catalog {
        padding: 56px 0 90px;
    }

    .hst-products-toolbar {
        height: auto;
        margin-bottom: 30px;
        padding-bottom: 16px;
        display: block;
    }

    .hst-products-toolbar h2 {
        margin-bottom: 22px;
        font-size: clamp(28px, 4vw, 36px);
        white-space: normal;
    }

    .hst-products-toolbar form,
    .hst-products-layout {
        grid-template-columns: 1fr;
    }

    .hst-products-toolbar button {
        width: 100%;
    }

    .hst-products-sidebar nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border: 1px solid rgba(51, 51, 51, 0.08);
        border-radius: 10px;
    }

    .hst-products-sidebar a,
    .hst-products-sidebar a.is-section {
        min-height: 54px;
        border: 1px solid rgba(51, 51, 51, 0.08);
        font-size: 15px;
    }

    .hst-products-sidebar a.is-child,
    .hst-products-sidebar a.is-product {
        min-height: 40px;
        padding: 0 18px;
        border: 1px solid rgba(51, 51, 51, 0.08);
        font-size: 13.5px;
    }

    .hst-products-sidebar-products {
        min-width: 0;
        position: static;
        border: 0;
        box-shadow: none;
    }

    .hst-products-sidebar-child-group:hover > .hst-products-sidebar-products,
    .hst-products-sidebar-child-group:focus-within > .hst-products-sidebar-products,
    .hst-products-sidebar-child-group.is-open > .hst-products-sidebar-products {
        display: block;
    }

    .hst-products-sidebar i {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
    }

    .hst-products-main-image figcaption {
        top: 24px;
        min-width: 180px;
        height: 44px;
        font-size: var(--hst-font-card-title);
    }

    .hst-products-thumbs {
        margin-bottom: 80px;
        grid-template-columns: 44px 1fr 44px;
        gap: 18px;
    }

    .hst-product-overview {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-bottom: 56px;
    }

    .hst-product-overview__image {
        min-height: 280px;
        padding: 20px;
    }
}

@media (max-width: 820px) {
    .hst-products-hero {
        height: 620px;
    }

    .hst-products-hero__copy {
        padding-bottom: 96px;
    }

    .hst-products-hero h1 {
        font-size: var(--hst-font-hero-title);
    }

    .hst-products-hero p {
        margin-bottom: 52px;
        font-size: var(--hst-font-hero-subtitle);
    }
}

@media (max-width: 640px) {
    .hst-products-hero__copy,
    .hst-products-catalog {
        width: calc(100% - 36px);
    }

    .hst-products-hero__copy {
        width: calc(100% - 32px);
    }

    .hst-products-hero {
        height: 620px;
    }

    .hst-products-hero__copy {
        padding-top: 0;
        padding-bottom: 96px;
    }

    .hst-products-hero h1 {
        margin-bottom: 16px;
        font-size: var(--hst-font-hero-title);
    }

    .hst-products-hero p {
        margin-bottom: 34px;
        font-size: var(--hst-font-hero-subtitle);
    }

    .hst-products-detail-btn {
        min-height: 46px;
        padding: 0 24px;
        font-size: var(--hst-font-button);
    }

    .hst-products-toolbar h2,
    .hst-product-detail-copy h2 {
        font-size: var(--hst-font-section-title);
    }

    .hst-products-toolbar label > span,
    .hst-products-toolbar button,
    .hst-product-detail-copy > p,
    .hst-product-feature-row h4,
    .hst-product-feature-row p {
        font-size: var(--hst-font-body);
    }

    .hst-products-toolbar select,
    .hst-products-toolbar button {
        height: 58px;
    }

    .hst-products-toolbar form {
        gap: 12px;
    }

    .hst-products-sidebar nav {
        grid-template-columns: 1fr;
    }

    .hst-products-sidebar a.is-child {
        padding-left: 24px;
    }

    .hst-products-sidebar a.is-product {
        padding-left: 36px;
    }

    .hst-products-main-image figcaption {
        position: static;
        min-width: 0;
        width: 100%;
    }

    .hst-products-thumbs {
        margin: 32px 0 56px;
        grid-template-columns: 38px 1fr 38px;
        gap: 10px;
    }

    .hst-product-overview {
        gap: 32px;
        margin-bottom: 56px;
    }

    .hst-product-overview__slider {
        grid-template-columns: 32px minmax(0, 1fr) 32px;
        gap: 10px;
    }

    .hst-product-overview__arrow {
        width: 32px;
        height: 32px;
    }

    .hst-product-overview__arrow span {
        width: 18px;
        height: 18px;
        border-width: 3px;
    }

    .hst-product-overview__image {
        min-height: 220px;
        padding: 16px;
    }

    .hst-product-overview__thumbs {
        margin: 18px 42px 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .hst-product-overview__copy h2 {
        margin-bottom: 12px;
    }

    .hst-product-overview__subtitle {
        margin-bottom: 20px;
    }

    .hst-product-overview__copy hr {
        margin-bottom: 24px;
    }

    .hst-product-overview__summary,
    .hst-product-overview__summary p {
        font-size: 15px;
        line-height: 1.65;
    }

    .hst-product-detail-copy {
        padding-top: 48px;
    }

    .hst-products-thumbs > button {
        width: 38px;
        height: 38px;
    }

    .hst-products-thumbs div {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .hst-product-detail-copy h3 {
        font-size: var(--hst-font-content-title);
    }

    .hst-product-feature-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 32px;
    }
}

@media (min-width: 1025px) {
    .hst-products-hero__copy,
    .hst-products-catalog {
        width: 100%;
        max-width: 1624px;
    }
}

.hst-products-hero {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 50vh;
    min-height: 360px;
}

.hst-products-hero__copy {
    width: min(1200px, calc(100% - 80px));
    max-width: 1200px;
    padding: 0;
}

.hst-products-hero p {
    margin-bottom: 42px;
}

@media (max-width: 720px) {
    .hst-products-hero {
        height: 50vh;
        min-height: 320px;
    }

    .hst-products-hero__copy {
        width: calc(100% - 36px);
        padding: 0;
    }

    .hst-products-hero p {
        margin-bottom: 28px;
    }
}

/* Unified 1280px content width. Hero backgrounds remain full width. */
.hst-products-hero__copy,
.hst-products-catalog,
.hst-products-container {
    width: min(var(--hst-container-width), calc(100% - (var(--hst-container-gutter) * 2)));
    max-width: var(--hst-container-width);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

@media (min-width: 1025px) {
    .hst-products-hero__copy,
    .hst-products-catalog,
    .hst-products-container {
        width: min(var(--hst-container-width), calc(100% - (var(--hst-container-gutter) * 2)));
        max-width: var(--hst-container-width);
    }
}

@media (max-width: 720px) {
    .hst-products-hero__copy,
    .hst-products-catalog,
    .hst-products-container {
        width: calc(100% - 36px);
    }

    .hst-products-hero__copy {
        width: calc(100% - 32px);
    }
}

.hst-products-catalog {
    margin-top: 0;
    padding-top: 32px;
}

@media (max-width: 720px) {
    .hst-products-catalog {
        padding-top: 24px;
    }
}

.hst-category-overview {
    margin-bottom: 52px;
}

.hst-category-overview .hst-product-overview__image {
    background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.hst-category-overview .hst-product-overview__image img {
    max-height: 360px;
}

.hst-category-overview__summary,
.hst-category-overview__summary p {
    font-size: 16px;
    line-height: 1.68;
}

.hst-category-overview__contact {
    margin-top: 24px;
}

.hst-category-product-list {
    padding-top: 50px;
    border-top: 1px solid rgba(51, 51, 51, 0.08);
}

.hst-category-profile {
    margin-bottom: 56px;
    padding: 48px 0 0;
    border-top: 1px solid rgba(51, 51, 51, 0.12);
}

.hst-category-profile__header {
    margin-bottom: 24px;
}

.hst-category-profile__header span {
    margin-bottom: 8px;
    display: block;
    color: #e60012;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hst-category-profile__header h2 {
    margin: 0;
    color: #333;
    font-size: clamp(30px, 2.5vw, 40px);
    font-weight: 600;
    line-height: 1.2;
}

.hst-category-profile-card {
    padding: 34px 38px;
    position: relative;
    border: 1px solid rgba(51, 51, 51, 0.11);
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.hst-category-profile-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #e60012;
}

.hst-category-profile-card::after {
    content: "";
    position: absolute;
    right: -44px;
    top: -44px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(230, 0, 18, 0.05);
}

.hst-category-profile-card__section {
    position: relative;
    z-index: 1;
    padding: 0 0 26px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

.hst-category-profile-card__section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.hst-category-profile-card__section h3 {
    margin: 0 0 12px;
    color: #222;
    font-size: clamp(20px, 1.5vw, 24px);
    font-weight: 700;
    line-height: 1.25;
}

.hst-category-profile-card__content {
    position: relative;
    z-index: 1;
}

.hst-category-profile-card__content,
.hst-category-profile-card__content p,
.hst-category-profile-card__content li {
    color: rgba(51, 51, 51, 0.74);
    font-size: 15.5px;
    line-height: 1.72;
}

.hst-category-profile-card__content p {
    margin: 0 0 12px;
}

.hst-category-profile-card__content p:last-child,
.hst-category-profile-card__content ul:last-child,
.hst-category-profile-card__content ol:last-child {
    margin-bottom: 0;
}

.hst-category-profile-card__content ul,
.hst-category-profile-card__content ol {
    margin: 0 0 12px 1.2em;
    padding: 0;
}

.hst-category-product-list > h2 {
    margin: 0 0 28px;
    color: #333;
    font-size: clamp(30px, 2.5vw, 40px);
    font-weight: 600;
    line-height: 1.2;
}

.hst-category-product-list__items {
    display: grid;
    gap: 20px;
}

.hst-category-product-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 22px;
    border: 1px solid rgba(51, 51, 51, 0.09);
    border-radius: 10px;
    background: linear-gradient(180deg, #fff 0%, #fdfdfd 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hst-category-product-card.is-current,
.hst-category-product-card:hover {
    border-color: rgba(230, 0, 18, 0.3);
    box-shadow: 0 18px 38px rgba(230, 0, 18, 0.08);
    transform: translateY(-1px);
}

.hst-category-product-card__image {
    margin: 0;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 8px;
    background: #f8f8f8;
    box-sizing: border-box;
    overflow: hidden;
}

.hst-category-product-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.hst-category-product-card:hover .hst-category-product-card__image img {
    transform: scale(1.025);
}

.hst-category-product-card__copy h3 {
    margin: 0 0 12px;
    color: #222;
    font-size: clamp(20px, 1.45vw, 25px);
    font-weight: 600;
    line-height: 1.3;
}

.hst-category-product-card__copy p,
.hst-category-product-list__empty {
    margin: 0;
    color: rgba(51, 51, 51, 0.72);
    font-size: 15.5px;
    line-height: 1.65;
    text-align: justify;
}

.hst-category-product-card__summary,
.hst-category-product-card__summary p,
.hst-category-product-card__summary li {
    color: rgba(51, 51, 51, 0.72);
    font-size: 15.5px;
    line-height: 1.65;
}

.hst-category-product-card__summary p {
    margin: 0 0 10px;
    text-align: justify;
}

.hst-category-product-card__summary p:last-child,
.hst-category-product-card__summary ul:last-child,
.hst-category-product-card__summary ol:last-child {
    margin-bottom: 0;
}

.hst-category-product-card__summary ul,
.hst-category-product-card__summary ol {
    margin: 0 0 10px 1.25em;
    padding: 0;
}

.hst-category-product-card__summary li {
    margin: 0 0 4px;
}

.hst-category-product-card__contact {
    width: max-content;
    min-height: 44px;
    margin-top: 18px;
    padding: 0 24px;
    border: 0 !important;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #e60012 !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(230, 0, 18, 0.14);
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.hst-category-product-card__contact:hover,
.hst-category-product-card__contact:focus,
.hst-category-product-card__contact:focus-visible,
.hst-category-product-card__contact:active {
    border: 0 !important;
    background: #c40010 !important;
    box-shadow: 0 12px 24px rgba(230, 0, 18, 0.22);
    color: #fff !important;
    transform: translateY(-1px);
    outline: none;
}

.hst-category-product-card__contact:visited {
    background: #e60012 !important;
    color: #fff !important;
}

.hst-category-product-card__contact span {
    width: 15px;
    height: 1px;
    position: relative;
    display: block;
    background: currentColor;
}

.hst-category-product-card__contact span::after {
    content: "";
    position: absolute;
    right: 0;
    top: -4px;
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

body.hst-product-inquiry-open {
    overflow: hidden;
}

.hst-product-inquiry-modal[hidden] {
    display: none;
}

.hst-product-inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.hst-product-inquiry-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(3px);
}

.hst-product-inquiry-modal__dialog {
    width: min(640px, calc(100vw - 36px));
    max-height: calc(100vh - 48px);
    padding: 34px;
    position: relative;
    z-index: 1;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    overflow-y: auto;
}

.hst-product-inquiry-modal__close {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    position: absolute;
    right: 18px;
    top: 18px;
    background: #f5f5f5;
    cursor: pointer;
}

.hst-product-inquiry-modal__close::before,
.hst-product-inquiry-modal__close::after {
    content: "";
    width: 18px;
    height: 2px;
    position: absolute;
    left: 10px;
    top: 18px;
    background: #333;
}

.hst-product-inquiry-modal__close::before {
    transform: rotate(45deg);
}

.hst-product-inquiry-modal__close::after {
    transform: rotate(-45deg);
}

.hst-product-inquiry-modal__close:hover,
.hst-product-inquiry-modal__close:focus-visible {
    background: #e60012;
}

.hst-product-inquiry-modal__close:hover::before,
.hst-product-inquiry-modal__close:hover::after,
.hst-product-inquiry-modal__close:focus-visible::before,
.hst-product-inquiry-modal__close:focus-visible::after {
    background: #fff;
}

.hst-product-inquiry-modal__dialog h2 {
    margin: 0 48px 8px 0;
    color: #222;
    font-size: clamp(28px, 2.2vw, 36px);
    font-weight: 700;
    line-height: 1.2;
}

.hst-product-inquiry-modal__product {
    min-height: 22px;
    margin: 0 0 22px;
    color: #e60012;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.hst-product-inquiry-modal__message {
    margin: 0 0 18px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.5;
}

.hst-product-inquiry-modal__message.is-success {
    background: rgba(18, 150, 80, 0.1);
    color: #147d46;
}

.hst-product-inquiry-modal__message.is-error {
    background: rgba(230, 0, 18, 0.1);
    color: #c40010;
}

.hst-product-inquiry-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hst-product-inquiry-field {
    margin-bottom: 16px;
    display: block;
}

.hst-product-inquiry-row .hst-product-inquiry-field {
    min-width: 0;
}

.hst-product-inquiry-field span {
    margin-bottom: 7px;
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.hst-product-inquiry-field em {
    margin-left: 4px;
    color: #e60012;
    font-style: normal;
}

.hst-product-inquiry-field input,
.hst-product-inquiry-field textarea {
    width: 100%;
    border: 1px solid rgba(51, 51, 51, 0.14);
    border-radius: 0;
    background: #f7f7f7;
    box-sizing: border-box;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.hst-product-inquiry-field input {
    height: 48px;
    padding: 0 14px;
}

.hst-product-inquiry-field textarea {
    min-height: 126px;
    padding: 13px 14px;
    resize: vertical;
}

.hst-product-inquiry-field input:focus,
.hst-product-inquiry-field textarea:focus {
    border-color: #e60012;
    background: #fff;
}

.hst-product-inquiry-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 4px;
    border: 0;
    border-radius: 0;
    background: #e60012;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.hst-product-inquiry-submit:hover,
.hst-product-inquiry-submit:focus,
.hst-product-inquiry-submit:focus-visible,
.hst-product-inquiry-submit:active {
    background: #c40010;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(230, 0, 18, 0.22);
    outline: none;
}

.hst-category-downloads {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(51, 51, 51, 0.12);
}

.hst-category-downloads__header {
    margin-bottom: 28px;
}

.hst-category-downloads__header span {
    margin-bottom: 8px;
    display: block;
    color: #e60012;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hst-category-downloads__header h2 {
    margin: 0;
    color: #333;
    font-size: clamp(30px, 2.5vw, 40px);
    font-weight: 600;
    line-height: 1.2;
}

.hst-category-downloads__viewport {
    height: 269px;
    position: relative;
}

.hst-category-downloads__slide {
    height: 100%;
    min-height: 0;
    position: relative;
    overflow: hidden;
    background: #111;
}

.hst-category-downloads__slide[hidden] {
    display: none;
}

.hst-category-downloads__image {
    margin: 0;
    position: absolute;
    inset: 0;
}

.hst-category-downloads__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.52) 42%, rgba(0, 0, 0, 0.16) 100%);
}

.hst-category-downloads__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hst-category-downloads__overlay {
    width: min(620px, calc(100% - 96px));
    height: 100%;
    min-height: 0;
    padding: 24px 0;
    position: relative;
    z-index: 1;
    margin-left: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    color: #fff;
}

.hst-category-downloads__eyebrow {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hst-category-downloads__overlay h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 600;
    line-height: 1.18;
}

.hst-category-downloads__overlay p:not(.hst-category-downloads__eyebrow) {
    max-width: 560px;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15.5px;
    line-height: 1.55;
}

.hst-category-downloads__button {
    width: max-content;
    min-height: 42px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #e60012;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hst-category-downloads__button:hover,
.hst-category-downloads__button:focus {
    background: #c40010;
    box-shadow: 0 10px 24px rgba(230, 0, 18, 0.28);
    transform: translateY(-1px);
}

.hst-category-downloads__button span {
    width: 17px;
    height: 1px;
    position: relative;
    display: block;
    background: currentColor;
}

.hst-category-downloads__button span::after {
    content: "";
    position: absolute;
    right: 0;
    top: -5px;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.hst-category-downloads__controls {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hst-category-downloads__arrow {
    position: absolute;
    top: 50%;
    right: 28px;
    z-index: 3;
    transform: translateY(-50%);
    background: transparent !important;
    color: rgba(255, 255, 255, 0.68);
}

.hst-category-downloads__arrow.is-prev {
    right: auto;
    left: 28px;
}

.hst-category-downloads__arrow:hover,
.hst-category-downloads__arrow:focus-visible {
    background: transparent !important;
    color: #fff;
    transform: translateY(-50%) translateX(2px);
}

.hst-category-downloads__arrow.is-prev:hover,
.hst-category-downloads__arrow.is-prev:focus-visible {
    background: transparent !important;
    transform: translateY(-50%) translateX(-2px);
}

.hst-category-downloads__dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hst-category-downloads__dots button {
    width: 34px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(51, 51, 51, 0.2);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hst-category-downloads__dots button.is-active {
    width: 54px;
    background: #e60012;
}

@media (max-width: 1100px) {
    .hst-category-product-card {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 24px;
    }
}

@media (max-width: 720px) {
    .hst-category-overview {
        margin-bottom: 48px;
    }

    .hst-category-product-list {
        padding-top: 44px;
    }

    .hst-category-profile {
        margin-bottom: 48px;
        padding-top: 44px;
    }

    .hst-category-profile-card {
        padding: 24px;
    }

    .hst-category-profile-card__section {
        margin-bottom: 22px;
        padding-bottom: 22px;
    }

    .hst-category-product-list > h2 {
        margin-bottom: 24px;
    }

    .hst-category-product-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px;
    }

    .hst-category-product-card__contact {
        width: 100%;
    }

    .hst-category-product-card__copy h3 {
        margin-bottom: 10px;
    }

    .hst-product-inquiry-modal {
        padding: 18px;
    }

    .hst-product-inquiry-modal__dialog {
        width: calc(100vw - 36px);
        max-height: calc(100vh - 36px);
        padding: 28px 20px 22px;
    }

    .hst-product-inquiry-modal__close {
        right: 12px;
        top: 12px;
    }

    .hst-product-inquiry-modal__dialog h2 {
        margin-right: 42px;
    }

    .hst-product-inquiry-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hst-category-downloads {
        margin-top: 52px;
        padding-top: 40px;
    }

    .hst-category-downloads__slide,
    .hst-category-downloads__overlay {
        height: 100%;
        min-height: 0;
    }

    .hst-category-downloads__viewport {
        height: 243px;
    }

    .hst-category-downloads__overlay {
        width: calc(100% - 40px);
        margin-left: 20px;
        padding: 20px 0;
    }

    .hst-category-downloads__image::after {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 64%, rgba(0, 0, 0, 0.32) 100%);
    }

    .hst-category-downloads__arrow {
        right: 12px;
    }

    .hst-category-downloads__arrow.is-prev {
        left: 12px;
    }

    .hst-category-downloads__overlay p:not(.hst-category-downloads__eyebrow) {
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 1.5;
    }

    .hst-category-downloads__button {
        min-height: 40px;
        padding: 0 20px;
    }
}

/* Smaller overlay typography keeps product hero imagery balanced. */
.hst-products-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(40px, 4.2vw, 56px);
    line-height: 1.25;
}

.hst-products-hero p {
    margin-bottom: 42px;
    font-size: clamp(24px, 2.35vw, 32px);
    line-height: 1.35;
}

.hst-products-detail-btn {
    min-height: 48px;
    padding: 0 30px;
    font-size: 16px;
}

.hst-category-downloads__overlay h3 {
    font-size: clamp(20px, 2vw, 28px);
}

.hst-category-downloads__overlay p:not(.hst-category-downloads__eyebrow) {
    font-size: 14px;
}

.hst-category-downloads__button {
    min-height: 40px;
    padding: 0 22px;
    font-size: 14px;
}

@media (max-width: 820px) {
    .hst-products-hero h1 {
        margin-bottom: 18px;
        font-size: 38px;
    }

    .hst-products-hero p {
        margin-bottom: 44px;
        font-size: 22px;
    }
}

@media (max-width: 560px) {
    .hst-products-hero h1 {
        margin-bottom: 14px;
        font-size: 28px;
        line-height: 1.3;
    }

    .hst-products-hero p {
        margin-bottom: 28px;
        font-size: 17px;
    }

    .hst-products-detail-btn {
        min-height: 44px;
        padding: 0 22px;
        font-size: 14px;
    }

    .hst-category-downloads__overlay h3 {
        font-size: 20px;
    }

    .hst-category-downloads__overlay p:not(.hst-category-downloads__eyebrow) {
        font-size: 13px;
    }
}
