.product-item-offer .ms-timer {
    width: 20%;
    margin: 0;
    left: 0;
    font-weight: bold !important;
    flex: 0;
    color: var(--cor_botao_hover) !important;
}

<style>
    /* Animação de Pulo e Tremor */
    @keyframes tigerAlert {
        0%, 100% { transform: translateY(-50%) scale(1); }
        10% { transform: translateY(-65%) scale(1.1); }
        20% { transform: translateY(-45%) rotate(-5deg); }
        30% { transform: translateY(-55%) rotate(5deg); }
        40% { transform: translateY(-50%) scale(1); }
    }

    /* Animação de Brilho (Glow) */
    @keyframes tigerGlow {
        0% { box-shadow: 0 0 5px rgba(255, 204, 0, 0.5); }
        50% { box-shadow: 0 0 20px rgba(255, 204, 0, 1), 4px 0 15px rgba(0,0,0,0.5); }
        100% { box-shadow: 0 0 5px rgba(255, 204, 0, 0.5); }
    }

    #tiger-float-btn {
        position: fixed !important; 
        top: 50% !important; 
        left: 0 !important;
        width: 60px !important; 
        height: 70px !important;
        background: #d42118 !important; 
        border: 3px solid #ffcc00 !important;
        border-left: none !important; 
        border-radius: 0 40px 40px 0 !important;
        z-index: 999999999 !important; 
        display: flex !important; 
        align-items: center !important;
        justify-content: center !important; 
        cursor: pointer !important;
        
        /* APLICA AS ANIMAÇÕES */
        animation: tigerAlert 3s ease-in-out infinite, tigerGlow 2s infinite;
        transition: all 0.3s ease;
    }

    /* Efeito ao passar o mouse */
    #tiger-float-btn:hover {
        width: 70px !important;
        background: #ff0000 !important;
    }
</style>


