:root {
    --ink: #f7f1e7;
    --muted: #b9c5bf;
    --surface: #071710;
    --surface-2: #0d251b;
    --surface-3: #123126;
    --line: rgba(255,255,255,.12);
    --gold: var(--accent);
    --shadow: 0 28px 80px rgba(0,0,0,.32)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

html, body {
    margin: 0;
    min-height: 100%;
    font-family: var(--menu-font);
    background: #071710;
    color: var(--ink)
}

body {
    overflow-x: hidden;
    padding-bottom: 74px
}

button, a {
    font: inherit
}

.splash {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: radial-gradient(circle at center,rgba(201,162,39,.14),transparent 34%),#071710;
    transition: .6s
}

    .splash.is-hidden {
        opacity: 0;
        visibility: hidden
    }

    .splash img {
        width: min(44vw,210px);
        height: auto
    }

    .splash strong {
        font-family: Georgia,serif;
        font-size: 28px
    }

    .splash > span {
        width: 120px;
        height: 4px;
        overflow: hidden;
        background: rgba(255,255,255,.12);
        border-radius: 9px
    }

        .splash > span i {
            display: block;
            width: 100%;
            height: 100%;
            background: var(--accent);
            animation: load 1.4s ease forwards;
            transform: translateX(-100%)
        }

@keyframes load {
    to {
        transform: none
    }
}

.site-shell {
    min-height: 100vh;
    background: radial-gradient(circle at 10% 0%,rgba(35,98,72,.2),transparent 25%),#071710
}

.topbar {
    position: sticky;
    z-index: 80;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px,calc(100% - 28px));
    margin: auto;
    padding: 10px 0;
    background: rgba(7,23,16,.86);
    backdrop-filter: blur(18px)
}

.logo-button {
    width: 66px;
    height: 66px;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer
}

    .logo-button img {
        width: 100%;
        height: 100%;
        object-fit: contain
    }

.topbar__right {
    display: flex;
    align-items: center;
    gap: 10px
}

.open-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255,255,255,.045);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800
}

    .open-pill i {
        width: 9px;
        height: 9px;
        border-radius: 50%
    }

    .open-pill.is-open i {
        background: #2bd47c;
        box-shadow: 0 0 0 5px rgba(43,212,124,.12)
    }

    .open-pill.is-closed i {
        background: #ef6565
    }

.menu-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.045);
    border: 1px solid var(--line);
    border-radius: 14px
}

    .menu-button span {
        width: 19px;
        height: 2px;
        background: white
    }

.view {
    display: none;
    width: min(1180px,calc(100% - 28px));
    margin: auto;
    animation: fadeUp .45s ease
}

    .view.is-active {
        display: block
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.hero {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    min-height: 650px;
    margin-top: 8px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 32px;
    box-shadow: var(--shadow)
}

.hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px;
    background: linear-gradient(145deg,#0f3023,#0a2118)
}

.eyebrow {
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .23em
}

.hero h1 {
    margin: 20px 0 0;
    font-size: clamp(56px,6vw,90px);
    line-height: .91;
    letter-spacing: -.06em
}

    .hero h1 em {
        display: block;
        color: #ebcf87;
        font-family: Georgia,serif;
        font-weight: 500
    }

.hero__copy p {
    max-width: 460px;
    margin: 26px 0 0;
    color: #c7d0cb;
    line-height: 1.7
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: max-content;
    min-width: 280px;
    margin-top: 36px;
    padding: 18px 25px;
    color: #102017;
    background: linear-gradient(135deg,#f2d16d,var(--accent));
    border: 0;
    border-radius: 18px;
    font-weight: 950;
    cursor: pointer
}

.hero__media {
    position: relative;
    min-height: 650px;
    overflow: hidden
}

.hero-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .8s ease,transform 5s ease
}

    .hero-slide.is-active {
        opacity: 1;
        transform: scale(1)
    }

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .hero-slide > span {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,rgba(0,0,0,.02) 45%,rgba(0,0,0,.75))
    }

    .hero-slide figcaption {
        position: absolute;
        right: 30px;
        bottom: 32px;
        left: 30px
    }

        .hero-slide figcaption small {
            color: var(--accent);
            font-weight: 900;
            letter-spacing: .2em
        }

        .hero-slide figcaption strong {
            display: block;
            margin-top: 8px;
            font-size: clamp(34px,4vw,54px)
        }

.hero-dots {
    position: absolute;
    z-index: 3;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 7px
}

    .hero-dots b {
        width: 8px;
        height: 8px;
        background: rgba(255,255,255,.45);
        border-radius: 99px
    }

        .hero-dots b.is-active {
            width: 30px;
            background: var(--accent)
        }

