/* ============================================
   DiGrano Menu — Filter & Price Chip Styles
   ============================================ */

/* claude yellow #f5c842 */

   :root{
    --highlight-yellow: #f5c842;
    --darker-yellow: #ba120c;
    --mainred: #7a0c08;
   }


/* ── Active filter button state ── */
.active-filter {
    background-color: var(--highlight-yellow) !important;
    color: #1a1a1a !important;
    border-color: var(--highlight-yellow) !important;
}

/* ── Pizza price block: three chips side by side ── */
.pizza-price-block {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    width: 100%;
    padding: 12px 16px 16px !important;
}

/* ── Individual price chip ── */
.price-chip {
    font-family: Varela Round,'Noto Sans Arabic', sans-serif;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 10px 6px 10px;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
    cursor: default;
}

.combo-chip {
    border-color: var(--highlight-yellow);
    background: rgba(245, 200, 66, 0.08);
    transform: translateY(-2px);
    display: none;
}

/* ── Chip label (size name) ── */
.chip-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #1a1b1f;
    line-height: 1.3;
    margin-bottom: 8px;
    text-transform: uppercase;
    min-height: 28px;          /* keeps chips uniform height when label wraps */
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
}

/* ── Chip price + currency stacked ── */
.chip-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    gap: 2px;
}

/* Override the existing number-price-tag inside a chip */
.price-chip .number-price-tag {
    font-size: 20px;
    font-weight: 700;
    color: var(--darker-yellow);
    line-height: 1;
}

/* Override the existing egp-price-tag inside a chip */
.price-chip .egp-price-tag {
    font-size: 10px;
    letter-spacing: 1px;
    color: #888;
}

/* ── Responsive: tighten up on small screens ── */
@media (max-width: 400px) {
    .pizza-price-block {
        gap: 5px !important;
        padding: 10px 10px 14px !important;
    }

    .price-chip {
        border-radius: 9px;
        padding: 8px 4px 8px;
    }

    .chip-label {
        font-size: 9px;
        min-height: 24px;
    }

    .price-chip .number-price-tag {
        font-size: 17px;
    }
}

.arabic-font-1,
[lang="ar"] .heading-5,
[lang="ar"] .paragraph-2,
[lang="ar"] .chip-label,
[lang="ar"] .eng-menu-name {
    font-family: "Noto Sans Arabic", sans-serif;
}
