/* Cashback message box ka style */
.cashback-message, .woo-wallet-cashback-badge {
    background-color: #ffeb3b; /* Peela rang */
    color: #333; /* Text ka rang */
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    border: 2px dashed #f44336; /* Lal dashed border */
    margin: 10px 0;
    font-size: 14px;
    animation: pulse 2s infinite; /* Dhire-dhire chamakne ke liye */
}

/* Chamakne (Pulse) ka animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}