.home-section {
    padding: 54px 0 0
}

.section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px
}

    .section-title h2, .page-head h2 {
        margin: 7px 0 0;
        font-size: clamp(38px,5vw,60px);
        line-height: 1
    }

    .section-title p, .page-head p {
        margin: 8px 0 0;
        color: var(--muted)
    }

    .section-title button {
        color: var(--accent);
        background: none;
        border: 0;
        font-weight: 800
    }

.favorites-rail {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none
}

    .favorites-rail::-webkit-scrollbar {
        display: none
    }

.favorite-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    overflow: hidden;
    background: linear-gradient(145deg,rgba(17,48,35,.96),rgba(8,28,20,.98));
    border: 1px solid var(--line);
    border-radius: 22px;
    cursor: pointer
}

.favorite-card__image {
    height: 250px;
    background: #0b1d15
}

    .favorite-card__image img {
        width: 100%;
        height: 100%;
        object-fit: contain
    }

    .favorite-card__image span {
        display: grid;
        place-items: center;
        width: 100%;
        height: 100%;
        font-size: 60px
    }

.favorite-card__content {
    padding: 17px
}

    .favorite-card__content h3 {
        margin: 0;
        font-size: 19px
    }

    .favorite-card__content strong {
        display: block;
        margin-top: 9px;
        color: var(--accent)
    }

.category-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px
}

.category-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    padding: 0;
    text-align: left;
    color: white;
    background: #10271e;
    border: 1px solid rgba(201,162,39,.28);
    border-radius: 25px;
    box-shadow: var(--shadow);
    cursor: pointer
}

    .category-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .7s
    }

    .category-card:hover img {
        transform: scale(1.05)
    }

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(1,9,6,.02) 18%,rgba(1,9,6,.86) 100%)
}

.category-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 24px
}

    .category-card__content small {
        color: #d6ded9
    }

    .category-card__content strong {
        margin-top: 6px;
        font-size: 28px
    }

    .category-card__content b {
        margin-top: 12px;
        color: var(--accent);
        font-size: 13px
    }

.page-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 22px;
    padding: 28px;
    background: linear-gradient(135deg,rgba(21,61,44,.76),rgba(8,29,21,.5));
    border: 1px solid var(--line);
    border-radius: 24px
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 16px;
    margin-top: 22px
}

.product-card {
    display: grid;
    grid-template-columns: 150px minmax(0,1fr);
    min-height: 160px;
    overflow: hidden;
    background: linear-gradient(145deg,rgba(18,48,36,.96),rgba(8,28,20,.98));
    border: 1px solid var(--line);
    border-radius: 23px;
    cursor: pointer
}

.product-card__image {
    height: 160px;
    background: #0b1d15
}

    .product-card__image img {
        width: 100%;
        height: 100%;
        object-fit: contain
    }

    .product-card__image span {
        display: grid;
        place-items: center;
        width: 100%;
        height: 100%;
        font-size: 48px
    }

.product-card__content {
    display: flex;
    flex-direction: column;
    padding: 20px
}

    .product-card__content h3 {
        margin: 0;
        font-size: 22px
    }

    .product-card__content p {
        display: -webkit-box;
        margin: 9px 0 0;
        overflow: hidden;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.5;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical
    }

    .product-card__content > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
        padding-top: 14px
    }

    .product-card__content strong {
        color: var(--accent);
        font-size: 19px
    }

    .product-card__content b {
        display: grid;
        place-items: center;
        width: 34px;
        height: 34px;
        color: #122017;
        background: var(--accent);
        border-radius: 12px;
        font-size: 21px
    }

.site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 74px 20px 44px;
    text-align: center
}

    .site-footer > span {
        color: var(--accent);
        font-size: 30px
    }

    .site-footer strong {
        margin-top: 8px;
        font-family: Georgia,serif;
        font-size: 32px;
        font-weight: 500
    }

    .site-footer p {
        margin: 8px 0 0;
        color: var(--muted);
        font-size: 12px
    }

    .site-footer a {
        margin-top: 18px;
        padding: 10px 15px;
        color: #f1e7c8;
        border: 1px solid var(--line);
        border-radius: 999px;
        text-decoration: none
    }

.bottom-nav {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(5,18,13,.95);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(18px)
}

    .bottom-nav button {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 90px;
        padding: 5px 12px;
        color: #92a49a;
        background: none;
        border: 0
    }

    .bottom-nav span {
        font-size: 21px
    }

    .bottom-nav b {
        margin-top: 2px;
        font-size: 10px
    }

    .bottom-nav .is-active {
        color: var(--accent)
    }

