/* Product detail page – contact price CTA */
.v2_bnc_products_details_box_price .bota-price-contact {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0 0;
    padding: 18px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f4fbff 0%, #ffffff 55%, #f8fcff 100%);
    border: 1px solid rgba(2, 175, 241, 0.28);
    box-shadow: 0 10px 28px rgba(2, 175, 241, 0.1);
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.v2_bnc_products_details_box_price .bota-price-contact::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #02aff1 0%, #0090cc 100%);
}
.v2_bnc_products_details_box_price .bota-price-contact:hover,
.v2_bnc_products_details_box_price .bota-price-contact:focus {
    transform: translateY(-2px);
    border-color: rgba(2, 175, 241, 0.45);
    box-shadow: 0 14px 32px rgba(2, 175, 241, 0.16);
    text-decoration: none;
}
.v2_bnc_products_details_box_price .bota-price-contact__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #02aff1 0%, #0090cc 100%);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 8px 18px rgba(2, 175, 241, 0.28);
}
.v2_bnc_products_details_box_price .bota-price-contact__icon-ring {
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(2, 175, 241, 0.35);
    border-radius: 50%;
    animation: bota-price-contact-pulse 2s ease-out infinite;
}
@keyframes bota-price-contact-pulse {
    0% {
        transform: scale(0.92);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.12);
        opacity: 0;
    }
    100% {
        transform: scale(1.12);
        opacity: 0;
    }
}
.v2_bnc_products_details_box_price .bota-price-contact__content {
    flex: 1;
    min-width: 0;
    text-align: left;
}
.v2_bnc_products_details_box_price .bota-price-contact__label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #7a8a9a;
}
.v2_bnc_products_details_box_price .bota-price-contact__phone {
    display: block;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.5px;
    color: #0284c7;
}
.v2_bnc_products_details_box_price .bota-price-contact__hint {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.45;
    color: #94a3b8;
}
.v2_bnc_products_details_box_price .bota-price-contact__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #02aff1 0%, #0090cc 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(2, 175, 241, 0.25);
    transition: transform 0.2s ease;
}
.v2_bnc_products_details_box_price .bota-price-contact:hover .bota-price-contact__cta {
    transform: translateX(2px);
}
@media (max-width: 767px) {
    .v2_bnc_products_details_box_price .bota-price-contact {
        flex-wrap: wrap;
        padding: 16px;
        gap: 12px;
    }
    .v2_bnc_products_details_box_price .bota-price-contact__phone {
        font-size: 22px;
    }
    .v2_bnc_products_details_box_price .bota-price-contact__cta {
        width: 100%;
        justify-content: center;
        margin-top: 2px;
    }
}
