/* DQ Allergen & Ingredients Modal Styles */
:root {
    --modal-bg: rgba(26, 8, 0, 0.85);
}

#dq-allergen-modal, #dq-ingredients-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: var(--modal-bg);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.dq-modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    font-family: 'Outfit', sans-serif;
}

.dq-modal-close {
    position: absolute;
    right: 25px; top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #1a0800;
    cursor: pointer;
    line-height: 1;
}

.dq-modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #EE3E42;
}

.allergen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.allergen-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #fff8f5;
    border: 1px solid #f0d0c0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.allergen-item:hover { border-color: #EE3E42; }

.allergen-item input { display: none; }

.allergen-item.active {
    background: #EE3E42;
    color: #fff;
    border-color: #EE3E42;
}

.btn-apply-filter {
    width: 100%;
    margin-top: 30px;
    background: #007AC1;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

/* Ingredients Popup Style */
#dq-ingredients-text {
    font-size: 15px;
    line-height: 1.7;
    color: #5a3020;
    max-height: 300px;
    overflow-y: auto;
}