.product-modal {
    position: fixed;
    z-index: 3000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s
}

    .product-modal.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto
    }

.product-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1,8,5,.8);
    border: 0;
    backdrop-filter: blur(15px)
}

.product-modal__sheet {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    width: min(940px,100%);
    max-height: 90vh;
    overflow: hidden;
    background: #0b1d15;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 40px 120px rgba(0,0,0,.55)
}

.product-modal__close {
    position: absolute;
    z-index: 3;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: white;
    background: rgba(3,15,10,.76);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 28px
}

.product-modal__visual {
    min-height: 610px;
    background: #0b1813
}

    .product-modal__visual img {
        width: 100%;
        height: 100%;
        object-fit: contain
    }

    .product-modal__visual span {
        display: grid;
        place-items: center;
        width: 100%;
        height: 100%;
        font-size: 90px
    }

.product-modal__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px
}

    .product-modal__content h2 {
        margin: 18px 0 0;
        font-size: clamp(38px,5vw,58px);
        line-height: 1
    }

    .product-modal__content p {
        margin: 20px 0 0;
        color: var(--muted);
        line-height: 1.7
    }

    .product-modal__content strong {
        margin-top: 24px;
        color: var(--accent);
        font-size: 31px
    }

    .product-modal__content small {
        margin-top: 28px;
        padding-top: 20px;
        color: #c5cec9;
        border-top: 1px solid var(--line)
    }

.modal-open {
    overflow: hidden
}

@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr
    }

    .hero__copy {
        min-height: 480px
    }

    .hero__media {
        min-height: 500px
    }

    .category-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .product-grid {
        grid-template-columns: 1fr
    }

    .product-modal__sheet {
        grid-template-columns: 1fr 1fr
    }

    .product-modal__visual {
        min-height: 520px
    }
}

@media(max-width:620px) {
    body {
        padding-bottom: 68px
    }

    .topbar {
        width: calc(100% - 22px);
        padding: 8px 0
    }

    .logo-button {
        width: 58px;
        height: 58px
    }

    .open-pill {
        padding: 8px 10px;
        font-size: 10px
    }

    .view {
        width: calc(100% - 22px)
    }

    .hero {
        min-height: 0;
        margin-top: 4px;
        border-radius: 25px
    }

    .hero__copy {
        min-height: 420px;
        padding: 36px 24px
    }

    .hero h1 {
        font-size: clamp(47px,14vw,66px)
    }

    .hero__copy p {
        font-size: 13px
    }

    .primary-button {
        width: 100%;
        min-width: 0;
        margin-top: 28px
    }

    .hero__media {
        min-height: 390px
    }

    .hero-slide figcaption {
        right: 20px;
        bottom: 22px;
        left: 20px
    }

    .home-section {
        padding-top: 40px
    }

    .section-title {
        align-items: flex-end
    }

        .section-title h2, .page-head h2 {
            font-size: 38px
        }

        .section-title p {
            display: none
        }

    .favorites-rail {
        gap: 12px
    }

    .favorite-card {
        flex-basis: calc(100vw - 44px)
    }

    .favorite-card__image {
        height: 330px
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .category-card {
        min-height: 245px;
        border-radius: 21px
    }

    .category-card__content {
        padding: 20px
    }

        .category-card__content strong {
            font-size: 25px
        }

    .page-head {
        margin-top: 12px;
        padding: 20px 17px;
        border-radius: 20px
    }


    .product-card {
        grid-template-columns: 112px minmax(0,1fr);
        min-height: 128px
    }

    .product-card__image {
        height: 128px
    }

    .product-card__content {
        padding: 14px
    }

        .product-card__content h3 {
            font-size: 18px
        }

        .product-card__content p {
            font-size: 11px
        }

        .product-card__content strong {
            font-size: 16px
        }

    .site-footer {
        padding-top: 52px
    }

    .bottom-nav {
        justify-content: space-around;
        gap: 0
    }

        .bottom-nav button {
            min-width: 0;
            padding: 5px 10px
        }

    .product-modal {
        align-items: end;
        padding: 0
    }

    .product-modal__sheet {
        display: block;
        width: 100%;
        max-height: 96vh;
        overflow-y: auto;
        border-radius: 26px 26px 0 0
    }

    .product-modal__visual {
        height: 50vh;
        min-height: 360px
    }

    .product-modal__content {
        padding: 30px 23px calc(34px + env(safe-area-inset-bottom))
    }

        .product-modal__content h2 {
            font-size: 38px
        }
}


/* V2.1 - Menü ayrı sayfa akışı */
.menu-view {
    padding-top: 12px;
    min-height: calc(100vh - 160px)
}

.menu-page-head {
    margin-top: 8px
}

.menu-category-grid {
    margin-top: 22px;
    padding-bottom: 24px
}

#homeView .hero {
    margin-bottom: 34px
}

