.olj-products-page .olj-subhero {
    min-height: 646px;
}

.olj-products-page .olj-subhero img {
    min-height: 646px;
}

.olj-products-page .olj-subhero .olj-subhero__title {
    margin-bottom: 132px;
    font-size: clamp(54px, 4.69vw, 90px);
    line-height: 1.23;
}

.olj-products-page .olj-subhero p:not(.olj-subhero__title) {
    max-width: 1100px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
}

.olj-products-page .olj-subhero--center > div {
    background: rgba(0, 0, 0, 0.7);
}

.olj-products-catalog {
    width: min(1630px, calc(100vw - 160px));
    margin: 0 auto;
    padding: 0 0 96px;
    overflow: hidden;
}

.olj-products-page .olj-inquiry {
    margin-top: 64px;
}

.olj-products-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    height: 51px;
    margin-top: 52px;
    padding: 0;
    overflow-x: auto;
    background: #ffffff;
    scrollbar-width: none;
}

.olj-products-tabs::-webkit-scrollbar {
    display: none;
}

.olj-products-tabs a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
    padding: 0 14px;
    border-radius: 4px;
    color: #202020;
    font-size: 14px;
    line-height: 1.8;
    white-space: nowrap;
}

.olj-products-tabs a.is-active,
.olj-products-tabs a:hover,
.olj-products-tabs a:focus-visible {
    background: #f1f1f1;
    color: #000000;
    font-weight: 600;
}

.olj-products-anchor {
    position: relative;
    top: -120px;
}

.olj-products-group {
    margin-top: 88px;
    scroll-margin-top: 160px;
}

.olj-products-group:first-of-type {
    margin-top: 156px;
}

.olj-products-group__heading {
    max-width: 1100px;
    margin: 0 auto 39px;
    text-align: center;
}

.olj-products-group__heading h2 {
    margin: 0;
    color: #050505;
    font-size: clamp(40px, 3.13vw, 60px);
    line-height: 1.35;
    font-weight: 700;
}

.olj-products-group__heading p {
    margin: 11px auto 0;
    max-width: 1100px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
}

.olj-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.olj-catalog-card {
    position: relative;
    min-height: 238px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(138px, 0.72fr);
    gap: 4px;
    padding: 24px 8px 18px 18px;
    border-radius: 10px;
    background: #f1f1f1;
    overflow: hidden;
    cursor: pointer;
    transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.olj-catalog-card:hover,
.olj-catalog-card:focus-within {
    background: var(--olj-yellow);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
    transform: translateY(-2px);
}

.olj-catalog-card__content {
    position: relative;
    z-index: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.olj-catalog-card h3 {
    margin: 0;
    color: #090909;
    max-width: 230px;
    font-size: 22px;
    line-height: 1.12;
    font-weight: 800;
}

.olj-catalog-card__arrow {
    position: relative;
    z-index: 4;
    width: 24px;
    height: 24px;
    margin-top: 8px;
    background: url("../images/product-card-arrow.svg") left center / 14px auto no-repeat;
    transition: transform 180ms ease, opacity 180ms ease;
}

.olj-catalog-card__arrow::after {
    position: absolute;
    inset: -8px;
    content: "";
}

.olj-catalog-card__arrow:hover,
.olj-catalog-card__arrow:focus-visible {
    opacity: 0.72;
    transform: translateX(5px);
}

.olj-catalog-card__arrow:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 4px;
}

.olj-catalog-card__actions {
    display: grid;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    max-width: 100%;
    overflow: hidden;
}

.olj-catalog-card__tag-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    max-width: 100%;
    overflow: hidden;
}

.olj-catalog-card__tag-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 5px 9px;
    border-radius: 20px;
    font-size: 9px;
    line-height: 1.1;
    white-space: nowrap;
}

.olj-catalog-card__tag-row--filled span {
    background: #4a4a4a;
    color: #ffffff;
}

