/* ============================================================
   menu-home.css — Toon Pop Menü Anasayfası
   ────────────────────────────────────────────────────────────
   View:    views/menu.php
   Class:   br-welcome-* + br-cat-* (yz_paketservis ile uyumlu)

   NOT:
   - home.css       → Hero landing (.gh-* prefix)
   - menu-home.css  → Bu dosya — menü ana sayfası (br-welcome, br-cat-*)
============================================================ */


/* ============================================================
   PAGE WRAPPER
============================================================ */
.br-home {
    background: var(--br-bg-1);
    background-image: var(--br-halftone-light);
    background-size: var(--br-halftone-size);
    min-height: 60vh;
}

.br-page-container,
.container.br-page-container,
.container.br-home.br-page-container {
    max-width: 100% !important;
    width: 100%;
    margin: 0;
    padding: 0;
}


/* ============================================================
   WELCOME BANNER — Comic outline + halftone
============================================================ */
.br-welcome {
    text-align: center;
    padding: 32px 16px 28px;
    margin-bottom: 16px;
    background: var(--br-yellow);
    background-image: var(--br-halftone-mid);
    background-size: var(--br-halftone-size-lg);
    border-bottom: var(--br-border-thick);
    position: relative;
}
@media (min-width: 768px) {
    .br-welcome { padding: 48px 24px 40px; }
}

/* Üst rule — kalın siyah ortadaki çift dot ile */
.br-welcome-rule {
    width: 80px;
    height: 4px;
    margin: 0 auto 16px;
    background: var(--br-wine);
    border-radius: 2px;
    position: relative;
}
.br-welcome-rule::before,
.br-welcome-rule::after {
    content: '';
    position: absolute;
    top: 0;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: var(--br-gold);
}
.br-welcome-rule::before { left: -12px; }
.br-welcome-rule::after { right: -12px; }

/* Greeting — POW! comic outline başlık */
.br-welcome-greeting {
    font-family: var(--br-font-display);
    font-size: clamp(1.875rem, 5vw, 3rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: var(--br-white);
    -webkit-text-stroke: 2px var(--br-wine);
    text-shadow: 4px 4px 0 var(--br-gold);
}
@media (min-width: 768px) {
    .br-welcome-greeting {
        -webkit-text-stroke: 2.5px var(--br-wine);
        text-shadow: 6px 6px 0 var(--br-gold);
    }
}

/* Tagline */
.br-welcome-tagline {
    font-family: var(--br-font-display);
    font-weight: 600;
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    color: var(--br-wine);
    margin: 14px auto 0;
    max-width: 600px;
    line-height: 1.4;
}

/* Location pill */
.br-welcome-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 16px auto 0;
    background: var(--br-white);
    color: var(--br-wine);
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-pill);
    box-shadow: var(--br-shadow-sm);
    padding: 6px 14px;
    font-family: var(--br-font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.br-welcome-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--br-olive);
}

/* Invite (alt cümle) */
.br-welcome-invite {
    font-family: var(--br-font-sans);
    font-size: 0.875rem;
    color: var(--br-wine);
    margin: 14px 0 0;
    font-weight: 500;
    line-height: 1.5;
}


/* ============================================================
   CATEGORY LIST — Comic kart şeridi
============================================================ */
.br-cat-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 16px auto 32px;
    padding: 1rem 2rem 2rem 2rem;
}
@media (min-width: 600px) {
    .br-cat-list {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}
@media (min-width: 1000px) {
    .br-cat-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

.br-cat-row {
    background: var(--br-white);
    border: var(--br-border);
    border-radius: var(--br-radius-lg);
    box-shadow: var(--br-shadow-sm);
    padding: 14px;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    color: var(--br-wine);
    transition: transform 0.15s, box-shadow 0.15s;
}
.br-cat-row:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--br-shadow-md);
    color: var(--br-wine);
    text-decoration: none;
    background: var(--br-cream);
}