.view {
    animation: viewEnter .48s cubic-bezier(.22,.8,.2,1)
}

@keyframes viewEnter {
    from {
        opacity: 0;
        transform: translateX(34px) scale(.985)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width:620px) {
    .menu-view {
        padding-top: 4px
    }

    .menu-page-head {
        margin-top: 4px
    }

    .menu-category-grid {
        margin-top: 14px
    }

    #homeView .hero {
        margin-bottom: 18px
    }
}

/* V2.2 - Favori kartları ve tam genişlik üst bar düzeltmesi */
.topbar {
    isolation: isolate;
    background: transparent;
}

    .topbar::before {
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 100vw;
        content: "";
        transform: translateX(-50%);
        background: rgba(7,23,16,.92);
        border-bottom: 1px solid var(--line);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

.favorite-card {
    flex-basis: 210px;
    border-radius: 18px;
}

.favorite-card__image {
    height: 180px;
}

.favorite-card__content {
    padding: 13px 14px 14px;
}

    .favorite-card__content h3 {
        font-size: 16px;
    }

    .favorite-card__content strong {
        margin-top: 7px;
        font-size: 15px;
    }

@media(max-width:620px) {
    .favorites-rail {
        gap: 10px;
        padding-right: 18px;
    }

    .favorite-card {
        flex: 0 0 72vw;
        max-width: 270px;
        border-radius: 17px;
    }

    .favorite-card__image {
        height: 205px;
    }

    .favorite-card__content {
        padding: 12px 13px 13px;
    }

        .favorite-card__content h3 {
            font-size: 16px;
        }

        .favorite-card__content strong {
            font-size: 15px;
        }
}


/* V3 - Favoriler, tipografi ve temiz üst bar */
.topbar::before {
    display: none !important
}

.topbar {
    border-bottom: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.favorites-section {
    padding-top: 48px
}

.favorites-title {
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 18px
}

    .favorites-title h2 {
        margin: 0;
        color: #f5f1e7;
        font-size: clamp(30px,3.4vw,44px);
        font-weight: 650;
        line-height: 1.08;
        letter-spacing: -.035em;
    }

    .favorites-title p {
        display: block !important;
        margin: 7px 0 0;
        color: rgba(214,224,218,.68);
        font-size: 13px;
        font-weight: 450;
        line-height: 1.45;
        letter-spacing: 0;
    }

    .favorites-title button {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 8px 0;
        color: rgba(241,207,103,.88);
        font-size: 12px;
        font-weight: 650;
        letter-spacing: .01em;
    }

        .favorites-title button span {
            font-size: 15px;
            transition: transform .2s ease
        }

        .favorites-title button:hover span {
            transform: translateX(3px)
        }

.favorites-rail {
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    gap: 14px;
    overflow: visible;
    scroll-snap-type: none;
}

.favorite-card {
    min-width: 0;
    max-width: none;
    border: 1px solid rgba(255,255,255,.085);
    border-radius: 19px;
    background: linear-gradient(155deg,rgba(19,50,37,.9),rgba(8,28,20,.94));
    box-shadow: 0 16px 38px rgba(0,0,0,.16);
    transition: transform .24s ease,border-color .24s ease,box-shadow .24s ease;
}

    .favorite-card:hover {
        transform: translateY(-3px);
        border-color: rgba(201,162,39,.28);
        box-shadow: 0 20px 46px rgba(0,0,0,.22);
    }

.favorite-card__image {
    height: auto;
    aspect-ratio: 4/3;
    padding: 5px;
    background: rgba(7,22,16,.76);
}

    .favorite-card__image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 14px 14px 8px 8px;
    }

.favorite-card__content {
    padding: 14px 15px 16px
}

    .favorite-card__content h3 {
        margin: 0;
        overflow: hidden;
        color: #f5f1e7;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.25;
        letter-spacing: -.015em;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .favorite-card__content strong {
        display: block;
        margin-top: 8px;
        color: var(--accent);
        font-size: 15px;
        font-weight: 700;
        letter-spacing: -.01em;
    }

/* Genel tipografi temizliği */
.eyebrow {
    font-size: 10px;
    letter-spacing: .18em;
    font-weight: 750
}

.hero__copy p, .page-head p, .product-card__content p {
    color: rgba(198,211,204,.72)
}

.page-head h2 {
    font-weight: 650;
    letter-spacing: -.04em
}

.product-card__content h3 {
    font-weight: 600;
    letter-spacing: -.02em
}

.category-card__content strong {
    font-weight: 650;
    letter-spacing: -.025em
}

@media(max-width:1050px) and (min-width:621px) {
    .favorites-rail {
        grid-template-columns: repeat(3,minmax(0,1fr))
    }

    .favorite-card:nth-child(n+4) {
        display: none
    }
}

@media(max-width:620px) {
    .favorites-section {
        padding-top: 36px
    }

    .favorites-title {
        align-items: flex-end;
        gap: 14px;
        margin-bottom: 14px
    }

        .favorites-title h2 {
            font-size: 29px;
            line-height: 1.08
        }

        .favorites-title p {
            margin-top: 5px;
            font-size: 12px
        }

        .favorites-title button {
            flex: 0 0 auto;
            padding: 6px 0;
            font-size: 11px
        }

    .favorites-rail {
        display: flex;
        gap: 0;
        width: 100%;
        padding: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
    }

    .favorite-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: none;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        border-radius: 20px;
    }

    .favorite-card__image {
        aspect-ratio: 16/10;
        height: auto;
        padding: 6px;
    }

    .favorite-card__content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 16px 16px;
    }

        .favorite-card__content h3 {
            font-size: 17px
        }

        .favorite-card__content strong {
            margin: 0;
            flex: 0 0 auto;
            font-size: 16px
        }
}

