/* ========================================
   DICED VEGGIE BADGE - Vegetarian Options
   ======================================== */

/* Ensure meal cards are positioned for absolute badge placement */
.diced-menu-card,
.diced-sub-meal-card {
    position: relative;
}

/* Veggie trigger badge - bottom right of meal card image */
.diced-veggie-trigger {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(22, 163, 74, 0.9);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    cursor: pointer;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Outfit', -apple-system, sans-serif;
    transition: background 0.2s;
    pointer-events: auto;
    line-height: 1.3;
}

.diced-veggie-trigger:hover {
    background: rgba(22, 163, 74, 1);
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.4);
}

/* Popup */
.diced-veggie-popup {
    position: fixed;
    z-index: 99999;
    background: #ffffff;
    border: 2px solid #16A34A;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    pointer-events: none;
    min-width: 200px;
    max-width: 280px;
    font-family: 'Outfit', -apple-system, sans-serif;
    transition: opacity 0.15s ease;
}

.diced-veggie-popup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D8F3DC;
}

.diced-veggie-popup-icon {
    font-size: 16px;
}

.diced-veggie-popup-title {
    font-size: 14px;
    font-weight: 800;
    color: #1B4332;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diced-veggie-popup-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.diced-veggie-pill {
    display: inline-block;
    padding: 4px 10px;
    background: #D8F3DC;
    color: #1B4332;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.diced-veggie-popup-note {
    text-align: center;
    font-size: 9px;
    color: #9CA3AF;
    margin-top: 10px;
    font-style: italic;
    line-height: 1.3;
}