.olj-catalog-card__tag-row--outline span {
    border: 1px solid #b8b8b8;
    background: #ffffff;
    color: #555555;
}

.olj-catalog-card:hover .olj-catalog-card__tag-row--outline span,
.olj-catalog-card:focus-within .olj-catalog-card__tag-row--outline span {
    background: transparent;
    color: #111111;
    border-color: rgba(0, 0, 0, 0.42);
}

.olj-catalog-card__media {
    position: relative;
    z-index: 1;
    align-self: end;
    min-width: 0;
    margin: -6px -2px -2px 0;
}

.olj-catalog-card__media img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    object-position: center bottom;
    transition: transform 220ms ease;
}

.olj-catalog-card:hover .olj-catalog-card__media img,
.olj-catalog-card:focus-within .olj-catalog-card__media img {
    transform: translateY(-3px) scale(1.04);
}

.olj-catalog-card__placeholder {
    display: grid;
    place-items: center;
    height: 180px;
    color: var(--olj-muted);
    font-size: 12px;
}

.olj-products-empty {
    padding: 80px 0;
    text-align: center;
}

.olj-products-empty h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 3vw, 48px);
}

.olj-products-empty p {
    margin: 0;
    color: var(--olj-muted);
}

.olj-product-detail {
    width: min(1480px, calc(100vw - 160px));
    margin: 72px auto 96px;
}

.olj-product-detail__back {
    display: inline-flex;
    margin-bottom: 28px;
    color: #111111;
    font-size: 14px;
    font-weight: 600;
}

.olj-product-detail__hero {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: #f1f1f1;
}

.olj-product-detail__category {
    margin: 0 0 14px;
    color: #666666;
    font-size: 14px;
}

.olj-product-detail h1 {
    margin: 0;
    color: #070707;
    font-size: clamp(40px, 3.2vw, 62px);
    line-height: 1.12;
}

.olj-product-detail__subtitle {
    margin: 22px 0 0;
    color: #111111;
    font-size: 22px;
    line-height: 1.45;
}

.olj-product-detail__overview {
    margin: 22px 0 0;
    color: rgba(0, 0, 0, 0.62);
    font-size: 16px;
    line-height: 1.8;
}

.olj-product-detail__product-images,
.olj-product-detail__wide-images,
.olj-product-detail__scene-images {
    display: grid;
    gap: 20px;
}

.olj-product-detail__product-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.olj-product-detail__product-images img,
.olj-product-detail__wide-images img,
.olj-product-detail__scene-images img {
    width: 100%;
    height: auto;
    display: block;
    background: #ffffff;
}

.olj-product-detail__section {
    margin-top: 72px;
}

.olj-product-detail__section h2 {
    margin: 0 0 28px;
    font-size: clamp(32px, 2.5vw, 48px);
}

.olj-product-detail__pairs,
.olj-product-detail__specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.olj-product-detail__advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.olj-product-detail__advantages span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 18px;
    background: #f5f5f5;
    color: #111111;
    font-size: 14px;
    line-height: 1.4;
}

.olj-product-detail__pairs > div,
.olj-product-detail__specs > div {
    padding: 24px;
    background: #f5f5f5;
}

.olj-product-detail__pairs strong,
.olj-product-detail__specs span {
    display: block;
    color: #111111;
    font-weight: 700;
}

.olj-product-detail__pairs p,
.olj-product-detail__specs strong {
    display: block;
    margin: 10px 0 0;
    color: rgba(0, 0, 0, 0.62);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
}

.olj-product-detail__wide-images,
.olj-product-detail__scene-images {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 40px;
}

@media (max-width: 980px) {
    .olj-products-catalog {
        width: min(760px, calc(100vw - 44px));
        padding-bottom: 72px;
    }

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

    .olj-product-detail {
        width: min(760px, calc(100vw - 44px));
    }

    .olj-product-detail__hero,
    .olj-product-detail__pairs,
    .olj-product-detail__specs,
    .olj-product-detail__wide-images,
    .olj-product-detail__scene-images {
        grid-template-columns: 1fr;
    }

    .olj-product-detail__hero {
        padding: 32px;
    }
}