.br-cat-thumb {
    aspect-ratio: 1;
    background: var(--br-yellow);
    background-image: var(--br-halftone-mid);
    background-size: 10px 10px;
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.br-cat-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.br-cat-thumb-letter {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 28px;
    color: var(--br-wine);
    line-height: 1;
}
.br-cat-thumb-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--br-gold);
    border: 1.5px solid var(--br-wine);
}

.br-cat-body {
    min-width: 0;
}
.br-cat-headline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.br-cat-title,
body .br-cat-title,
body.theme-dark .br-cat-title,
html body .br-cat-title {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #000 !important;
    margin: 0;
    line-height: 1.15;
}
.br-cat-count {
    background: var(--br-wine);
    color: var(--br-yellow);
    border-radius: var(--br-radius-pill);
    padding: 6px 8px;
    text-align: center;
    font-family: var(--br-font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.br-cat-desc {
    font-size: 0.8125rem;
    color: var(--br-wine-light);
    line-height: 1.4;
    margin: 4px 0 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.br-cat-arrow {
    width: 36px;
    height: 36px;
    background: var(--br-gold);
    color: var(--br-white);
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-sm);
    box-shadow: 2px 2px 0 var(--br-wine);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.15s, box-shadow 0.15s;
}
.br-cat-row:hover .br-cat-arrow {
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0 var(--br-wine);
}


/* ============================================================
   EMPTY STATE
============================================================ */
.br-empty-msg-soft {
    text-align: center;
    padding: 32px 16px;
    color: var(--br-wine-light);
    font-size: 0.9375rem;
    font-style: italic;
}


/* ================================================================
   ============ TOON POP MENU — MOCKUP TASARIMI ===================
   Search bar + Filtre + Kategori chip'leri + 3-col ürün grid
================================================================ */

/* NOT: .br-home zaten yukarıda tanımlı (sarı zemin) — override etme */


/* ============================================================
   1. TOOLBAR — Search input + Filtre butonu
============================================================ */
.menu-toolbar {
    padding: 20px 2rem 12px;
    max-width: 1280px;
    margin: 0 auto;
}
@media (max-width: 600px) {
    .menu-toolbar { padding: 16px 1rem 10px; }
}

.menu-search-wrap {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.menu-search-input {
    flex: 1;
    min-width: 0;
    padding: 12px 18px;
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-pill);
    background: var(--br-white);
    box-shadow: 2px 2px 0 var(--br-wine);
    font-family: var(--br-font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--br-wine);
    outline: none;
    transition: box-shadow 0.15s, transform 0.15s;
}
.menu-search-input::placeholder {
    color: var(--br-wine-light);
    opacity: 0.7;
}
.menu-search-input:focus {
    box-shadow: 4px 4px 0 var(--br-gold);
    transform: translate(-1px, -1px);
}

.menu-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    background: var(--br-yellow);
    color: var(--br-wine);
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-pill);
    box-shadow: 2px 2px 0 var(--br-wine);
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    flex-shrink: 0;
}
.menu-filter-btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 var(--br-wine);
}
.menu-filter-btn svg { stroke: var(--br-wine); }


/* ============================================================
   2. CATEGORY CHIPS — Yatay scroll, sayılı
============================================================ */
.menu-chips-wrap {
    padding: 0 2rem 16px;
    max-width: 1280px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--br-wine) transparent;
}
@media (max-width: 600px) {
    .menu-chips-wrap { padding: 0 1rem 12px; }
}
.menu-chips-wrap::-webkit-scrollbar { height: 6px; }
.menu-chips-wrap::-webkit-scrollbar-thumb {
    background: var(--br-wine);
    border-radius: 4px;
}

.menu-chips {
    display: flex;
    gap: 8px;
    padding: 8px 0 12px;
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
}

.menu-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    background: var(--br-white);
    color: var(--br-wine);
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-pill);
    box-shadow: 2px 2px 0 var(--br-wine);
    font-family: var(--br-font-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
    flex-shrink: 0;
}
.menu-chip:hover {
    background: var(--br-yellow);
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0 var(--br-wine);
}
.menu-chip.is-active {
    background: var(--br-gold) !important;
    color: var(--br-white) !important;
    border-color: var(--br-wine) !important;
}
.menu-chip-label {
    font-weight: 800;
}
.menu-chip-count {
    opacity: 0.75;
    font-family: var(--br-font-mono);
    font-size: 11px;
}


