/* Single product interaction polish. Kept separate to avoid stale CDN replacement caches. */
.catalog-detail__pagination { display: none; }

.catalog-product-info__tabs button {
    gap: 9px;
    font-size: 14px;
}

.catalog-product-info__tabs button > i {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 9px;
    color: #4d7499;
    background: #edf4fa;
    display: grid;
    place-items: center;
    font-size: 14px;
    transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.catalog-product-info__tabs button > span { min-width: 0; }

.catalog-product-info__tabs button.is-active > i {
    color: #fff;
    background: linear-gradient(145deg,#087ee9,#075ed1);
    box-shadow: 0 7px 15px rgba(8,108,218,.18);
}

.catalog-support {
    padding: 60px 0 82px;
    border-top: 1px solid #e3ecf4;
    background: #fff;
    content-visibility: auto;
    contain-intrinsic-size: auto 300px;
}

.catalog-support__card {
    position: relative;
    padding: clamp(30px,4vw,48px);
    overflow: hidden;
    border: 1px solid #cfe2f2;
    border-radius: 24px;
    background: linear-gradient(125deg,#f8fcff 0%,#edf7ff 58%,#e7f4ff 100%);
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: center;
    gap: clamp(28px,5vw,72px);
    box-shadow: 0 20px 55px rgba(13,69,122,.09);
}

.catalog-support__card::after {
    position: absolute;
    top: -120px;
    right: -70px;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(8,117,234,.14),rgba(8,117,234,0) 68%);
    pointer-events: none;
    content: "";
}

.catalog-support__copy {
    position: relative;
    z-index: 1;
    max-width: 740px;
}

.catalog-support__eyebrow {
    width: max-content;
    margin-bottom: 13px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #08775a;
    background: #dcf5eb;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 800;
}

.catalog-support__copy h2 {
    margin: 0;
    color: #092f5f;
    font-size: clamp(27px,2.7vw,39px);
    line-height: 1.13;
    letter-spacing: -.042em;
    text-wrap: balance;
}

.catalog-support__copy p {
    max-width: 650px;
    margin: 13px 0 0;
    color: #607a92;
    font-size: 14.5px;
    line-height: 1.72;
}

.catalog-support__trust {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.catalog-support__trust span {
    color: #385d7d;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
}

.catalog-support__trust i { color: #0ba976; }

.catalog-support__button {
    position: relative;
    z-index: 1;
    min-width: 310px;
    min-height: 72px;
    padding: 11px 15px;
    border: 0;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg,#0765d8,#078df0);
    display: grid;
    grid-template-columns: 42px minmax(0,1fr) auto;
    align-items: center;
    gap: 11px;
    text-align: left;
    box-shadow: 0 15px 30px rgba(7,104,213,.23);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}

.catalog-support__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 19px 36px rgba(7,104,213,.28);
}

.catalog-support__button:focus-visible {
    outline: 3px solid rgba(8,117,234,.24);
    outline-offset: 3px;
}

.catalog-support__button > i:first-child {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,.16);
    display: grid;
    place-items: center;
    font-size: 18px;
}

.catalog-support__button strong,
.catalog-support__button small { display: block; }

.catalog-support__button strong { font: 800 13px/1.35 Manrope,sans-serif; }
.catalog-support__button small { margin-top: 3px; color: #dcedff; font-size: 10px; }
.catalog-support__button > i:last-child { color: #e4f2ff; font-size: 14px; }

@media (max-width: 760px) {
    .catalog-detail__thumbs { display: none; }

    .catalog-detail__pagination {
        min-height: 36px;
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .catalog-detail__pagination-dots {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .catalog-detail__pagination-dots button {
        width: 7px;
        height: 7px;
        padding: 0;
        border: 0;
        border-radius: 99px;
        background: #bfd1e1;
        cursor: pointer;
        transition: width .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .catalog-detail__pagination-dots button.is-active {
        width: 23px;
        background: #0875ea;
        box-shadow: 0 3px 9px rgba(8,117,234,.22);
    }

    .catalog-detail__pagination-dots button:focus-visible {
        outline: 3px solid rgba(8,117,234,.22);
        outline-offset: 3px;
    }

    .catalog-detail__pagination-count {
        min-width: 45px;
        color: #8aa0b3;
        display: flex;
        align-items: baseline;
        gap: 4px;
        font-size: 10px;
        font-weight: 700;
    }

    .catalog-detail__pagination-count b { color: #145d9f; font-size: 12px; }
    .catalog-detail__pagination-count i { font-style: normal; opacity: .55; }

    .catalog-product-info__tabs button {
        min-height: 76px;
        padding: 7px 3px 6px;
        flex-direction: column;
        gap: 5px;
        font-size: 11.5px;
        line-height: 1.2;
        white-space: normal;
    }

    .catalog-product-info__tabs button > i {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
        border-radius: 8px;
        font-size: 12px;
    }

    .catalog-support { padding: 42px 0 58px; }

    .catalog-support__card {
        padding: 25px 20px;
        border-radius: 19px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .catalog-support__copy h2 { font-size: 29px; }
    .catalog-support__copy p { font-size: 14px; }

    .catalog-support__trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .catalog-support__button { width: 100%; min-width: 0; }
}

@media (max-width: 380px) {
    .catalog-product-info__tabs button { font-size: 10.5px; }
    .catalog-support__card { padding: 23px 17px; }
    .catalog-support__copy h2 { font-size: 27px; }

    .catalog-support__button {
        grid-template-columns: 38px minmax(0,1fr) auto;
        padding-inline: 10px;
    }

    .catalog-support__button > i:first-child { width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
    .catalog-support__button,
    .catalog-detail__pagination-dots button,
    .catalog-product-info__tabs button > i { transition: none; }
}