@media (max-width: 640px) {
    .olj-products-page .olj-subhero {
        min-height: 290px;
        height: 290px;
    }

    .olj-products-page .olj-subhero img {
        min-height: 290px;
        height: 290px;
    }

    .olj-products-page .olj-subhero--center > div {
        padding-top: 34px;
    }

    .olj-products-page .olj-subhero .olj-subhero__title {
        margin-bottom: 16px;
        font-size: clamp(22px, 7.2vw, 30px);
        font-weight: 600;
        line-height: 1.04;
    }

    .olj-products-page .olj-subhero p:not(.olj-subhero__title) {
        font-size: 12px;
        line-height: 1.55;
    }

    .olj-products-catalog {
        width: calc(100vw - 32px);
        padding-bottom: 32px;
    }

    .olj-products-page .olj-inquiry {
        margin-top: 36px;
    }

    .olj-products-tabs {
        gap: 6px;
        height: 40px;
        margin-top: 16px;
    }

    .olj-products-tabs a {
        min-height: 40px;
        padding: 0 10px;
        font-size: 11px;
    }

    .olj-products-group {
        margin-top: 32px;
    }

    .olj-products-group:first-of-type {
        margin-top: 38px;
    }

    .olj-products-group__heading {
        margin-bottom: 16px;
    }

    .olj-products-group__heading h2 {
        font-size: clamp(23px, 7vw, 29px);
        line-height: 1.2;
    }

    .olj-products-group__heading p {
        margin-top: 7px;
        font-size: 11px;
        line-height: 1.55;
    }

    .olj-products-catalog .olj-products-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .olj-products-catalog .olj-catalog-card {
        min-height: 164px;
        grid-template-columns: minmax(0, 1fr) 42%;
        padding: 14px 7px 12px 12px;
        border-radius: 6px;
    }

    .olj-products-catalog .olj-catalog-card h3 {
        font-size: clamp(15px, 4.5vw, 18px);
        line-height: 1.15;
    }

    .olj-products-catalog .olj-catalog-card__arrow {
        margin-top: 5px;
    }

    .olj-products-catalog .olj-catalog-card__actions {
        gap: 5px;
        padding-top: 8px;
        overflow: visible;
    }

    .olj-products-catalog .olj-catalog-card__media img,
    .olj-products-catalog .olj-catalog-card__placeholder {
        height: 116px;
    }

    .olj-products-catalog .olj-catalog-card__tag-row {
        flex-wrap: wrap;
        gap: 5px;
        overflow: visible;
    }

    .olj-products-catalog .olj-catalog-card__tag-row span {
        max-width: 100%;
        padding: 4px 6px;
        font-size: 8px;
        line-height: 1.2;
        white-space: normal;
        overflow-wrap: anywhere;
        text-align: center;
    }

    .olj-product-detail {
        width: calc(100vw - 28px);
        margin: 40px auto 56px;
    }

    .olj-product-detail__hero {
        padding: 22px;
    }

    .olj-product-detail__section {
        margin-top: 44px;
    }
}

@media (max-width: 519px) {
    .olj-products-catalog .olj-catalog-card {
        min-height: 200px;
        padding-bottom: 56px;
    }

    .olj-products-catalog .olj-catalog-card__content {
        position: static;
    }

    .olj-products-catalog .olj-catalog-card__actions {
        position: absolute;
        right: 10px;
        bottom: 12px;
        left: 12px;
        padding-top: 0;
    }

    .olj-products-catalog .olj-catalog-card__media {
        align-self: start;
        margin-top: 12px;
    }

    .olj-products-catalog .olj-catalog-card__media img,
    .olj-products-catalog .olj-catalog-card__placeholder {
        height: 104px;
    }
}