@media(max-width:370px) {
    .favorites-title {
        align-items: flex-start;
        flex-direction: column
    }

        .favorites-title button {
            padding-top: 0
        }
}

/* V3.2 - Mobil ana sayfa dengeleme */
.favorites-title {
    position: relative;
    margin-bottom: 16px;
    padding-left: 18px;
}

    .favorites-title::before {
        position: absolute;
        top: 50%;
        left: 0;
        width: 3px;
        height: 26px;
        content: "";
        transform: translateY(-50%);
        background: var(--accent);
        border-radius: 99px;
    }

    .favorites-title h2 {
        font-size: 22px;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: -.025em;
    }

.favorite-card__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

    .favorite-card__content strong {
        margin-top: 0;
        flex: 0 0 auto
    }

/* Masaüstünde beş ürün de eksiksiz yan yana */
@media(min-width:1051px) {
    .favorites-rail {
        grid-template-columns: repeat(5,minmax(0,1fr))
    }
}

@media(max-width:620px) {
    /* Hero ekranı yutmasın; aşağıdaki içerik ilk bakışta görünsün */
    #homeView .hero {
        min-height: 0;
        margin-bottom: 0;
        border-radius: 22px;
    }

    #homeView .hero__copy {
        display: none
    }

    #homeView .hero__media {
        min-height: 0;
        height: 38svh;
        max-height: 325px;
    }

    .hero-slide figcaption {
        right: 18px;
        bottom: 18px;
        left: 18px
    }

        .hero-slide figcaption small {
            font-size: 9px;
            letter-spacing: .18em
        }

        .hero-slide figcaption strong {
            max-width: 92%;
            margin-top: 5px;
            font-size: clamp(27px,8.5vw,36px);
            line-height: 1.03;
            letter-spacing: -.035em;
        }

    .hero-dots {
        top: 16px;
        right: 16px
    }

    .favorites-section {
        padding-top: 27px
    }

    .favorites-title {
        display: block;
        margin-bottom: 12px;
        padding-left: 13px;
    }

        .favorites-title::before {
            width: 2px;
            height: 20px
        }

        .favorites-title h2 {
            font-size: 20px;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -.02em;
        }

    /* Mobilde tek kart tam görünür, yarım kart yok */
    .favorites-rail {
        gap: 0;
        padding: 0;
        scroll-padding: 0;
    }

    .favorite-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        border-radius: 18px;
        box-shadow: none;
    }

    .favorite-card__image {
        height: 255px;
        aspect-ratio: auto;
        padding: 0;
        background: #0b1d15;
    }

        .favorite-card__image img {
            width: 100%;
            height: 100%;
            padding: 0;
            object-fit: contain;
            border-radius: 17px 17px 0 0;
        }

    .favorite-card__content {
        min-height: 54px;
        padding: 13px 15px;
        border-top: 1px solid rgba(255,255,255,.07);
    }

        .favorite-card__content h3 {
            font-size: 16px;
            font-weight: 600;
        }

        .favorite-card__content strong {
            font-size: 15px;
            font-weight: 700;
        }

    /* Daha temiz ve daha az yer kaplayan alt menü */
    body {
        padding-bottom: 58px
    }

    .bottom-nav {
        min-height: 56px;
        padding: 7px 12px calc(7px + env(safe-area-inset-bottom))
    }

        .bottom-nav button {
            justify-content: center;
            padding: 4px 14px
        }

        .bottom-nav span {
            font-size: 23px;
            line-height: 1
        }

        .bottom-nav b {
            display: none
        }
}

