/**
 * Duh-Lish-Us Treatery - Menu Badge Styles
 */

/* Status Label - Slightly smaller but still visible */
.status-label {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    padding: 0.4rem 0.9rem !important;
    border-radius: 5px !important;
    color: white !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    z-index: 100 !important;
    opacity: 1 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.2s ease !important;
}

/* Hover effect for better interactivity */
.status-label:hover {
    transform: translateY(-1px) scale(1.02) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

/* Available - Green */
.status-available {
    background-color: #28a745 !important;
    border-color: #34ce57 !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) !important;
}

/* Sold Out - Red */
.status-sold-out {
    background-color: #dc3545 !important;
    border-color: #e4606d !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) !important;
}

/* Not in Truck - Blue */
.status-not-in-truck {
    background-color: #007bff !important;
    border-color: #3395ff !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) !important;
}

/* Ensure menu cards have position relative */
.menu-card {
    position: relative;
}

/* Make sure menu images have proper positioning */
.menu-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

/* Featured badge (star) */
.featured-badge {
    display: inline-block;
    background-color: #FFD700;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 0.8rem;
    margin-bottom: 1.5rem;
    width: 100%;
    text-align: center;
}

.featured-badge i {
    margin-right: 0.5rem;
    color: #FF6B00;
}

/* Badge container for non-image badges */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px;
    gap: 8px;
}

/* Responsive styling */
@media (max-width: 768px) {
    .status-label {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
}