@media (min-width: 520px) and (max-width: 640px) {
    .olj-products-catalog .olj-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .olj-products-catalog .olj-catalog-card {
        display: flex;
        min-height: 238px;
        padding: 12px;
        flex-direction: column;
    }

    .olj-products-catalog .olj-catalog-card__media {
        width: 100%;
        margin: 10px 0 0;
    }

    .olj-products-catalog .olj-catalog-card__media img,
    .olj-products-catalog .olj-catalog-card__placeholder {
        height: 104px;
    }
}

.olj-product-detail {
    width: min(1480px, calc(100vw - 120px));
    margin: 72px auto 0;
}

.olj-product-detail__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
    gap: 28px;
    align-items: start;
    padding: 0;
    background: transparent;
}

.olj-product-detail-gallery__stage {
    position: relative;
    aspect-ratio: 1.36;
    max-height: 460px;
    background: #ffffff;
    overflow: hidden;
}

.olj-product-detail-gallery__stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 260ms ease;
}

.olj-product-detail-gallery__stage img.is-active {
    opacity: 1;
}

.olj-product-detail-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
    transform: translateX(-100px);
}

.olj-product-detail-gallery__dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid #8b8b8b;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.olj-product-detail-gallery__dots button.is-active {
    border-color: #4a4a4a;
    background: #4a4a4a;
}

.olj-product-detail-gallery__thumbs {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.olj-product-detail-gallery__thumbs::-webkit-scrollbar {
    display: none;
}

.olj-product-detail-gallery__thumbs button {
    flex: 0 0 112px;
    height: 76px;
    padding: 0;
    border: 2px solid transparent;
    background: #f1f1f1;
    cursor: pointer;
}

.olj-product-detail-gallery__thumbs button.is-active {
    border-color: #ffc400;
}

.olj-product-detail-gallery__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.olj-product-detail__summary {
    padding-top: 6px;
}

.olj-product-detail__summary h1 {
    margin: 0;
    color: #070707;
    font-size: clamp(28px, 2.25vw, 44px);
    line-height: 1.15;
}

.olj-product-detail__category {
    margin: 8px 0 36px;
    color: rgba(0, 0, 0, 0.58);
    font-size: 13px;
}

.olj-product-detail__summary h2,
.olj-product-detail__section h2 {
    margin: 0 0 18px;
    color: #050505;
    font-size: clamp(24px, 1.8vw, 34px);
    line-height: 1.25;
    text-align: center;
}

.olj-product-detail__summary h2 {
    text-align: left;
}

.olj-product-detail__subtitle {
    margin: 0 0 16px;
    color: #111111;
    font-size: 18px;
    line-height: 1.5;
}

.olj-product-detail__overview {
    margin: 0;
    color: rgba(0, 0, 0, 0.64);
    font-size: 15px;
    line-height: 1.85;
}

.olj-product-detail__key-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 36px;
}

.olj-product-detail__key-benefits span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    color: #111111;
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
}

.olj-product-detail__section {
    margin-top: 88px;
}

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

.olj-product-detail__pairs > div {
    position: relative;
    min-height: 132px;
    padding: 34px 28px;
    background: #ffffff;
    text-align: center;
}

.olj-product-detail__pairs > div:nth-child(n+4)::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    content: "";
    background: repeating-linear-gradient(to right, #9c9c9c 0 7px, transparent 7px 13px);
}

.olj-product-detail__pairs > div:not(:nth-child(3n))::after {
    position: absolute;
    top: 24px;
    right: 0;
    bottom: 24px;
    width: 2px;
    content: "";
    background: repeating-linear-gradient(to bottom, #9c9c9c 0 7px, transparent 7px 13px);
}

.olj-product-detail__pairs strong {
    display: block;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
}

.olj-product-detail__pairs p {
    margin: 10px 0 0;
    color: rgba(0, 0, 0, 0.58);
    font-size: 12px;
    line-height: 1.65;
}

.olj-product-detail__wide-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    width: 100vw;
    margin: 88px 0 0 calc(50% - 50vw);
}