/* ============================================================
   3. PRODUCT GRID — 3-col desktop, 1-col mobile
============================================================ */
.menu-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 8px 2rem 32px;
    max-width: 1280px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .menu-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (min-width: 1100px) {
    .menu-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}
@media (max-width: 600px) {
    .menu-product-grid { padding: 8px 1rem 32px; }
}


/* ============================================================
   4. PRODUCT CARD — Yatay yapı (görsel solda, içerik sağda)
============================================================ */
.menu-product-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 12px;
    align-items: center;
    background: var(--br-white);
    border: var(--br-border);
    border-radius: var(--br-radius-lg);
    box-shadow: var(--br-shadow-sm);
    padding: 10px 12px 10px 10px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}
.menu-product-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--br-shadow-md);
    text-decoration: none;
}

/* Thumb (görsel kutusu) */
.menu-product-thumb {
    width: 80px;
    height: 80px;
    background: var(--br-yellow);
    background-image: var(--br-halftone-mid);
    background-size: var(--br-halftone-size);
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.menu-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.menu-product-letter {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 36px;
    line-height: 1;
    color: var(--br-wine);
    -webkit-text-stroke: 1.5px var(--br-wine);
    text-shadow: 2px 2px 0 var(--br-gold);
    text-transform: uppercase;
}

/* Body (orta kolon) */
.menu-product-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.menu-product-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.menu-product-title,
body .menu-product-title,
body.theme-dark .menu-product-title,
html body .menu-product-title {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 0.9375rem;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #000 !important;
    margin: 0;
    flex: 1;
    min-width: 0;
}
@media (min-width: 1100px) {
    .menu-product-title { font-size: 1rem; }
}

/* Title parse: ilk kelime siyah, kalan kırmızı */
.menu-product-title-first,
body .menu-product-title-first,
body.theme-dark .menu-product-title-first,
html body .menu-product-title-first {
    color: #000 !important;
}
.menu-product-title-rest,
body .menu-product-title-rest,
body.theme-dark .menu-product-title-rest,
html body .menu-product-title-rest {
    color: var(--br-gold) !important;
}

/* Fiyat (sağ üstte, kırmızı, büyük) */
.menu-product-price {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 1.0625rem;
    color: var(--br-gold);
    line-height: 1;
    letter-spacing: -0.01em;
    white-space: nowrap;
    flex-shrink: 0;
}
@media (min-width: 1100px) {
    .menu-product-price { font-size: 1.125rem; }
}

/* Açıklama (1 satır) */
.menu-product-desc {
    font-family: var(--br-font-sans);
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--br-wine-light);
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* Tag pill'ler */
.menu-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
}

.menu-product-tag {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--br-wine);
    border-radius: var(--br-radius-sm);
    padding: 2px 8px;
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 9px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
}
.menu-product-tag--spicy {
    background: var(--br-gold);
    color: var(--br-white);
}
.menu-product-tag--fresh {
    background: var(--br-olive);
    color: var(--br-white);
}
.menu-product-tag--popular {
    background: var(--br-yellow);
    color: var(--br-wine);
}
.menu-product-tag--classic {
    background: var(--br-yellow-light, #FFF1A8);
    color: var(--br-wine);
}
.menu-product-tag--deal {
    background: var(--br-wine);
    color: var(--br-yellow);
}

/* + butonu (sağ kolon) */
.menu-product-add {
    width: 36px;
    height: 36px;
    background: var(--br-wine);
    color: var(--br-yellow);
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-sm);
    box-shadow: 2px 2px 0 var(--br-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.menu-product-card:hover .menu-product-add {
    background: var(--br-gold);
    color: var(--br-white);
    box-shadow: 2px 2px 0 var(--br-wine);
    transform: translate(-1px, -1px);
}
.menu-product-add svg { stroke: currentColor; }

/* Empty state */
.menu-empty,
.menu-empty-filter {
    text-align: center;
    padding: 48px 16px;
    color: var(--br-wine-light);
    font-size: 0.9375rem;
    font-style: italic;
    grid-column: 1 / -1;
}



/* ================================================================
   ============ MENU PRODUCT MODAL — Quick add to cart =============
================================================================ */
.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 16px;
    animation: menuModalFadeIn 0.18s ease;
    overflow-y: auto;
}
@media (min-width: 768px) {
    .menu-modal {
        padding: 32px 24px;
    }
}
@keyframes menuModalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.menu-modal[hidden] { display: none !important; }

body.menu-modal-open { overflow: hidden; }

.menu-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    cursor: pointer;
    z-index: 0;
}

