/* BPM CTAs — PM-style stacked: load form + catalog download */
.bpm-cta-pair {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    margin-top: 0.75rem;
}

.bpm-cta-pair__item {
    width: 100%;
    display: flex;
}

/* PM layout: load CTA above catalog */
.bpm-cta-pair__item:has(.bpm-cta--load) {
    order: 1;
}

.bpm-cta-pair__item:has(.bpm-cta--catalog) {
    order: 2;
}

.bpm-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    box-sizing: border-box;
    width: 100%;
    min-height: 52px;
    padding: 0.85rem 1.35rem;
    margin: 0;
    border: 1px solid #1b6a92;
    border-radius: 4px;
    background: #1b6a92;
    color: #fff !important;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.bpm-cta__icon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    display: block;
}

.bpm-cta__label {
    flex: 1 1 auto;
    max-width: 100%;
}

.bpm-cta--load:hover,
.bpm-cta--load:focus-visible {
    background: #fff;
    color: #1b6a92 !important;
    border-color: #1b6a92;
    text-decoration: none !important;
}

.bpm-cta--catalog {
    justify-content: flex-start;
    min-height: 56px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 0;
    font-size: 1.15rem;
}

.bpm-cta--catalog:hover,
.bpm-cta--catalog:focus-visible {
    background: #145673;
    border-color: #145673;
    color: #fff !important;
    text-decoration: none !important;
}

.bpm-cta:active {
    transform: translateY(1px);
}

.bpm-cta:focus {
    outline: none;
}

.bpm-cta:focus-visible {
    outline: 3px solid #084d66;
    outline-offset: 3px;
}

.product-detail__cta-pair {
    margin-top: 1.5rem;
}

@media screen and (max-width: 767.98px) {
    .bpm-cta-pair {
        gap: 10px;
    }

    .bpm-cta {
        min-height: 52px;
        font-size: 0.95rem;
        padding: 0.8rem 1.1rem;
    }

    .bpm-cta--catalog {
        font-size: 1rem;
    }
}
