/* 🔧 Кнопка калькулятора — прижата к правому краю */
.fixed-calc-tab {
    position: fixed !important;
    right: -80px !important; /* Небольшой вынос за край */
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 📱 Планшеты */
@media (max-width: 960px) {
    .fixed-calc-tab {
        right: -75px !important;
    }
}

/* 📱 Мобильные телефоны */
@media (max-width: 640px) {
    .fixed-calc-tab {
        right: -75px !important; /* На мобильном вплотную к краю */
    }
}

/* 🔧 Фикс попапа */
.t-popup__container:has(#calculator-iframe) {
    max-height: 90vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}

.t-popup__content:has(#calculator-iframe) {
    max-height: none !important;
    overflow: visible !important;
    padding: 0 0 20px 0 !important;
}

#calculator-iframe {
    border: none !important;
    width: 100% !important;
    display: block !important;
    height: 2000px !important;
    min-height: 2000px !important;
    background: transparent !important;
    overflow: hidden !important;
}