
.woo-attract-box {
    background: #fff3cd;
    border: 3px dashed #ff9800;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
    font-family: sans-serif;
    font-size: 20px;
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.3);
    animation: zoomIn 0.5s ease-in-out;
}

.low-stock {
    font-weight: bold;
    color: #d32f2f;
    animation: flash 1.2s infinite;
    font-size: 22px;
}

.countdown-timer {
    margin-top: 15px;
    font-size: 20px;
    color: #2e7d32;
    animation: pulseGreen 2s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pulseGreen {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