/* V3.3 - Mobil hero ve favori kartı düzeltmesi */
@media(max-width:620px) {
    /* Hero görseli kendi yatay oranında kalsın; üzerindeki bütün yazılar görünsün */
    #homeView .hero__media {
        width: 100%;
        height: auto;
        max-height: none;
        aspect-ratio: 3/2;
        background: #0b1d15;
    }

    #homeView .hero-slide img {
        object-fit: cover;
        object-position: center;
    }

    /* Favori kartı telefonda ekranı doldurmasın; tek ve ortalı kart görünsün */
    .favorites-rail {
        gap: 48px;
        padding-inline: 24px;
        scroll-padding-inline: 24px;
    }

    .favorite-card {
        flex: 0 0 calc(100% - 48px);
        width: calc(100% - 48px);
        min-width: calc(100% - 48px);
        scroll-snap-align: center;
        border-radius: 17px;
    }

    .favorite-card__image {
        height: 190px;
    }

        .favorite-card__image img {
            border-radius: 16px 16px 0 0;
        }

    .favorite-card__content {
        min-height: 48px;
        padding: 11px 13px;
    }

        .favorite-card__content h3 {
            font-size: 15px
        }

        .favorite-card__content strong {
            font-size: 14px
        }
}

@media(max-width:390px) {
    #homeView .hero__media {
        aspect-ratio: 3/2
    }

    .favorites-rail {
        gap: 36px;
        padding-inline: 18px;
        scroll-padding-inline: 18px;
    }

    .favorite-card {
        flex-basis: calc(100% - 36px);
        width: calc(100% - 36px);
        min-width: calc(100% - 36px);
    }

    .favorite-card__image {
        height: 176px
    }
}

/* V3.4 - Tek hero banner ve mobil keşfet alanı */
.hero__media--single {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #0b1d15;
}

.hero-banner {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media(max-width:900px) {
    #homeView .hero__copy {
        display: flex;
    }
}

@media(max-width:620px) {
    #homeView .hero {
        display: grid;
        grid-template-columns: 1fr;
    }

    #homeView .hero__copy {
        display: flex;
        min-height: 0;
        padding: 28px 22px 24px;
        order: 2;
    }

        #homeView .hero__copy .eyebrow {
            font-size: 9px;
        }

    #homeView .hero h1 {
        margin-top: 12px;
        font-size: clamp(35px,10.5vw,47px);
        line-height: .94;
    }

    #homeView .hero__copy p {
        margin-top: 17px;
        font-size: 12px;
        line-height: 1.55;
    }

    #homeView .primary-button {
        display: inline-flex;
        width: 100%;
        margin-top: 20px;
        padding: 15px 20px;
    }

    #homeView .hero__media--single {
        order: 1;
        width: 100%;
        min-height: 0;
        height: auto;
        aspect-ratio: 16/10;
    }

    #homeView .hero-banner {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* V3.5 - Kullanıcı isteği: üst çizgi geri geldi, mobil favoride yalnızca 1 tam kart */
