/* 🟡 СУПЕР ЯРКИЙ ЖЕЛТЫЙ ДЛЯ ЦИФР КОРЗИНЫ - ВЕЗДЕ! */

/* Применяется везде - на всех страницах, на всех устройствах */
.btn-cart span,
.header__top .btn-cart span,
.header__bottom .btn-cart span,
body .btn-cart span,
body.cart-page .btn-cart span {
    color: #ebeb47 !important;
    font-weight: 700 !important;
    text-shadow: 0 0 25px rgba(235, 235, 71, 1), 0 0 10px rgba(235, 235, 71, 0.8) !important;
    opacity: 1 !important;
    filter: brightness(1.3) !important;
}

/* SVG иконка корзины - БЕЛАЯ */
.btn-cart svg path,
.header__top .btn-cart svg path,
.header__bottom .btn-cart svg path {
    fill: white !important;
    filter: none !important;
}

/* На мобилке еще ярче */
@media (max-width: 768px) {
    .btn-cart span,
    .header__top .btn-cart span,
    body .btn-cart span {
        color: #ebeb47 !important;
        font-weight: 700 !important;
        font-size: 13px !important;
        text-shadow: 0 0 30px rgba(235, 235, 71, 1), 0 0 12px rgba(235, 235, 71, 0.9) !important;
        filter: brightness(1.4) !important;
    }
    
    .btn-cart svg path {
        fill: white !important;
        filter: none !important;
    }
}

/* Очень узкие экраны */
@media (max-width: 480px) {
    .btn-cart span {
        color: #ebeb47 !important;
        text-shadow: 0 0 35px rgba(235, 235, 71, 1), 0 0 15px rgba(235, 235, 71, 1) !important;
        filter: brightness(1.5) !important;
    }
}