.menu-modal-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: var(--br-white);
    border: var(--br-border-thick);
    border-radius: var(--br-radius-lg);
    box-shadow: var(--br-shadow-lg);
    overflow: hidden;
    z-index: 1;
    animation: menuModalSlideDown 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
@keyframes menuModalSlideDown {
    from { transform: translateY(-30px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.menu-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--br-white);
    color: var(--br-wine);
    border: 2px solid var(--br-wine);
    border-radius: 50%;
    box-shadow: 2px 2px 0 var(--br-wine);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.15s, background 0.15s;
}
.menu-modal-close:hover {
    background: var(--br-gold);
    color: var(--br-white);
    transform: translate(-1px, -1px);
}

/* Thumb (üst görsel kutu) */
.menu-modal-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--br-yellow);
    background-image: var(--br-halftone-mid);
    background-size: var(--br-halftone-size-lg);
    border-bottom: 3px solid var(--br-wine);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.menu-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.menu-modal-letter {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: clamp(80px, 18vw, 140px);
    color: var(--br-wine);
    -webkit-text-stroke: 2px var(--br-wine);
    text-shadow: 4px 4px 0 var(--br-gold);
}

/* Body */
.menu-modal-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-modal-title,
body .menu-modal-title,
body.theme-dark .menu-modal-title,
html body .menu-modal-title {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: #000 !important;
    margin: 0;
}

/* Modal title parse: ilk kelime siyah, kalan kırmızı (kart başlığı ile uyumlu) */
.menu-modal-title-first,
body .menu-modal-title-first,
body.theme-dark .menu-modal-title-first,
html body .menu-modal-title-first {
    color: #000 !important;
}
.menu-modal-title-rest,
body .menu-modal-title-rest,
body.theme-dark .menu-modal-title-rest,
html body .menu-modal-title-rest {
    color: var(--br-gold) !important;
}

.menu-modal-desc {
    font-family: var(--br-font-sans);
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--br-wine);
    margin: 0;
}

/* Variants */
.menu-modal-variants {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
}
.menu-modal-variants:empty { display: none; }

.menu-modal-variant {
    background: var(--br-cream-soft);
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-md);
    padding: 12px 14px;
}
.menu-modal-variant.is-error {
    border-color: var(--br-gold);
    box-shadow: 0 0 0 2px var(--br-gold-soft);
}

.menu-modal-variant-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}
.menu-modal-variant-name {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--br-wine);
}
.menu-modal-variant-required {
    color: var(--br-gold);
    font-size: 1.1em;
}
.menu-modal-variant-desc {
    font-size: 0.8125rem;
    color: var(--br-wine-light);
    margin: 0 0 8px;
    line-height: 1.4;
}

.menu-modal-variant-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-modal-variant-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: var(--br-white);
    border: 1.5px solid transparent;
    border-radius: var(--br-radius-sm);
    cursor: pointer;
    transition: all 0.12s;
}
.menu-modal-variant-option:hover {
    background: var(--br-yellow-soft, #FFF7C4);
}
.menu-modal-variant-option input {
    accent-color: var(--br-gold);
    flex-shrink: 0;
    cursor: pointer;
    width: 16px;
    height: 16px;
}
.menu-modal-variant-option:has(input:checked) {
    background: var(--br-yellow);
    border-color: var(--br-wine);
}
.menu-modal-variant-option-name {
    flex: 1;
    font-size: 0.875rem;
    color: var(--br-wine);
    font-weight: 600;
}
.menu-modal-variant-option-adj {
    font-family: var(--br-font-mono);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--br-gold);
}

