/* =========================================================
   UMAMİ RESTAURANT - PREMIUM MENÜ
   ========================================================= */

.menu-hero {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 155px 0 95px;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(
            90deg,
            rgba(8, 13, 10, .99),
            rgba(18, 46, 30, .88)
        ),
        url("../images/logo.jpg") center / cover no-repeat;
}

.menu-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 78% 28%,
            rgba(205, 169, 89, .18),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .08),
            rgba(0, 0, 0, .65)
        );
}

.menu-hero::after {
    content: "";
    position: absolute;
    top: -210px;
    right: -190px;
    width: 690px;
    height: 690px;
    border: 1px solid rgba(236, 212, 147, .12);
    border-radius: 50%;
    box-shadow:
        0 0 0 85px rgba(236, 212, 147, .025),
        0 0 0 170px rgba(236, 212, 147, .012);
}

.menu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
}

.menu-hero h1 {
    margin-top: 18px;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 9vw, 108px);
    font-weight: normal;
    line-height: .9;
}

.menu-hero h1 span {
    display: block;
    color: var(--gold-light);
    font-style: italic;
}

.menu-hero p {
    max-width: 720px;
    margin-top: 27px;
    color: #d0d1cc;
    font-size: 18px;
    line-height: 1.8;
}

.menu-hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.menu-hero-notes span {
    padding: 11px 16px;
    border: 1px solid rgba(236, 212, 147, .25);
    border-radius: 999px;
    color: #d3d1ca;
    background: rgba(11, 18, 14, .48);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

/* =========================================================
   MENÜ ARAÇ ÇUBUĞU
   ========================================================= */

.menu-toolbar-wrapper {
    position: sticky;
    top: 76px;
    z-index: 90;
    padding: 14px 0;
    border-bottom: 1px solid rgba(236, 212, 147, .10);
    background: rgba(12, 17, 14, .94);
    backdrop-filter: blur(18px);
}

.menu-toolbar {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-search {
    position: relative;
    flex: 1;
    min-width: 240px;
}

.menu-search input {
    width: 100%;
    height: 50px;
    padding: 0 48px 0 18px;
    border: 1px solid rgba(236, 212, 147, .20);
    border-radius: 14px;
    outline: none;
    color: var(--cream);
    background: rgba(27, 43, 34, .63);
    font-size: 14px;
    transition:
        border-color .25s,
        box-shadow .25s,
        background .25s;
}

.menu-search input::placeholder {
    color: #92958f;
}

.menu-search input:focus {
    border-color: rgba(236, 212, 147, .60);
    background: rgba(29, 48, 38, .86);
    box-shadow: 0 0 0 4px rgba(236, 212, 147, .07);
}

.menu-search-icon {
    position: absolute;
    top: 50%;
    right: 17px;
    color: var(--gold-light);
    font-size: 18px;
    transform: translateY(-50%);
    pointer-events: none;
}

.menu-categories {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.menu-categories::-webkit-scrollbar {
    display: none;
}

.menu-filter {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0 17px;
    border: 1px solid rgba(236, 212, 147, .20);
    border-radius: 999px;
    color: #c4c5c0;
    background: rgba(30, 68, 45, .16);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .4px;
    cursor: pointer;
    transition:
        color .25s,
        background .25s,
        border-color .25s,
        transform .25s;
    white-space: nowrap;
}

.menu-filter:hover,
.menu-filter.active {
    color: #151814;
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

/* =========================================================
   MENÜ İÇERİĞİ
   ========================================================= */

.menu-section {
    padding: 90px 0 120px;
    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(35, 90, 58, .15),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 55%,
            rgba(200, 165, 90, .05),
            transparent 26%
        ),
        var(--background);
}

.menu-intro {
    max-width: 790px;
    margin: 0 auto 75px;
    text-align: center;
}

.menu-intro h2 {
    margin: 13px 0 19px;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 6vw, 62px);
    font-weight: normal;
    line-height: 1.05;
}

.menu-intro p {
    color: var(--muted);
    font-size: 16px;
}

.menu-group {
    margin-bottom: 86px;
    scroll-margin-top: 175px;
}

.menu-group.hidden {
    display: none;
}

.menu-group-header {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.menu-group-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(236, 212, 147, .31);
    border-radius: 50%;
    color: var(--gold-light);
    background:
        linear-gradient(
            145deg,
            rgba(45, 101, 66, .38),
            rgba(18, 27, 22, .84)
        );
    font-size: 27px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .20);
}

.menu-group-title small {
    display: block;
    margin-bottom: 5px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.menu-group-title h2 {
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(31px, 4vw, 45px);
    font-weight: normal;
    line-height: 1;
}

.menu-group-line {
    height: 1px;
    background:
        linear-gradient(
            90deg,
            rgba(236, 212, 147, .40),
            rgba(236, 212, 147, .02)
        );
}

.menu-group-count {
    min-width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(236, 212, 147, .20);
    border-radius: 50%;
    color: var(--gold-light);
    background: rgba(25, 37, 30, .50);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.menu-item {
    position: relative;
    min-height: 166px;
    overflow: hidden;
    padding: 27px 27px 25px;
    border: 1px solid rgba(236, 212, 147, .14);
    border-radius: 21px;
    background:
        linear-gradient(
            145deg,
            rgba(31, 72, 48, .25),
            rgba(21, 27, 23, .97)
        );
    box-shadow: 0 15px 38px rgba(0, 0, 0, .15);
    transition:
        transform .30s,
        border-color .30s,
        box-shadow .30s;
}

.menu-item::after {
    content: "";
    position: absolute;
    right: -56px;
    bottom: -58px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(236, 212, 147, .07);
    border-radius: 50%;
}

.menu-item:hover {
    z-index: 2;
    transform: translateY(-5px);
    border-color: rgba(236, 212, 147, .41);
    box-shadow: 0 24px 52px rgba(0, 0, 0, .27);
}

.menu-item.hidden {
    display: none;
}

.menu-item-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
}

.menu-item-name {
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: normal;
    line-height: 1.17;
}

.menu-item-price {
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1;
    white-space: nowrap;
}

.menu-item-price span {
    margin-left: 2px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
}

.menu-item-description {
    position: relative;
    z-index: 1;
    max-width: 90%;
    margin-top: 13px;
    color: #aeb0aa;
    font-size: 13px;
    line-height: 1.65;
}

.menu-item-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 15px;
}

.menu-tag {
    padding: 6px 9px;
    border: 1px solid rgba(236, 212, 147, .16);
    border-radius: 999px;
    color: #aaa9a4;
    background: rgba(15, 21, 17, .40);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.menu-tag.featured {
    color: var(--gold-light);
    border-color: rgba(236, 212, 147, .34);
}

.menu-item-featured {
    border-color: rgba(236, 212, 147, .29);
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(200, 165, 90, .12),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(40, 92, 61, .36),
            rgba(21, 27, 23, .98)
        );
}

.menu-variants {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-top: 17px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.menu-variant {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #b8bab4;
    font-size: 13px;
}

.menu-variant strong {
    color: var(--gold-light);
    font-size: 14px;
}

/* =========================================================
   BİLGİ KUTUSU
   ========================================================= */

.menu-note {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    padding: 45px;
    border: 1px solid rgba(236, 212, 147, .21);
    border-radius: 25px;
    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(55, 125, 82, .26),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            rgba(28, 70, 47, .67),
            rgba(17, 23, 19, .98)
        );
}

.menu-note::after {
    content: "UMAMİ";
    position: absolute;
    right: -8px;
    bottom: -28px;
    color: rgba(236, 212, 147, .045);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 120px;
    font-weight: bold;
    line-height: 1;
}

.menu-note-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.menu-note h2 {
    margin: 11px 0 15px;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: normal;
}

.menu-note p {
    color: #c2c3be;
}

.menu-note-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

/* NO RESULTS */

.menu-no-results {
    display: none;
    padding: 70px 25px;
    border: 1px solid rgba(236, 212, 147, .15);
    border-radius: 22px;
    text-align: center;
    background: rgba(20, 27, 23, .72);
}

.menu-no-results.show {
    display: block;
}

.menu-no-results strong {
    display: block;
    margin-bottom: 9px;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: normal;
}

.menu-no-results span {
    color: var(--muted);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {
    .menu-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .menu-categories {
        width: 100%;
    }

    .menu-search {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .menu-hero {
        min-height: 520px;
        padding: 132px 0 74px;
        text-align: center;
    }

    .menu-hero h1 {
        font-size: 61px;
    }

    .menu-hero-notes {
        justify-content: center;
    }

    .menu-toolbar-wrapper {
        top: 68px;
    }

    .menu-section {
        padding: 72px 0 90px;
    }

    .menu-intro {
        margin-bottom: 58px;
    }

    .menu-group {
        margin-bottom: 66px;
        scroll-margin-top: 225px;
    }

    .menu-group-header {
        grid-template-columns: auto 1fr;
        gap: 15px;
    }

    .menu-group-line {
        display: none;
    }

    .menu-group-count {
        display: none;
    }

    .menu-group-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .menu-group-title h2 {
        font-size: 31px;
    }

    .menu-item {
        min-height: 0;
        padding: 23px 20px;
    }

    .menu-item-name {
        font-size: 21px;
    }

    .menu-item-price {
        font-size: 22px;
    }

    .menu-item-description {
        max-width: 100%;
    }

    .menu-note {
        padding: 38px 22px;
        text-align: center;
    }

    .menu-note-actions .button {
        width: 100%;
    }
}
.menu-item.has-image{display:grid;grid-template-columns:145px 1fr;gap:22px;padding:18px}.menu-item-image{width:145px;height:145px;object-fit:cover;border-radius:15px;border:1px solid rgba(236,212,147,.18)}.menu-item-body{min-width:0}@media(max-width:560px){.menu-item.has-image{grid-template-columns:1fr}.menu-item-image{width:100%;height:220px}}
