/**
 * Deal of the Day - Frontend Notices Styling
 */

.deal-notice {
    background-color: #fffae9;
    padding: 10px 15px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #333;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
    font-size: 16px;
}

.deal-notice strong {
    font-weight: 600;
    color: var(--wp--preset--color--primary) !important;
}

/* Pulsating effect for highlighted products */
@keyframes bringmal-deal-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

.wc-restaurant-menu-product.bringmal-deal-highlight .wc-restaurant-menu-product-inner.add {
    animation: bringmal-deal-pulse 1.5s infinite;
    position: relative;
    z-index: 1;
}