/* Footer (price + add button) */
.menu-modal-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 2px dashed var(--br-wine-line);
    flex-wrap: wrap;
}
/* v028 — Sol tarafta fiyat + adet stepper */
.menu-modal-foot-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* v028 — Adet stepper */
.menu-modal-qty {
    display: inline-flex;
    align-items: center;
    background: var(--br-cream, #fff8e8);
    border: 2px solid var(--br-wine, #6b1f1f);
    border-radius: var(--br-radius-pill, 999px);
    overflow: hidden;
    box-shadow: 2px 2px 0 var(--br-gold, #c89211);
}
.menu-modal-qty-btn {
    background: transparent;
    border: none;
    color: var(--br-wine, #6b1f1f);
    font-family: var(--br-font-display);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    user-select: none;
}
.menu-modal-qty-btn:hover {
    background: var(--br-wine, #6b1f1f);
    color: var(--br-yellow, #fbc23a);
}
.menu-modal-qty-btn:active {
    transform: scale(0.92);
}
.menu-modal-qty-btn:disabled,
.menu-modal-qty-btn.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.menu-modal-qty-btn:disabled:hover {
    background: transparent;
    color: var(--br-wine, #6b1f1f);
}
.menu-modal-qty-value {
    min-width: 32px;
    text-align: center;
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--br-wine, #6b1f1f);
    padding: 0 4px;
}

.menu-modal-price {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--br-gold);
    line-height: 1;
}

.menu-modal-add {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--br-wine);
    color: var(--br-yellow) !important;
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-pill);
    box-shadow: 3px 3px 0 var(--br-gold);
    padding: 12px 22px;
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.menu-modal-add:hover {
    background: var(--br-gold);
    color: var(--br-white) !important;
    box-shadow: 3px 3px 0 var(--br-wine);
    transform: translate(-1px, -1px);
}
.menu-modal-add svg { stroke: currentColor; }


/* ================================================================
   TOAST — Sepete eklendi feedback
================================================================ */
.menu-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--br-olive);
    color: var(--br-white);
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-pill);
    box-shadow: 3px 3px 0 var(--br-wine);
    padding: 10px 20px;
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: menuToastSlide 0.2s ease;
}
.menu-toast[hidden] { display: none !important; }
@keyframes menuToastSlide {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.menu-toast svg { stroke: currentColor; }



/* ================================================================
   IN-HOUSE ONLY (mekan içi tüketim) — sepete eklenemez ürünler
================================================================ */

/* MEKANDA tag — koyu mavi/lacivert */
.menu-product-tag--inhouse {
    background: #2C3E70;
    color: #FFE57F;
    border-color: #1B2647;
}

/* Kart üzerindeki + butonu — disabled görünüm (ev ikonu) */
.menu-product-add.is-inhouse {
    background: #2C3E70;
    color: #FFE57F;
    box-shadow: 2px 2px 0 #1B2647;
    cursor: not-allowed;
}
.menu-product-card:hover .menu-product-add.is-inhouse {
    background: #1B2647;
    color: #FFE57F;
    box-shadow: 2px 2px 0 #2C3E70;
    transform: translate(-1px, -1px);
}

/* Modal in-house uyarı bandı */
.menu-modal-inhouse-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #2C3E70;
    color: #FFE57F;
    border: 2px solid #1B2647;
    border-radius: var(--br-radius-md);
    box-shadow: 2px 2px 0 #1B2647;
    font-family: var(--br-font-display);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    margin: 4px 0;
}
.menu-modal-inhouse-notice[hidden] { display: none !important; }
.menu-modal-inhouse-notice svg { stroke: currentColor; flex-shrink: 0; }

/* Modal SEPETE EKLE — disabled state */
.menu-modal-add.is-disabled,
.menu-modal-add[disabled] {
    background: #888 !important;
    color: #FFF !important;
    border-color: #555 !important;
    box-shadow: 2px 2px 0 #555 !important;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.85;
}
.menu-modal-add.is-disabled:hover,
.menu-modal-add[disabled]:hover {
    transform: none;
}

