/* =========================================================
   MÜŞTERİ MENÜSÜ — Antrasit zemin, altın sarısı başlıklar
   ========================================================= */

:root {
    /* Antrasit tonları */
    --bg:           #121316;                    /* siyaha yakın antrasit */
    --bg-2:         #1a1c20;
    --surface:      #1f2126;
    --surface-2:    #2a2d33;
    --border:       rgba(255, 196, 0, 0.28);    /* sarı tonlu kenarlık */
    /* Parlak sarı — kağıt menüdeki ton */
    --gold:         #ffc400;
    --gold-soft:    #ffdb4d;
    --gold-dim:     rgba(255, 196, 0, 0.18);
    --text:         #ffffff;
    --text-muted:   #d9d6cc;
    --serif:        'Unbounded', 'Segoe UI', system-ui, sans-serif;   /* başlık */
    --sans:         'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif; /* metin */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* hidden özniteliği her zaman kazanır (display:flex/grid/inline-block kurallarını ezer) */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

body {
    background:
        radial-gradient(1100px 560px at 50% -8%, rgba(255, 196, 0, 0.22) 0%, transparent 60%),
        radial-gradient(900px 500px at 100% 100%, rgba(242, 120, 30, 0.12) 0%, transparent 60%),
        radial-gradient(700px 400px at 0% 70%, rgba(255, 196, 0, 0.09) 0%, transparent 60%),
        var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.menu { flex: 1; width: 100%; }

/* ---------- Logo ---------- */
.logo { display: inline-block; line-height: 0; }
.logo svg, .logo img { display: block; width: 100%; height: auto; }
.logo--hero { width: min(560px, 86vw); margin: 0 auto; filter: drop-shadow(0 10px 30px rgba(255, 196, 0, 0.22)); }
.logo--nav  { width: 150px; }
.hero__logo { margin-bottom: 1.2rem; }
.visually-hidden {
    position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Duyuru şeridi ---------- */
.announce {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.55rem 1rem;
    background: linear-gradient(90deg, var(--gold-soft), var(--gold));
    color: #1d1a10;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

/* ---------- Arama & dil ---------- */
.nav-search form { display: flex; align-items: center; background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 0.15rem 0.3rem 0.15rem 0.9rem; }
.nav-search input {
    background: none; border: 0; color: var(--text); font-family: var(--sans); font-size: 0.85rem; width: 150px; outline: none;
}
.nav-search input::placeholder { color: var(--text-muted); }
.nav-search button { background: none; border: 0; color: var(--gold); font-size: 1.1rem; cursor: pointer; padding: 0.2rem 0.5rem; }
.nav-lang { display: flex; align-items: center; gap: 0.35rem; color: var(--text-muted); font-size: 0.8rem; }
.nav-lang a { padding: 0.3rem 0.1rem; letter-spacing: 0.1em; }

/* ---------- Etiketler & tükendi ---------- */
.card__tags { position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.card { position: relative; }
.tag {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.25rem 0.6rem; border-radius: 999px; backdrop-filter: blur(6px);
    background: rgba(35, 37, 39, 0.75); color: var(--gold-soft); border: 1px solid rgba(255, 196, 0, 0.4);
}
.tag--yeni { background: rgba(255, 196, 0, 0.9); color: #1d1a10; border-color: transparent; }
.tag--sef { background: rgba(35, 37, 39, 0.85); }
.tag--aci { color: #ff8a65; border-color: rgba(255, 138, 101, 0.5); }
.tag--vejetaryen { color: #9be58a; border-color: rgba(155, 229, 138, 0.5); }
.tag--soldout { background: rgba(120, 50, 45, 0.9); color: #ffd9d4; border-color: transparent; }
.card.is-soldout .card__media img { filter: grayscale(0.7) brightness(0.7); }
.card.is-soldout .card__name, .card.is-soldout .card__desc { opacity: 0.6; }
.card.is-soldout .card__price { background: var(--surface-2); color: var(--text-muted); box-shadow: none; }

/* ---------- Tıklanabilir kart & detay modalı ---------- */
.card--clickable { cursor: pointer; }
.card--clickable:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.card__more {
    display: inline-block; margin-top: 0.9rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--gold); opacity: 0.75; transition: opacity 0.2s, transform 0.2s;
}
.card:hover .card__more { opacity: 1; transform: translateX(3px); }
body.modal-open { overflow: hidden; }
.modal { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 1rem; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(10, 10, 12, 0.78); backdrop-filter: blur(6px); }
.modal__box {
    position: relative; width: min(760px, 100%); max-height: min(92vh, 900px); overflow: auto;
    background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid rgba(255, 196, 0, 0.35);
    border-radius: 18px; box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(0,0,0,0.3);
    animation: modalIn 0.22s ease-out;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__close {
    position: absolute; top: 0.8rem; right: 0.8rem; z-index: 3; width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15); background: rgba(20, 20, 22, 0.7); color: var(--text); font-size: 1rem; cursor: pointer;
    backdrop-filter: blur(6px);
}
.modal__close:hover { border-color: var(--gold); color: var(--gold-soft); }
.modal__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg); }
.modal__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal__media.is-placeholder img { opacity: 0.45; filter: blur(1.5px); }
.modal__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(47, 49, 52, 0.95) 100%); pointer-events: none; }
.modal__body { padding: 1.4rem 1.8rem 1.9rem; display: flex; flex-direction: column; gap: 0.6rem; }
.modal__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.modal__tags:empty { display: none; }
.modal__cat { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.modal__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.modal__name { font-family: var(--serif); font-weight: 700; font-size: clamp(1.2rem, 3vw, 1.6rem); color: var(--gold-soft); line-height: 1.25; outline: none; }
.modal__desc { color: var(--text); font-size: 1rem; line-height: 1.65; }
.modal__section { margin-top: 0.6rem; padding-top: 0.9rem; border-top: 1px solid var(--border); }
.modal__section h3 { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.6rem; }
.modal__ingredients { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.modal__ingredients li { background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 0.3rem 0.75rem; font-size: 0.85rem; }
@media (max-width: 600px) {
    .modal { padding: 0; align-items: end; }
    .modal__box { max-height: 94vh; border-radius: 18px 18px 0 0; animation-name: modalUp; }
    @keyframes modalUp { from { transform: translateY(40px); opacity: 0; } to { transform: none; opacity: 1; } }
    .modal__body { padding: 1.1rem 1.2rem 1.6rem; }
}

/* ---------- Sonsuz kaydırma: ek kategori bölümleri ---------- */
.cat-section--more { margin-top: 4rem; padding-top: 3rem; position: relative; }
.cat-section--more::before {                       /* hero'daki gibi ince sarı ayraç */
    content: ""; position: absolute; top: 0; left: 50%; width: 160px; height: 3px; transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cat-section__head { text-align: center; margin-bottom: 2rem; }
.cat-section__title {
    font-family: var(--serif); font-weight: 800; letter-spacing: -0.01em;
    font-size: clamp(1.5rem, 4vw, 2.5rem); line-height: 1.1;
    color: var(--gold);
    text-shadow: 0 4px 22px rgba(255, 196, 0, 0.35);
}
.cat-section__count { display: block; margin-top: 0.5rem; color: var(--text-muted); font-size: 0.95rem; letter-spacing: 0.04em; }

.load-more { margin-top: 3.5rem; text-align: center; min-height: 64px; }
.load-more__link {
    display: inline-flex; flex-direction: column; gap: 0.25rem; text-decoration: none; padding: 1.1rem 2rem;
    border: 1px solid var(--border); border-top: 2px solid rgba(255, 196, 0, 0.55); border-radius: 14px;
    background: linear-gradient(180deg, var(--surface), var(--surface-2)); transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.load-more__link:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 18px 40px -20px rgba(255, 196, 0, 0.5); }
.load-more__label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.load-more__name { font-family: var(--serif); font-weight: 700; color: var(--gold); font-size: 1.05rem; }
.load-more.is-loading .load-more__link { opacity: 0.5; pointer-events: none; }
.load-more.is-loading::after {
    content: ""; display: block; width: 28px; height: 28px; margin: 0.8rem auto 0; border-radius: 50%;
    border: 3px solid var(--border); border-top-color: var(--gold); animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Menünün sonu bloğu */
.load-more__end { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; padding-top: 2.2rem; position: relative; }
.load-more__end::before {
    content: ""; position: absolute; top: 0; left: 50%; width: 160px; height: 3px; transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.load-more__end-mark { color: var(--gold); font-size: 1.4rem; line-height: 1; }
.load-more__end-title { font-family: var(--serif); font-weight: 700; color: var(--gold); font-size: 1.1rem; letter-spacing: 0.02em; }
.load-more__end-sub { color: var(--text-muted); font-size: 0.9rem; }
.load-more__end-btn {
    display: inline-block; margin-top: 0.3rem; text-decoration: none; font-family: var(--serif); font-weight: 700; font-size: 0.85rem;
    color: #1d1a10; background: linear-gradient(135deg, var(--gold-soft), var(--gold)); padding: 0.7rem 1.5rem; border-radius: 999px;
    box-shadow: 0 10px 24px -12px rgba(255, 196, 0, 0.8); transition: transform 0.2s, filter 0.2s;
}
.load-more__end-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }

/* ---------- Alerjen filtresi ---------- */
.filter { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-bottom: 1.6rem; }
.filter__label { color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; margin-right: 0.3rem; }
.filter__chip, .filter__clear {
    background: var(--surface-2); border: 1px solid var(--border); color: var(--text); font-family: var(--sans);
    font-size: 0.82rem; padding: 0.4rem 0.8rem; border-radius: 999px; cursor: pointer; transition: all 0.15s;
}
.filter__chip[aria-pressed="true"] { background: rgba(120, 50, 45, 0.6); border-color: #d0574f; color: #ffd9d4; text-decoration: line-through; }
.filter__clear { color: var(--gold-soft); border-color: rgba(255, 196, 0, 0.5); }

/* ---------- Navigasyon ---------- */
.menu-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(18, 19, 22, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
}
.nav-brand { flex: 0 0 auto; padding: 0.55rem 0; text-decoration: none; }
.menu-nav ul { flex: 1; justify-content: flex-end; padding-left: 0; padding-right: 0; flex-wrap: nowrap; align-items: center; }

/* Tüm Kategoriler açılır menüsü */
.nav-dd { position: relative; }
.nav-dd__btn {
    background: none;
    border: 0;
    border-bottom: 1px solid transparent;
    color: var(--text-muted);
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.3rem 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s, border-color 0.2s;
}
.nav-dd__btn:hover, .nav-dd__btn.is-active, .nav-dd.is-open .nav-dd__btn { color: var(--gold-soft); border-color: var(--gold); }
.nav-dd__caret { font-size: 0.8rem; transition: transform 0.2s; }
.nav-dd.is-open .nav-dd__caret { transform: rotate(180deg); }
.nav-dd__panel {
    position: absolute;
    right: 0;
    top: calc(100% + 0.9rem);
    min-width: 240px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
    display: grid;
    gap: 0.15rem;
    z-index: 20;
}
.nav-dd__panel a {
    display: block;
    padding: 0.65rem 0.9rem;
    border-radius: 8px;
    border-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}
.nav-dd__panel a:hover { background: var(--surface-2); color: var(--gold-soft); }
.nav-dd__panel a.is-active { background: var(--gold-dim); color: var(--gold-soft); }
.menu-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.6rem;
    padding: 1rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.menu-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.14em; font-weight: 600;
    text-transform: uppercase;
    padding: 0.3rem 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.menu-nav a:hover, .menu-nav a.is-active {
    color: var(--gold-soft);
    border-color: var(--gold);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    z-index: 1;
    padding: 5rem 1.5rem 3.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 196, 0, 0.25);
    background:
        radial-gradient(600px 260px at 50% 100%, rgba(255, 196, 0, 0.16), transparent 70%),
        linear-gradient(180deg, rgba(255, 196, 0, 0.08), transparent 70%);
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 160px;
    height: 3px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero--compact { padding: 3rem 1.5rem 2.5rem; }
.hero__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.hero__title {
    font-family: var(--serif);
    font-weight: 800;
    font-size: clamp(1.9rem, 5vw, 3.3rem);
    letter-spacing: -0.01em;
    background: linear-gradient(180deg, #ffe066 0%, #ffc400 55%, #f5a300 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    line-height: 1.1;
    filter: drop-shadow(0 4px 22px rgba(255, 196, 0, 0.45));
}
.hero--compact .hero__title { font-size: clamp(1.5rem, 4vw, 2.5rem); }
.hero__subtitle {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    letter-spacing: 0.04em;
}
.back-link {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    transition: color 0.2s;
}
.back-link:hover { color: var(--gold-soft); }

/* ---------- Genel içerik alanı ---------- */
.menu {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 5rem;
}
.empty-state { text-align: center; color: var(--text-muted); padding: 3rem 0; }

/* ---------- Kategori kartları (ana sayfa) ---------- */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.cat-tile {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 200px;
    padding: 1.6rem;
    background:
        radial-gradient(320px 180px at 100% 110%, rgba(255, 196, 0, 0.22), transparent 70%),
        linear-gradient(135deg, #3a3c40, #2b2d30);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.cat-tile.pos-left {
    background:
        radial-gradient(320px 180px at 0% 110%, rgba(255, 196, 0, 0.22), transparent 70%),
        linear-gradient(135deg, #3a3c40, #2b2d30);
}
.cat-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 196, 0, 0.7);
    box-shadow: 0 22px 44px -18px rgba(255, 196, 0, 0.5);
}
.cat-tile__img {
    position: absolute;
    bottom: -8%;
    width: 62%;
    max-height: 90%;
    object-fit: contain;
    object-position: bottom;
    opacity: 0.85;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.cat-tile.pos-right .cat-tile__img { right: -6%; object-position: bottom right; }
.cat-tile.pos-left  .cat-tile__img { left: -6%;  object-position: bottom left; }
.cat-tile:hover .cat-tile__img { transform: scale(1.05); opacity: 1; }
.cat-tile.has-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(47,49,52,0) 30%, rgba(47,49,52,0.85) 100%);
    pointer-events: none;
}
.cat-tile__body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.cat-tile__name {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    letter-spacing: 0;
    line-height: 1.15;
}
.cat-tile__count { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.cat-tile__arrow {
    position: absolute;
    top: 1.1rem;
    right: 1.3rem;
    z-index: 1;
    color: var(--gold);
    font-size: 1.4rem;
    transition: transform 0.25s;
}
.cat-tile:hover .cat-tile__arrow { transform: translateX(4px); }

/* ---------- Kategori sayfası: tam genişlik + köşe görseli ---------- */
.menu--category {
    position: relative;
    max-width: none;
    padding: 0;
    overflow: hidden;
    min-height: 68vh;
}
.menu__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 7rem;
}
.cat-bg {
    position: absolute;
    bottom: 0;
    z-index: 0;
    width: min(46vw, 600px);
    pointer-events: none;
}
.cat-bg--right { right: 0; }
.cat-bg--left  { left: 0; }
.cat-bg img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    object-position: bottom;
    opacity: 0.7;
    filter: saturate(1.15);
    /* İçeriğin okunur kalması için yukarı ve içe doğru solma */
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 45%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 45%);
}
.cat-bg--right img { object-position: bottom right; }
.cat-bg--left  img { object-position: bottom left; }

/* ---------- Ürün kartları ---------- */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.card {
    background: linear-gradient(180deg, rgba(31, 33, 38, 0.97), rgba(42, 45, 51, 0.97));
    border: 1px solid var(--border);
    border-top: 2px solid rgba(255, 196, 0, 0.55);   /* ince sarı üst çizgi */
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 196, 0, 0.55);
    box-shadow: 0 18px 40px -20px rgba(255, 196, 0, 0.35);
}
.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-bottom: 1px solid var(--border); }
.card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; filter: saturate(1.2) contrast(1.06); }
.card:hover .card__media img { transform: scale(1.06); }
.card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(18, 19, 22, 0.7) 100%);
    pointer-events: none;
}
/* Görseli olmayan ürün: kategori görselinden yer tutucu */
.card__media--placeholder {
    background:
        radial-gradient(360px 200px at 50% 120%, rgba(255, 196, 0, 0.28), transparent 70%),
        linear-gradient(135deg, #3a3c40, #2b2d30);
    display: grid;
    place-items: center;
    color: rgba(255, 196, 0, 0.8);
}
.card__media--placeholder img {
    position: absolute;
    right: -8%;
    bottom: -12%;
    width: 62%;
    height: auto;
    object-fit: contain;
    opacity: 0.55;
    filter: saturate(1.1);
}
.card__media--placeholder::after { background: linear-gradient(180deg, transparent 40%, rgba(35, 37, 39, 0.6) 100%); }
.card__media-label {
    position: absolute;
    left: 1rem;
    bottom: 0.8rem;
    z-index: 1;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}
.card__media--empty svg { position: relative; z-index: 1; margin-bottom: 1rem; opacity: 0.9; }

/* ---------- Fotoğraf (JPG) kategori görselleri için yumuşak mod ---------- */
/* Kart yer tutucusu: fotoğrafı tam kaplayan, bulanık ve karartılmış arka plan */
.card__media--placeholder.is-photo img {
    position: absolute;
    inset: 0;
    right: auto; bottom: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: blur(1.2px) saturate(1.25);
    transform: scale(1.04);
}
.card__media--placeholder.is-photo::after {
    background: linear-gradient(180deg, rgba(35, 37, 39, 0.15) 0%, rgba(35, 37, 39, 0.8) 100%);
}
/* Ana sayfa kategori kartı: fotoğraf tüm kartı kaplar, üstüne koyu geçiş */
.cat-tile.is-photo .cat-tile__img {
    inset: 0;
    right: 0; left: 0; bottom: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
    opacity: 0.88;
    filter: saturate(1.3) contrast(1.06);
}
.cat-tile.is-photo.has-image::after {
    background: linear-gradient(180deg, rgba(18, 19, 22, 0) 0%, rgba(18, 19, 22, 0.45) 50%, rgba(18, 19, 22, 0.95) 100%);
}
.cat-tile.is-photo:hover .cat-tile__img { opacity: 1; }
/* Kategori sayfası köşe görseli: dairesel solma ile zemine karışır */
.cat-bg.is-photo { width: min(56vw, 720px); }
.cat-bg.is-photo img {
    max-height: 60vh;
    object-fit: cover;
    opacity: 0.62;
    border-radius: 28px 0 0 0;
    -webkit-mask-image: radial-gradient(farthest-side at 100% 100%, #000 45%, transparent 100%);
            mask-image: radial-gradient(farthest-side at 100% 100%, #000 45%, transparent 100%);
}
.cat-bg--left.is-photo img {
    border-radius: 0 28px 0 0;
    -webkit-mask-image: radial-gradient(farthest-side at 0% 100%, #000 45%, transparent 100%);
            mask-image: radial-gradient(farthest-side at 0% 100%, #000 45%, transparent 100%);
}
.card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.6rem;
}
.card__name {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gold-soft);
    letter-spacing: 0;
    line-height: 1.3;
}
.card__price {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 0.85rem;
    color: #1d1a10;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 6px 16px -8px rgba(255, 196, 0, 0.7);
}
.card__price--none {
    background: var(--surface-2);
    color: var(--text-muted);
    border: 1px solid var(--border);
    box-shadow: none;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.78rem;
}
.card__kcal {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--gold);
    border: 1px solid rgba(255, 196, 0, 0.4);
    border-radius: 999px;
    padding: 0.15rem 0.6rem;
    margin-bottom: 0.9rem;
}
.card__desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; }
.card__allergens { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-soft);
    background: var(--gold-dim);
    border: 1px solid rgba(255, 196, 0, 0.4);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}
.badge__icon { font-size: 0.85rem; }

/* ---------- Footer ---------- */
.site-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 1.5rem 4rem;
    border-top: 1px solid var(--border);
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: 0.02em;
}
.site-footer__muted {
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: normal;
    max-width: 520px;
    margin: 0.8rem auto 0;
}

/* ---------- Mobil ---------- */
@media (max-width: 600px) {
    .menu-nav { gap: 0.8rem; padding: 0 1rem; }
    .logo--nav { width: 110px; }
    .menu-nav ul { gap: 0.8rem; padding: 0.6rem 0; }
    .menu-nav a, .nav-dd__btn { font-size: 0.72rem; letter-spacing: 0.08em; }
    .menu-nav ul { flex-wrap: wrap; justify-content: flex-end; }
    .nav-search { flex: 1 1 100%; order: 10; }
    .nav-search form { width: 100%; }
    .nav-search input { width: 100%; }
    .card__tags { top: 0.6rem; left: 0.6rem; }
    .nav-dd__panel { position: fixed; left: 0.8rem; right: 0.8rem; top: auto; min-width: 0; margin-top: 0.6rem; }
    .cards, .cat-grid { grid-template-columns: 1fr; }
    .hero { padding: 4rem 1.2rem 2.5rem; }
    .card__body { padding: 1.25rem; }
    .cat-tile { min-height: 160px; }
    .cat-bg { width: 78vw; }
    .cat-bg img { opacity: 0.35; }
}
