/**
 * Product Tag Badges
 * Custom styling for product tag badges
 */

/* Ensure product container has positioning */
.wfs-food-item-container {
    position: relative !important;
}

/* Container for all badges */
.wfs-product-badges {
    position: absolute !important;
    bottom: 10px !important;
    right: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    z-index: 5 !important; /* Lower z-index to stay within product container */
    pointer-events: none; /* Allow clicks to pass through to elements below */
}

/* Individual badge styling */
.wfs-product-badge {
    padding: 6px 12px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    display: inline-block;
    line-height: 1.3;
    text-align: center;
    min-width: 60px;
    margin-bottom: 5px;
}

/* Keep time availability badge at bottom right */
.wfs-time-availability-badge {
    position: absolute !important;
    bottom: 10px !important;
    right: 10px !important;
    z-index: 5 !important;
}

/* Special class for when time availability is present */
.wfs-badges-with-time {
    bottom: 40px !important; /* Move product badges up when time badge exists */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wfs-product-badge {
        font-size: 12px;
        padding: 4px 8px;
    }
}