.topbar {
    isolation: isolate;
    background: transparent !important;
}

    .topbar::before {
        display: block !important;
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 100vw;
        content: "";
        transform: translateX(-50%);
        background: rgba(7,23,16,.92);
        border-bottom: 1px solid var(--line);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

@media(max-width:620px) {
    .favorites-section {
        overflow: hidden;
    }

    .favorites-rail {
        width: 100%;
        gap: 16px;
        padding: 0 !important;
        scroll-padding: 0 !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .favorite-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
}


/* V3.6 - Açılış ekranı ve alt menü temizliği */
body {
    padding-bottom: 0 !important
}

    body.is-loading {
        overflow: hidden
    }

        body.is-loading .site-shell {
            visibility: hidden;
            opacity: 0
        }

.site-shell {
    transition: opacity .28s ease
}

.splash {
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    overflow: hidden !important;
    opacity: 1;
    background: radial-gradient(circle at center,rgba(201,162,39,.14),transparent 34%),#071710 !important;
}

    .splash.is-hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none
    }

.bottom-nav {
    display: none !important
}

@media(max-width:620px) {
    body {
        padding-bottom: 0 !important
    }
}

/* V3.7 - Yalnızca kategori/ürün üst başlık alanı ve geri oku ince ayarı */
.page-head {
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    padding: 20px 22px;
    min-height: 0;
    border-radius: 20px;
}

    .page-head > div {
        min-width: 0;
    }

    .page-head .eyebrow {
        font-size: 9px;
        letter-spacing: .20em;
    }

    .page-head h2 {
        margin: 5px 0 0;
        font-size: clamp(36px,4vw,48px);
        line-height: .98;
        letter-spacing: -.045em;
    }

    .page-head p {
        margin: 7px 0 0;
        font-size: 14px;
        line-height: 1.35;
    }

@media(max-width:620px) {
    .page-head {
        align-items: center;
        gap: 12px;
        margin-top: 10px;
        padding: 15px 14px;
        border-radius: 17px;
    }

        .page-head .eyebrow {
            font-size: 8px;
            letter-spacing: .18em;
        }

        .page-head h2 {
            margin-top: 4px;
            font-size: 30px;
            line-height: 1;
        }

        .page-head p {
            margin-top: 5px;
            font-size: 12px;
        }
}

.back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    padding: 0;
    color: white;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line);
    border-radius: 15px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.back-button__icon {
    display: block;
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    fill: none !important;
    stroke: currentColor !important;
    transform: translateY(-1px);
}

    .back-button__icon polyline {
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 2.4;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* V3.8 - Müşteri açık/koyu tema seçimi */
html,
body,
.site-shell,
.topbar::before,
.hero__copy,
.favorite-card,
.category-card,
.page-head,
.product-card,
.product-modal__sheet,
.product-modal__visual,
.product-modal__backdrop,
.open-pill,
.menu-button,
.back-button,
.theme-toggle {
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 44px;
    padding: 0 9px;
    color: #f7f1e7;
    background: rgba(255,255,255,.045);
    border: 1px solid var(--line);
    border-radius: 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.theme-toggle__icon {
    width: 15px;
    font-size: 15px;
    line-height: 1;
    text-align: center;
    opacity: .48;
    transition: opacity .2s ease,transform .2s ease;
}

.theme-toggle__track {
    position: relative;
    width: 30px;
    height: 17px;
    flex: 0 0 30px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
}

    .theme-toggle__track i {
        position: absolute;
        top: 2px;
        right: 2px;
        width: 11px;
        height: 11px;
        background: var(--accent);
        border-radius: 50%;
        box-shadow: 0 2px 7px rgba(0,0,0,.28);
        transition: transform .25s ease;
    }

html:not([data-theme="light"]) .theme-toggle__icon--moon,
html[data-theme="light"] .theme-toggle__icon--sun {
    opacity: 1;
    transform: scale(1.08);
}

html[data-theme="light"] .theme-toggle__track i {
    transform: translateX(-13px);
}

html[data-theme="light"] {
    --ink: #24372f;
    --muted: #687970;
    --surface: #f3eee3;
    --surface-2: #fffaf0;
    --surface-3: #ece4d6;
    --line: rgba(33,67,52,.17);
    --shadow: 0 24px 65px rgba(55,43,24,.13);
}

    html[data-theme="light"],
    html[data-theme="light"] body {
        background: #f3eee3;
        color: var(--ink);
    }

        html[data-theme="light"] .site-shell {
            background: radial-gradient(circle at 10% 0%,rgba(201,162,39,.14),transparent 25%),#f3eee3;
        }

        html[data-theme="light"] .topbar::before {
            background: rgba(243,238,227,.92);
        }

        html[data-theme="light"] .open-pill,
        html[data-theme="light"] .menu-button,
        html[data-theme="light"] .theme-toggle,
        html[data-theme="light"] .back-button {
            color: #24372f;
            background: rgba(255,255,255,.55);
        }

            html[data-theme="light"] .menu-button span {
                background: #24372f;
            }

        html[data-theme="light"] .hero {
            box-shadow: var(--shadow);
        }

        html[data-theme="light"] .hero__copy {
            background: linear-gradient(145deg,#fffaf0,#ece4d6);
        }

        html[data-theme="light"] .hero h1,
        html[data-theme="light"] .favorites-title h2,
        html[data-theme="light"] .favorite-card__content h3,
        html[data-theme="light"] .category-card__content strong,
        html[data-theme="light"] .product-card__content h3,
        html[data-theme="light"] .product-modal__content h2,
        html[data-theme="light"] .site-footer strong {
            color: #24372f;
        }

            html[data-theme="light"] .hero h1 em {
                color: #9b7520;
            }

        html[data-theme="light"] .hero__copy p,
        html[data-theme="light"] .page-head p,
        html[data-theme="light"] .product-card__content p,
        html[data-theme="light"] .product-modal__content p,
        html[data-theme="light"] .site-footer p,
        html[data-theme="light"] .favorites-title p {
            color: #687970;
        }

        html[data-theme="light"] .favorite-card,
        html[data-theme="light"] .product-card {
            background: linear-gradient(145deg,rgba(255,250,240,.98),rgba(239,231,216,.98));
            box-shadow: 0 12px 34px rgba(55,43,24,.08);
        }

        html[data-theme="light"] .favorite-card__image,
        html[data-theme="light"] .product-card__image,
        html[data-theme="light"] .hero__media--single {
            background: #e8dfcf;
        }

        html[data-theme="light"] .page-head {
            background: linear-gradient(135deg,rgba(255,250,240,.95),rgba(235,225,207,.9));
        }

        html[data-theme="light"] .category-card {
            background: #e8dfcf;
            border-color: rgba(145,107,26,.30);
        }

        html[data-theme="light"] .product-modal__sheet {
            background: #fffaf0;
        }

        html[data-theme="light"] .product-modal__visual {
            background: #e8dfcf;
        }

        html[data-theme="light"] .product-modal__backdrop {
            background: rgba(44,37,27,.62);
        }

        html[data-theme="light"] .product-modal__close {
            color: #24372f;
            background: rgba(255,250,240,.9);
        }

        html[data-theme="light"] .site-footer a {
            color: #42584e;
        }

        html[data-theme="light"] .splash {
            background: radial-gradient(circle at center,rgba(201,162,39,.16),transparent 34%),#f3eee3 !important;
            color: #24372f;
        }

@media(max-width:620px) {
    .topbar__right {
        gap: 7px
    }

    .theme-toggle {
        width: 44px;
        padding: 0;
        gap: 0;
    }

    .theme-toggle__track {
        width: 27px;
        flex-basis: 27px
    }

        .theme-toggle__track i {
            right: 2px
        }

    html[data-theme="light"] .theme-toggle__track i {
        transform: translateX(-10px)
    }

    .theme-toggle__icon {
        display: none
    }
}


/* V4.1 - Tema düğmesi mobil görünüm ve açık tema kategori okunabilirliği */
html[data-theme="light"] .category-card__content small {
    color: rgba(255,255,255,.82);
}

html[data-theme="light"] .category-card__content strong {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,.58);
}

html[data-theme="light"] .category-card__content b {
    color: #f2c94c;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

html[data-theme="light"] .category-card__overlay {
    background: linear-gradient(180deg,rgba(1,9,6,.03) 18%,rgba(1,9,6,.88) 100%);
}

@media(max-width:620px) {
    .topbar__right {
        gap: 8px
    }

    .theme-toggle {
        width: auto;
        min-width: 76px;
        height: 44px;
        padding: 0 9px;
        gap: 6px;
    }

    .theme-toggle__icon {
        display: inline-grid;
        width: 15px;
        font-size: 15px;
    }

    .theme-toggle__track {
        width: 27px;
        flex: 0 0 27px;
    }

        .theme-toggle__track i {
            right: 2px
        }

    html[data-theme="light"] .theme-toggle__track i {
        transform: translateX(-10px)
    }
}


/* V4.2 - Mobil geri oku, modal görsel alanı ve kapatma ikonu düzeltmesi */
.back-button svg,
.back-button__icon {
    display: block;
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    overflow: visible;
    fill: none !important;
    stroke: currentColor !important;
    transform: none;
}

    .back-button svg path,
    .back-button__icon path {
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 2.4;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* Ürün fotoğrafı yoksa emoji gösterme */
#productModalPlaceholder {
    display: none !important;
}

.product-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 0;
    appearance: none;
    -webkit-appearance: none;
}

.product-modal__close-icon {
    display: block;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    fill: none;
    stroke: currentColor;
    overflow: visible;
}

    .product-modal__close-icon path {
        fill: none;
        stroke: currentColor;
        stroke-width: 2.25;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

@media(max-width:620px) {
    .back-button svg,
    .back-button__icon {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
    }

    .product-modal__close {
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
    }

    .product-modal__close-icon {
        width: 21px;
        height: 21px;
        flex-basis: 21px;
    }
}

/* QR Menü Stüdyosu - dinamik hero ve hazırlama notu */
.hero {
    min-height: var(--hero-height,420px)
}

.hero__copy {
    color: var(--hero-text,#fff)
}

    .hero__copy h1, .hero__copy p, .hero__copy .eyebrow {
        color: inherit
    }

.hero__media--single {
    position: relative
}

    .hero__media--single::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,var(--hero-overlay,.35));
        pointer-events: none
    }

.hero--center .hero__copy {
    text-align: center;
    align-items: center
}

.hero--right .hero__copy {
    text-align: right;
    align-items: flex-end
}

.product-modal__content small[hidden] {
    display: none !important
}

.product-modal__content small {
    display: block;
    margin-top: 16px;
    line-height: 1.55
}
