/* Custom Product Labels Styles */

.product-labels .custom-label {
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.product-labels .top-deal-label {
    animation: pulse 2s infinite;
}


/* Animations */

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


/* Responsive */

@media (max-width: 768px) {
    .product-labels .custom-label {
        font-size: 10px;
        padding: 3px 8px;
    }
}