/* ====================================================================
 * Kancbazar.ua — Release 7 (HOTFIX 27.04.2026 — sticky header ОТКЛЮЧЕН)
 * Только: Sticky CTA на странице товара (mobile <768px) с ценой.
 *
 * Sticky header удалён — он накрывал весь экран на mobile при скролле
 * вверх (тема имеет огромный <header> с мегаменю/баннерами).
 * ====================================================================
 */

/* ====================================================================
 * STICKY CTA на странице товара (mobile <768px)
 * Тема имеет .sc-product-fixed-btns но без position: fixed.
 * Принудительно фиксируем + добавляем цену слева.
 * ====================================================================
 */
@media (max-width: 767.98px) {
    .sc-product-fixed-btns {
        position: fixed !important;
        bottom: 64px !important;          /* над мобильным таб-баром */
        left: 0 !important;
        right: 0 !important;
        z-index: 998 !important;
        padding: 8px 12px !important;
        background: #fff !important;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12) !important;
    }
    .sc-product-fixed-btns.enabled {
        transform: translateY(0) !important;
    }
    /* Кнопки тапабельные */
    .sc-product-fixed-btns .sc-btn {
        height: 44px !important;
        padding: 8px 14px !important;
        font-size: 13px !important;
    }
    /* Безопасная зона снизу — описание не прячется под панелью */
    body.oct-product-page {
        padding-bottom: 110px;
    }
    /* Цена в sticky CTA (вставляется JS) */
    .sc-product-fixed-btns .oct-cta-price {
        display: flex;
        flex-direction: column;
        justify-content: center;
        line-height: 1.05;
        margin-right: 8px;
        flex-shrink: 0;
    }
    .sc-product-fixed-btns .oct-cta-price-old {
        font-size: 11px;
        color: #888;
        text-decoration: line-through;
        margin-bottom: 2px;
    }
    .sc-product-fixed-btns .oct-cta-price-new {
        font-size: 16px;
        font-weight: 800;
        color: #d32f2f;
        white-space: nowrap;
    }
}

/* На случай если на сервере осталась старая разметка — глушим явно */
.oct-header-sticky {
    position: static !important;
    box-shadow: none !important;
    animation: none !important;
}
.oct-header-spacer {
    display: none !important;
}