.olj-product-detail__wide-images img {
    width: 100%;
    max-height: 760px;
    object-fit: contain;
    background: #ffffff;
}

.olj-product-detail__section--applications {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 72px max(60px, calc((100vw - 1480px) / 2)) 78px;
    background: #f3f3f3;
}

.olj-product-detail__scene-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.olj-product-detail__scene-images img {
    flex: 0 1 calc((100% - 28px) / 3);
    max-width: calc((100% - 28px) / 3);
    min-width: 260px;
    aspect-ratio: 1.32;
    object-fit: cover;
    background: #555555;
}

.olj-product-detail__specs {
    display: block;
    max-width: 1320px;
    margin: 26px auto 0;
}

.olj-product-detail__specs > div {
    display: grid;
    grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
    gap: 28px;
    padding: 11px 18px;
    border-bottom: 1px solid #cfcfcf;
    background: #ffffff;
}

.olj-product-detail__specs > div:first-child {
    border-top: 1px solid #111111;
}

.olj-product-detail__specs-head {
    font-weight: 700;
}

.olj-product-detail__specs span,
.olj-product-detail__specs strong {
    margin: 0;
    color: #111111;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

.olj-product-detail__specs strong {
    color: rgba(0, 0, 0, 0.68);
    font-weight: 400;
}

.olj-product-detail__related {
    margin-bottom: 86px;
}

.olj-product-detail__related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.olj-products-page .olj-product-detail + .olj-inquiry {
    margin-top: 0;
}

@media (max-width: 980px) {
    .olj-product-detail {
        width: min(760px, calc(100vw - 44px));
        margin-top: 48px;
    }

    .olj-product-detail__hero,
    .olj-product-detail__key-benefits,
    .olj-product-detail__pairs,
    .olj-product-detail__related-grid {
        grid-template-columns: 1fr;
    }

    .olj-product-detail-gallery__stage {
        max-height: 420px;
        width: 100%;
    }

    .olj-product-detail__pairs > div:not(:nth-child(3n)) {
        border-right: 0;
    }

    .olj-product-detail__scene-images {
        grid-template-columns: 1fr;
    }

    .olj-product-detail__section--applications {
        padding-right: 22px;
        padding-left: 22px;
    }
}

@media (max-width: 640px) {
    .olj-product-detail {
        width: calc(100vw - 24px);
        margin-top: 24px;
    }

    .olj-product-detail-gallery__stage {
        max-height: 260px;
    }

    .olj-product-detail-gallery__dots {
        gap: 10px;
        margin-top: 8px;
        transform: none;
    }

    .olj-product-detail-gallery__thumbs button {
        flex-basis: 74px;
        height: 52px;
    }

    .olj-product-detail__summary h1 {
        font-size: clamp(27px, 8vw, 34px);
    }

    .olj-product-detail__category {
        margin-bottom: 20px;
    }

    .olj-product-detail__subtitle {
        font-size: 16px;
    }

    .olj-product-detail__overview {
        font-size: 13px;
        line-height: 1.7;
    }

    .olj-product-detail__key-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 26px;
    }

    .olj-product-detail__key-benefits span {
        min-height: 38px;
        padding: 7px 8px;
        font-size: 11px;
    }

    .olj-product-detail__scene-images img {
        flex-basis: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .olj-product-detail__section {
        margin-top: 42px;
    }

    .olj-product-detail__summary h2,
    .olj-product-detail__section h2 {
        margin-bottom: 14px;
        font-size: clamp(22px, 6.5vw, 27px);
    }

    .olj-product-detail__wide-images {
        width: 100%;
        gap: 18px;
        margin: 42px auto 0;
    }

    .olj-product-detail__wide-images img {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        object-position: center center;
    }

    .olj-product-detail__specs > div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px 0;
    }

    .olj-product-detail__section--applications {
        padding-top: 42px;
        padding-bottom: 46px;
    }

    .olj-product-detail__related {
        margin-bottom: 48px;
    }
}
