:root {
    --primary: #8662F6;
    --text: #1a1f26;
    --muted: #64748b;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --radius: 16px;
    --menu-icon: #c1ab99;
    --menu-icon-fill: #dcc9b8;
    --product-placeholder-aspect: 1080 / 1350;
    --product-photo-aspect: 1920 / 1080;
    --slider-aspect: 1920 / 800;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Neulis Alt', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

/* Splash — yalnızca ilk tam sayfa yüklemesinde */
body.splash-active {
    overflow: hidden;
}

#splash-screen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: opacity 0.28s ease;
}

#splash-screen.splash-hide {
    opacity: 0;
    pointer-events: none;
}

.splash-logo-wrap {
    width: min(52vw, 220px);
}

#splash-lottie {
    width: 100%;
    height: auto;
}

#splash-lottie svg {
    display: block;
    width: 100% !important;
    height: auto !important;
}

/* Closed screen */
.closed-screen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #ede9fe 100%);
}
.closed-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: #f5f3ff; color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; margin-bottom: 20px;
}
.closed-screen h1 { font-size: 24px; margin-bottom: 10px; }
.closed-screen p { color: var(--muted); max-width: 320px; }

/* Campaign bar */
.campaign-bar {
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
}

/* Theme 1 — Sekiz */
.theme-sekiz { background: #faf9f7; min-height: 100vh; overflow-x: clip; --home-gap: 50px; --home-hero-gap: 25px; padding-bottom: 0; box-sizing: border-box; display: flex; flex-direction: column; }
.sekiz-header {
    text-align: center;
    padding: 32px 20px 20px;
    background: linear-gradient(180deg, #fff 0%, #faf9f7 100%);
}
.sekiz-logo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; border: 3px solid #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.sekiz-header h1 { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.sekiz-header p { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* Home — slider + category tiles */
.sekiz-slider {
    position: relative;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    background: transparent;
}
.sekiz-slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: var(--slider-aspect);
    background: #ebe4dc;
    border-radius: var(--radius);
    overflow: hidden;
}
.sekiz-slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.65s ease;
    pointer-events: none;
}
.sekiz-slider-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.sekiz-slider-slide a {
    display: block;
    width: 100%;
    height: 100%;
}
.sekiz-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.sekiz-slider--static .sekiz-slider-track {
    aspect-ratio: 3 / 1;
    max-height: 140px;
    background: #fff;
}
.sekiz-slider--static .sekiz-slider-slide img {
    object-fit: contain;
    padding: 16px 24px;
}
.sekiz-slider--placeholder .sekiz-slider-track--placeholder,
.sekiz-slider-track--placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: var(--slider-aspect);
}
.sekiz-slider-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 180px;
    background: linear-gradient(135deg, #0d0d0d 0%, #2a2a2a 100%);
    color: #fff;
    font-size: clamp(18px, 4vw, 26px);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 24px;
}
.sekiz-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: center;
    gap: 7px;
    z-index: 2;
}
.sekiz-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.45);
    transition: transform 0.2s, background 0.2s;
}
.sekiz-slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.sekiz-home-cats {
    padding: 24px 16px 20px;
    width: 100%;
    box-sizing: border-box;
}
.sekiz-home-cats .sekiz-subcat-item {
    --subcat-circle-size: 80px;
    --subcat-visual-size: 38px;
    --subcat-item-width: 100px;
    width: 100%;
    gap: 12px;
}
/* Story — yuvarlak, yatay kaydırmalı */
.sekiz-home-cats--story .sekiz-subcat-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.sekiz-home-cats--story .sekiz-subcat-scroll::-webkit-scrollbar { display: none; }
.sekiz-home-cats--story .sekiz-subcat-item {
    flex-shrink: 0;
    width: var(--subcat-item-width);
}
.sekiz-home-cats--story .sekiz-subcat-circle:has(.sekiz-subcat-img) {
    padding: 0;
}
.sekiz-home-cats--story .sekiz-subcat-img {
    object-fit: cover;
}
/* Kare grid */
.sekiz-home-cats--grid .home-cat-grid {
    display: grid;
    grid-template-columns: repeat(var(--home-cat-cols, 4), minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    box-sizing: border-box;
}
.home-cat-grid-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}
.home-cat-grid-media {
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid #ebe4dc;
    background: #f8f6f3;
    border-radius: var(--home-cat-radius, var(--radius));
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.home-cat-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.home-cat-grid-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42%;
    height: 42%;
    color: var(--menu-icon);
}
.home-cat-grid-icon i {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1;
}
.home-cat-grid-label {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
a.sekiz-subcat-item {
    text-decoration: none;
    color: inherit;
}

/* Ana sayfa bölümleri arası dikey boşluk */
.theme-sekiz .sekiz-slider,
.theme-sekiz .sekiz-home-cats {
    margin-top: var(--home-hero-gap);
    padding-top: 0;
    padding-bottom: 0;
}
.theme-sekiz .sekiz-popular,
.theme-sekiz .sekiz-instagram,
.theme-sekiz .sekiz-google-reviews {
    margin-top: var(--home-gap);
    padding-top: 0;
    padding-bottom: 0;
}
.theme-sekiz .sekiz-meal-cards {
    margin-top: var(--home-gap);
}
.theme-sekiz .sekiz-home-cats .sekiz-subcat-scroll,
.theme-sekiz .sekiz-home-cats .home-cat-grid {
    padding-top: 0;
    padding-bottom: 0;
}

.cat-tile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin: 0 auto;
}
.cat-tile {
    --cat-visual-w: 72px;
    --cat-visual-h: 64px;
    --cat-icon-size: 56px;
    aspect-ratio: 1;
    container-type: size;
    background: #fff;
    border: 2px solid var(--menu-icon);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    min-width: 0;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.15s;
}
@media (hover: hover) {
    .cat-tile:hover {
        transform: translateY(-2px);
    }
}
.cat-tile:active { transform: scale(0.97); }
.cat-tile-visual {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: var(--cat-visual-h);
    min-height: var(--cat-visual-h);
}
.cat-tile-icon {
    color: var(--menu-icon);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: var(--cat-visual-h);
    flex-shrink: 0;
}
.cat-tile-icon i {
    font-size: var(--cat-icon-size);
    width: var(--cat-icon-size);
    height: var(--cat-icon-size);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-tile-icon .ph-duotone { color: var(--menu-icon); }
.cat-tile-icon .ph-duotone .ph-fill { fill: var(--menu-icon-fill); opacity: 0.45; }
.cat-tile-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: var(--cat-visual-h);
    flex-shrink: 0;
    box-sizing: border-box;
}
.theme-sekiz .cat-tile-img,
.cat-tile-img {
    width: var(--cat-visual-w);
    height: var(--cat-visual-h);
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    flex-shrink: 0;
    margin: 0 auto;
}
.cat-tile-name {
    display: block;
    width: 100%;
    font-size: clamp(12px, 6.5cqw, 15px);
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    flex-shrink: 0;
    margin-top: 0;
}

/* Home — popular products carousel */
.sekiz-popular {
    padding: 8px 16px 0;
    width: 100%;
    box-sizing: border-box;
}
.sekiz-popular-head {
    padding: 0 0 16px;
    text-align: center;
}
.sekiz-popular-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
}
.sekiz-popular-heading-line {
    flex: 1 1 0;
    min-width: 24px;
    max-width: 140px;
    height: 1px;
    background: #d4d4d8;
}
.sekiz-popular-head h2 {
    flex: 0 0 auto;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    white-space: nowrap;
}
.sekiz-popular-desc {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--muted);
}
.sekiz-popular-carousel-wrap {
    position: relative;
}
.sekiz-popular-track {
    display: flex;
    --popular-gap: 14px;
    gap: var(--popular-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 10px;
    cursor: grab;
    touch-action: pan-x;
}
.sekiz-popular-track.is-dragging {
    cursor: grabbing;
    user-select: none;
    scroll-snap-type: none;
}
.sekiz-popular-track.is-dragging .sekiz-popular-card {
    pointer-events: none;
}
.sekiz-popular-track::-webkit-scrollbar {
    display: none;
}
.sekiz-popular-card {
    flex: 0 0 min(46vw, 200px);
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #ebe4dc;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.15s;
    text-align: left;
}
.sekiz-popular-card:active {
    transform: scale(0.98);
}
.sekiz-popular-card-media {
    aspect-ratio: var(--product-placeholder-aspect);
    width: 100%;
    background: #f1f5f9;
    overflow: hidden;
    line-height: 0;
    position: relative;
}
.sekiz-popular-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.sekiz-popular-card-body {
    padding: 12px 14px 14px;
}
.sekiz-popular-card-top {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}
.sekiz-popular-card-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}
.sekiz-popular-card-media > .menu-product-tags {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    line-height: normal;
    pointer-events: none;
}
.sekiz-popular-card-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sekiz-popular-card-price .menu-product-price {
    font-size: 14px;
    font-weight: 700;
}
.sekiz-popular-card-price .menu-product-price-old {
    font-size: 11px;
    color: var(--muted);
    text-decoration: line-through;
}

/* Home — Instagram strip */
.sekiz-instagram {
    --instagram-visible-count: 3.5;
    --instagram-item-gap: 14px;
    --instagram-track-padding: 8px;
    padding: 8px 16px 16px;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}
.sekiz-instagram-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0 24px;
}
.sekiz-instagram-wordmark {
    display: block;
    width: min(168px, 62vw);
    height: auto;
    max-height: 48px;
    object-fit: contain;
    margin: 0;
    background: transparent;
}
.sekiz-instagram-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    container-type: inline-size;
    overflow: hidden;
}
.sekiz-instagram-track {
    overflow: hidden;
    padding: 4px var(--instagram-track-padding) 12px;
    box-sizing: border-box;
}
.sekiz-instagram-marquee {
    display: flex;
    gap: var(--instagram-item-gap);
    width: max-content;
    animation: sekiz-marquee-loop var(--sekiz-instagram-marquee-duration, 40s) linear infinite;
    will-change: transform;
}
.sekiz-instagram-marquee.is-paused {
    animation-play-state: paused;
}
@keyframes sekiz-marquee-loop {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(calc(-1 * var(--marquee-loop-width, 0px)), 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .sekiz-instagram-marquee,
    .sekiz-meal-cards-marquee {
        animation: none;
    }
}
.sekiz-instagram-item {
    flex: 0 0 var(--instagram-item-width, calc((100cqw - (2 * var(--instagram-track-padding)) - ((var(--instagram-visible-count) - 1) * var(--instagram-item-gap))) / var(--instagram-visible-count)));
    width: var(--instagram-item-width, calc((100cqw - (2 * var(--instagram-track-padding)) - ((var(--instagram-visible-count) - 1) * var(--instagram-item-gap))) / var(--instagram-visible-count)));
    min-width: var(--instagram-item-width, calc((100cqw - (2 * var(--instagram-track-padding)) - ((var(--instagram-visible-count) - 1) * var(--instagram-item-gap))) / var(--instagram-visible-count)));
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}
.sekiz-instagram-card {
    aspect-ratio: 9 / 16;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid #ebe4dc;
    box-sizing: border-box;
}
.sekiz-instagram-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sekiz-instagram-follow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    max-width: calc(100% - 32px);
    margin: 4px auto 0;
    padding: 14px 28px;
    border-radius: 999px;
    background: #09090b;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
}
.sekiz-instagram-follow i {
    font-size: 18px;
}
@media (hover: hover) {
    .sekiz-instagram-follow:hover {
        opacity: 0.92;
        transform: translateY(-1px);
    }
}
.sekiz-instagram-follow:active {
    transform: scale(0.98);
}

/* Home — Google reviews carousel */
.sekiz-google-reviews {
    --google-review-visible-count: 1.15;
    --google-review-item-gap: 14px;
    --google-review-track-padding: 8px;
    padding: 8px 16px 16px;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}
.sekiz-google-reviews-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0 20px;
    gap: 6px;
}
.sekiz-google-reviews-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text);
}
.sekiz-google-reviews-brand .google-brand-icon {
    width: 22px;
    height: 22px;
}
.sekiz-google-reviews-meta {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}
.sekiz-google-reviews-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    container-type: inline-size;
    overflow: hidden;
}
.sekiz-google-reviews-track {
    overflow: hidden;
    padding: 4px var(--google-review-track-padding) 12px;
    box-sizing: border-box;
}
.sekiz-google-reviews-marquee {
    display: flex;
    gap: var(--google-review-item-gap);
    width: max-content;
    animation: sekiz-marquee-loop var(--sekiz-google-reviews-marquee-duration, 48s) linear infinite;
    will-change: transform;
}
.sekiz-google-reviews-marquee.is-paused {
    animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
    .sekiz-google-reviews-marquee {
        animation: none;
    }
}
.sekiz-google-review-item {
    flex: 0 0 var(--google-review-item-width, min(86vw, 292px));
    width: var(--google-review-item-width, min(86vw, 292px));
    min-width: var(--google-review-item-width, min(86vw, 292px));
    box-sizing: border-box;
}
.sekiz-google-review-card {
    height: 100%;
    min-height: 188px;
    padding: 16px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid #ebe4dc;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sekiz-google-review-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.sekiz-google-review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.sekiz-google-review-avatar {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    overflow: hidden;
    background: #f5ebe0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sekiz-google-review-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sekiz-google-review-avatar-fallback {
    font-size: 14px;
    font-weight: 700;
    color: #5a4d44;
}
.sekiz-google-review-author-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.sekiz-google-review-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sekiz-google-review-date {
    font-size: 12px;
    color: var(--muted);
}
.sekiz-google-review-badge {
    flex-shrink: 0;
    opacity: 0.95;
}
.google-brand-icon {
    display: block;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.sekiz-google-review-stars {
    display: flex;
    gap: 2px;
}
.sekiz-google-review-star {
    font-size: 14px;
    line-height: 1;
    color: #d4d4d8;
}
.sekiz-google-review-star.is-filled {
    color: #f59e0b;
}
.sekiz-google-review-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #3f3f46;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sekiz-google-reviews-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    max-width: calc(100% - 32px);
    margin: 4px auto 0;
    padding: 14px 28px;
    border-radius: 999px;
    background: #fff;
    color: #09090b;
    border: 1px solid #ebe4dc;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
}
.sekiz-google-reviews-cta i {
    font-size: 18px;
    color: #4285f4;
}
@media (hover: hover) {
    .sekiz-google-reviews-cta:hover {
        opacity: 0.92;
        transform: translateY(-1px);
    }
}
.sekiz-google-reviews-cta:active {
    transform: scale(0.98);
}

/* Home — Meal card payment strip */
.sekiz-meal-cards {
    margin-top: var(--home-gap);
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    height: auto;
    padding: 70px 0;
    background-color: #f5ebe0;
    background-image: url("../images/decor/meal-cards-palm-bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 0;
    box-sizing: border-box;
    overflow: visible;
}
.sekiz-meal-cards-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 36px;
    padding: 0 16px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    color: #5a4d44;
    letter-spacing: 0.01em;
}
.sekiz-meal-cards-title span {
    display: block;
}
.sekiz-meal-cards-tagline {
    margin: 28px 0 0;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
    color: #5a4d44;
    font-style: italic;
}
.sekiz-meal-cards-tagline em {
    font-style: italic;
}
.sekiz-meal-cards-track {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    --meal-card-gap: 28px;
    --meal-card-slot: 128px;
}
.sekiz-meal-cards-marquee {
    display: flex;
    gap: var(--meal-card-gap);
    width: max-content;
    animation: sekiz-marquee-loop var(--sekiz-meal-cards-marquee-duration, 24s) linear infinite;
    will-change: transform;
}
.sekiz-meal-cards-marquee.is-paused {
    animation-play-state: paused;
}
.sekiz-meal-cards-logo {
    flex: 0 0 var(--meal-card-slot);
    width: var(--meal-card-slot);
    min-width: var(--meal-card-slot);
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 9999px;
    box-sizing: border-box;
    padding: 11px 14px;
}
.sekiz-meal-cards-logo img {
    display: block;
    width: 78%;
    height: 78%;
    max-width: 78%;
    max-height: 78%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
}
.sekiz-menu-sections .sekiz-meal-cards {
    margin-top: 4px;
    margin-bottom: 12px;
}

.sekiz-site-footer {
    margin-top: var(--home-gap);
    width: 100%;
    padding: 18px 16px;
    background: #09090b;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
}
.sekiz-site-footer p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.01em;
}

@media (max-width: 360px) {
    .sekiz-home-cats {
        padding: 14px 16px 18px;
    }
    .sekiz-home-cats--story .sekiz-subcat-scroll {
        gap: 14px;
        padding: 4px 0 8px;
    }
    .sekiz-home-cats--grid .home-cat-grid {
        gap: 10px;
    }
    .sekiz-popular {
        padding: 8px 12px 20px;
    }
    .cat-tile-grid {
        gap: 10px;
    }
    .cat-tile {
        padding: 14px 10px;
        gap: 5px;
    }
}

@media (min-width: 480px) and (max-width: 899px) {
    .sekiz-home-cats {
        padding: 16px 16px 24px;
    }
    .sekiz-home-cats .sekiz-subcat-item {
        --subcat-circle-size: 82px;
        --subcat-visual-size: 38px;
        --subcat-item-width: 102px;
    }
    .sekiz-popular {
        padding: 8px 16px 24px;
    }
    .cat-tile-grid {
        gap: 16px;
        max-width: 520px;
    }
    .cat-tile {
        padding: 20px 16px;
        gap: 6px;
    }
}

@media (min-width: 900px) {
    .sekiz-slider {
        max-width: 1200px;
        margin: var(--home-hero-gap) auto 0;
        padding: 0 32px;
    }
    .sekiz-slider-track {
        border-radius: var(--radius);
    }
    .sekiz-slider-dots {
        left: 32px;
        right: 32px;
    }
    .sekiz-home-cats {
        padding: 18px 32px 28px;
        max-width: 1200px;
        margin: var(--home-hero-gap) auto 0;
    }
    .sekiz-home-cats .sekiz-subcat-item {
        --subcat-circle-size: 86px;
        --subcat-visual-size: 40px;
        --subcat-item-width: 106px;
    }
    .sekiz-home-cats--story .sekiz-subcat-scroll {
        gap: 22px;
        padding: 8px 0 12px;
    }
    .sekiz-home-cats--grid .home-cat-grid {
        gap: 16px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .sekiz-popular {
        max-width: 1200px;
        margin: 0 auto;
        padding: 12px 32px 0;
    }
    .sekiz-popular-head {
        padding: 0 0 18px;
    }
    .sekiz-popular-track {
        padding: 4px 0 10px;
        --popular-gap: 18px;
        gap: var(--popular-gap);
    }
    .sekiz-popular-card {
        flex: 0 0 min(220px, calc((100% - var(--popular-gap)) / 2.4));
    }
    .cat-tile-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
        max-width: 100%;
    }
    .cat-tile {
        padding: 28px 20px;
        gap: 10px;
        --cat-visual-w: 84px;
        --cat-visual-h: 76px;
        --cat-icon-size: 64px;
    }
}

@media (min-width: 1200px) {
    .sekiz-home-cats {
        padding: 40px 0 36px;
    }
    .cat-tile-grid {
        gap: 28px;
    }
}

/* Masaüstü: menüyü telefon tarzı ortalı dar sütunda göster */
@media (min-width: 600px) {
    body:has(.theme-sekiz),
    body:has(.theme-modern),
    body:has(.theme-premium-body) {
        --app-max: 640px;
    }
    body:has(.theme-sekiz) {
        background: #e7e3dd;
    }
    .theme-sekiz {
        --app-max: 640px;
        max-width: var(--app-max);
        margin: 0 auto;
        min-height: 100vh;
        box-shadow: 0 0 60px rgba(0, 0, 0, 0.12);
    }
    /* Sabit başlık aynı sütuna hizalansın */
    .theme-sekiz .sekiz-sticky-header {
        left: 0;
        right: 0;
        width: 100%;
        max-width: var(--app-max);
        margin: 0 auto;
    }
    /* İç yerleşim mobil düzeninde kalsın */
    .theme-sekiz .sekiz-slider,
    .theme-sekiz .sekiz-home-cats,
    .theme-sekiz .sekiz-popular,
    .theme-sekiz .sekiz-instagram,
    .theme-sekiz .sekiz-google-reviews {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
    .theme-sekiz .sekiz-meal-cards {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .theme-sekiz .sekiz-home-cats .sekiz-subcat-item {
        --subcat-circle-size: 80px;
        --subcat-visual-size: 38px;
        --subcat-item-width: 100px;
    }
    .theme-sekiz .cat-tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .theme-sekiz .cat-tile {
        padding: 16px 12px;
        --cat-visual-w: 72px;
        --cat-visual-h: 64px;
        --cat-icon-size: 56px;
    }
    /* Bottom sheet ve FAB de sütun içinde kalsın */
    body:has(.theme-sekiz) .sekiz-detail-sheet,
    body:has(.theme-modern) .sekiz-detail-sheet {
        left: 50%;
        right: auto;
        width: 100%;
        max-width: var(--app-max, 640px);
        top: auto;
        bottom: 0;
        max-height: calc(100dvh - var(--sekiz-sheet-top, var(--sekiz-sticky-header-h, 0px)));
        transform: translateX(-50%) translateY(100%);
    }
    body:has(.theme-sekiz) .sekiz-detail-sheet.open,
    body:has(.theme-modern) .sekiz-detail-sheet.open {
        transform: translateX(-50%) translateY(0);
    }
    .theme-sekiz .fab-review {
        right: calc(50% - (var(--app-max) / 2) + 24px);
    }
    body:has(.theme-modern) {
        background: #e7e3dd;
    }
    .theme-modern {
        --app-max: 640px;
        max-width: var(--app-max);
        margin: 0 auto;
        min-height: 100vh;
        box-shadow: 0 0 60px rgba(0, 0, 0, 0.12);
        background: #fff;
    }
    body:has(.theme-premium-body) {
        background: #18181b;
    }
    body:has(.theme-premium-body) .theme-premium {
        --app-max: 640px;
        max-width: var(--app-max);
        margin: 0 auto;
        min-height: 100vh;
        box-shadow: 0 0 60px rgba(0, 0, 0, 0.35);
    }
    body:has(.theme-premium-body) .theme-premium .premium-bottom-nav {
        left: 50%;
        right: auto;
        width: 100%;
        max-width: var(--app-max);
        transform: translateX(-50%);
    }
    body:has(.theme-premium-body) .theme-premium #detail-sheet.product-detail-sheet {
        left: 50%;
        right: auto;
        width: 100%;
        max-width: var(--app-max, 640px);
        max-height: min(72vh, 520px);
        transform: translateX(-50%) translateY(100%);
    }
    body:has(.theme-premium-body) .theme-premium #detail-sheet.product-detail-sheet.open {
        transform: translateX(-50%) translateY(0);
    }
    body:has(.theme-premium-body) .theme-premium .product-sheet-image {
        max-height: min(38vh, 340px);
    }
    body:has(.theme-premium-body) .theme-premium .product-sheet-image img {
        max-height: none;
    }
}

.sekiz-categories { padding: 16px; }
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.cat-grid.list-mode { grid-template-columns: 1fr; }
.cat-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    cursor: pointer;
    transition: transform 0.2s;
    border: 1px solid var(--border);
}
.cat-card:active { transform: scale(0.98); }
.cat-card img { width: 100%; height: 100px; object-fit: cover; background: #f1f5f9; }
.cat-card-icon {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100px;
    background: color-mix(in srgb, var(--menu-icon) 12%, #fff);
    color: var(--menu-icon);
}
.cat-card-icon i { font-size: 40px; }
.cat-card-icon .ph-duotone { color: var(--menu-icon); }
.cat-card-icon .ph-duotone .ph-fill { fill: var(--menu-icon-fill); opacity: 0.45; }

.cat-visual-icon {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
    color: var(--menu-icon);
}
.cat-visual-icon i { font-size: 2rem; }
.cat-visual-icon .ph-duotone { color: var(--menu-icon); }
.cat-visual-icon .ph-duotone .ph-fill { fill: var(--menu-icon-fill); opacity: 0.45; }
.cat-visual-icon--circle { background: color-mix(in srgb, var(--menu-icon) 12%, transparent); }
.cat-visual-icon--rounded { background: color-mix(in srgb, var(--menu-icon) 12%, transparent); }
.cat-card-body { padding: 14px; }
.cat-card-body h3 { font-size: 15px; font-weight: 600; }
.cat-card-body span { font-size: 12px; color: var(--muted); }

.sekiz-products { padding: 0 16px 100px; }

/* Category page — brand bar + category bar + subcat nav (fixed stack) */
.sekiz-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 40;
}
/* Kategori sayfası: kampanya barı + marka başlığı yukarı kayıp gider,
   kategori başlığı + alt kategori şeridi üstte sabit kalır (negatif top ile). */
.sekiz-sticky-header:not(.sekiz-sticky-header--brand-only) {
    position: sticky;
    top: calc(-1 * var(--sekiz-sticky-scroll-offset, 0px));
}
.sekiz-page-header {
    position: relative;
    z-index: 2;
}
.sekiz-brand-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background: #000;
}
.sekiz-brand-header--logo-left {
    justify-content: flex-start;
}
.sekiz-brand-header--logo-left .sekiz-brand-link {
    justify-content: flex-start;
}
.sekiz-page-with-sticky-header {
    padding-top: var(--sekiz-sticky-header-h, 72px);
}
.sekiz-header-menu {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
}
#sekiz-header-menu-btn,
.sekiz-header-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #fff !important;
    font-size: 24px;
    cursor: pointer;
}
.sekiz-header-menu-btn i,
#sekiz-header-menu-btn i {
    color: #fff !important;
}
/* İşletme bilgileri sayfası */
.sekiz-info-page {
    max-width: var(--app-max, 640px);
    margin: 0 auto;
    padding: 12px 16px 100px;
}
.sekiz-info-hero {
    padding: 8px 0 4px;
}
.sekiz-info-cover {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius);
}
.sekiz-info-card {
    background: #fff;
    border: 1px solid #ebe4dc;
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 14px;
}
.sekiz-info-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}
.sekiz-info-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text, #1f2937);
    margin-bottom: 12px;
}
.sekiz-info-card-head .sekiz-info-card-title {
    margin-bottom: 0;
}
.sekiz-info-card-title i {
    font-size: 20px;
    color: #1c1c1c;
}

.sekiz-info-value {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--text, #1f2937);
    margin-bottom: 0;
    word-break: break-word;
}

/* Yönetime mesaj / geri bildirim butonu */
.sekiz-info-feedback {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    background: #1c1c1c;
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-top: 14px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sekiz-info-feedback:active {
    transform: scale(0.99);
}
.sekiz-info-feedback-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}
.sekiz-info-feedback-icon i {
    font-size: 22px;
    line-height: 1;
}
.sekiz-info-feedback-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.sekiz-info-feedback-title {
    font-size: 15px;
    font-weight: 700;
}
.sekiz-info-feedback-sub {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
}
.sekiz-info-feedback-arrow {
    flex-shrink: 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

/* Şu an açık / kapalı rozeti */
.sekiz-info-status {
    flex-shrink: 0;
    padding: 4px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}
.sekiz-info-status.is-open {
    background: #dcfce7;
    color: #16a34a;
}
.sekiz-info-status.is-shut {
    background: #fee2e2;
    color: #dc2626;
}
.sekiz-info-hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-top: 1px solid #f1ece5;
    font-size: 14px;
}
.sekiz-info-hours-row:first-child {
    border-top: none;
}
.sekiz-info-hours-day {
    color: var(--text, #1f2937);
}
.sekiz-info-hours-val {
    font-weight: 600;
    color: var(--text, #1f2937);
}
.sekiz-info-hours-val.is-closed {
    color: #dc2626;
}
.sekiz-info-hours-row.is-today {
    font-weight: 700;
}
.sekiz-info-hours-row.is-today .sekiz-info-hours-day,
.sekiz-info-hours-row.is-today .sekiz-info-hours-val {
    color: #1c1c1c;
}
.sekiz-brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.sekiz-brand-logo {
    height: 44px;
    width: auto;
    max-width: min(240px, 70vw);
    object-fit: contain;
}
.sekiz-brand-name {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.sekiz-cat-header {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: #f5f0ea;
    border-bottom: 1px solid #ebe4dc;
}
.sekiz-cat-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #000;
    text-decoration: none;
}
.sekiz-cat-back-icon {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.sekiz-cat-title {
    text-align: right;
    justify-self: end;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sekiz-subcat-nav {
    position: relative;
    z-index: 1;
    background: #faf9f7;
    border-bottom: 1px solid #ebe4dc;
    padding: 16px 0 14px;
}
.sekiz-subcat-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.sekiz-subcat-scroll::-webkit-scrollbar { display: none; }
.sekiz-subcat-item {
    --subcat-circle-size: 64px;
    --subcat-visual-size: 28px;
    --subcat-item-width: 84px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: var(--subcat-item-width);
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}
.sekiz-subcat-circle {
    width: var(--subcat-circle-size);
    height: var(--subcat-circle-size);
    align-self: center;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #e8dfd4;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}
.sekiz-subcat-circle:has(.sekiz-subcat-icon) {
    padding: 10px;
    box-sizing: border-box;
}
.sekiz-subcat-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    display: block;
}
/* Kategori sayfası alt şerit — görsel daireyi kaplasın */
.sekiz-subcat-nav .sekiz-subcat-circle:has(.sekiz-subcat-img) {
    padding: 0;
}
.sekiz-subcat-nav .sekiz-subcat-img {
    object-fit: cover;
}
/* Ana sayfa kategori daireleri — dengeli iç boşluk, orantılı ikon/görsel */
.sekiz-home-cats .sekiz-subcat-circle {
    padding: 12px;
    box-sizing: border-box;
}
.sekiz-home-cats .sekiz-subcat-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.sekiz-subcat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--subcat-visual-size);
    height: var(--subcat-visual-size);
    flex-shrink: 0;
    color: var(--menu-icon);
    background: transparent;
}
.sekiz-subcat-icon i {
    font-size: var(--subcat-visual-size);
    line-height: 1;
}
.sekiz-subcat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    display: block;
    width: 100%;
    max-width: var(--subcat-item-width);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}
.sekiz-subcat-item.active .sekiz-subcat-label {
    color: var(--menu-icon);
    border-bottom-color: var(--menu-icon);
}

.sekiz-cat-page-intro {
    padding: 8px 16px 0;
}
.sekiz-cat-page-intro .sekiz-popular-head {
    padding-bottom: 12px;
}

.sekiz-menu-sections {
    padding: 8px 16px 100px;
}
.sekiz-menu-sections--with-intro {
    padding-top: 12px;
}
.sekiz-menu-sections .menu-section {
    scroll-margin-top: calc(var(--sekiz-sticky-header-h, 137px) - var(--sekiz-sticky-scroll-offset, 0px) + 8px);
}
.menu-section {
    padding-top: 20px;
}
.menu-section-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--menu-icon);
    margin-bottom: 14px;
}
.menu-section-products {
    display: flex;
    flex-direction: column;
}
.menu-product-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid #ebe4dc;
    background: none;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.menu-product-row:last-child { border-bottom: none; }
.menu-product-thumb {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    border-radius: var(--radius);
    object-fit: cover;
    object-position: center;
    background: #f1f5f9;
    flex-shrink: 0;
    display: block;
}
.menu-product-body {
    flex: 1;
    min-width: 0;
}
.menu-product-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.menu-product-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    min-width: 0;
}
.menu-product-name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    flex-shrink: 0;
}
.menu-product-tags {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}
.menu-product-tags .tag-badge {
    margin: 0;
}
.menu-product-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}
.menu-product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}
.menu-product-price-old {
    font-size: 11px;
    color: var(--muted);
    text-decoration: line-through;
    white-space: nowrap;
}
.menu-product-desc {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.55;
    color: #4b5563;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.menu-product-desc-wrap.is-expanded .menu-product-desc {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}
.menu-product-desc-more {
    display: inline-block;
    margin-top: 4px;
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    color: #7c6f63;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.menu-product-desc-more[hidden] {
    display: none;
}
.sekiz-empty {
    color: var(--muted);
    padding: 24px 0;
    text-align: center;
}

/* Sekiz — ürün detay bottom sheet */
.sekiz-sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 180;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}
.sekiz-sheet-backdrop.open {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.sekiz-detail-sheet {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 190;
    height: auto;
    max-height: calc(100dvh - var(--sekiz-sheet-top, var(--sekiz-sticky-header-h, 0px)));
    padding: 0;
    background: #fff;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.14);
}
.sekiz-detail-sheet.open {
    transform: translateY(0);
}
.sekiz-sheet-chrome {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    flex-shrink: 0;
    min-height: 0;
    padding: 10px 14px;
    background: transparent;
    pointer-events: none;
}
.sekiz-sheet-close {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 3;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #64748b;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.sekiz-sheet-handle {
    position: absolute;
    top: 10px;
    left: 50%;
    z-index: 2;
    width: 40px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
    transform: translateX(-50%);
    margin: 0;
    cursor: pointer;
    pointer-events: auto;
}
.sekiz-sheet-image {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0;
    padding: 0;
    background: #000;
    line-height: 0;
    overflow: hidden;
    position: relative;
}
.sekiz-sheet-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.sekiz-sheet-zoom-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.52);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.2s ease, transform 0.15s ease;
}
.sekiz-sheet-zoom-btn:hover {
    background: rgba(0, 0, 0, 0.72);
}
.sekiz-sheet-zoom-btn:active {
    transform: scale(0.96);
}
.sekiz-sheet-zoom-btn i {
    font-size: 20px;
    pointer-events: none;
}
.sekiz-sheet-zoom-btn[hidden] {
    display: none;
}
.sekiz-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 250;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.sekiz-image-lightbox.open {
    opacity: 1;
    pointer-events: auto;
}
.sekiz-image-lightbox-img {
    max-width: min(100%, 960px);
    max-height: calc(100vh - 40px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    cursor: zoom-out;
}
.sekiz-image-lightbox-close {
    position: absolute;
    top: calc(12px + env(safe-area-inset-top, 0px));
    right: calc(12px + env(safe-area-inset-right, 0px));
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sekiz-image-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.24);
}
.sekiz-sheet-footer {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px 20px calc(20px + env(safe-area-inset-bottom, 0px));
    background: #fff;
}
.sekiz-sheet-footer-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}
.sekiz-sheet-desc {
    font-size: 13px;
    line-height: 1.55;
    color: #4b5563;
    margin: 0;
}
.menu-product-desc p,
.sekiz-sheet-desc p {
    margin: 0 0 0.45em;
}
.menu-product-desc p:last-child,
.sekiz-sheet-desc p:last-child {
    margin-bottom: 0;
}
.menu-product-desc ul,
.menu-product-desc ol,
.sekiz-sheet-desc ul,
.sekiz-sheet-desc ol {
    margin: 0.35em 0;
    padding-left: 1.25em;
}
.menu-product-desc ul,
.sekiz-sheet-desc ul {
    list-style: disc;
}
.menu-product-desc ol,
.sekiz-sheet-desc ol {
    list-style: decimal;
}
.product-sheet-desc p {
    margin: 0 0 0.45em;
}
.product-sheet-desc p:last-child {
    margin-bottom: 0;
}
.sekiz-sheet-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
}
.sekiz-sheet-meta[hidden] {
    display: none;
}
.sekiz-sheet-meta-label {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9ca3af;
}
.sekiz-sheet-nutrition {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.sekiz-sheet-nutrition-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f9f6f2;
    border: 1px solid #ebe4dc;
}
.sekiz-sheet-nutrition-label {
    font-size: 10px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.sekiz-sheet-nutrition-value {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}
.sekiz-sheet-allergens .allergen-warnings {
    margin: 0;
}
.sekiz-sheet-ingredients-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #4b5563;
}
.sekiz-sheet-title-wrap {
    flex: 1;
    min-width: 0;
}
.sekiz-sheet-title-wrap h2 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: #111827;
}
.sekiz-sheet-price {
    flex-shrink: 0;
    text-align: right;
}
.sekiz-sheet-price .menu-product-price {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
}
.sekiz-sheet-title-wrap .product-tags {
    margin-top: 6px;
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    cursor: pointer;
}
.product-card-head { display: flex; gap: 14px; }
.product-card img { width: 80px; height: 80px; border-radius: var(--radius); object-fit: cover; background: #f1f5f9; flex-shrink: 0; }
.product-card-info { flex: 1; min-width: 0; }
.product-card-info h4 { font-size: 16px; font-weight: 600; }
.product-card-info p { font-size: 13px; color: var(--muted); margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Grid product layout */
.product-list { display: flex; flex-direction: column; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.product-grid--1 { grid-template-columns: 1fr; }
.product-grid--2 { grid-template-columns: repeat(2, 1fr); }
.product-grid .product-card { margin-bottom: 0; padding: 12px; }
.product-grid .product-card-head { flex-direction: column; gap: 10px; }
.product-grid .product-card img { width: 100%; height: 120px; border-radius: var(--radius); }
.product-grid .product-card-info h4 { font-size: 14px; }
.product-grid .product-card-info p { -webkit-line-clamp: 2; font-size: 12px; }
.product-grid .price { font-size: 15px; }
.price-row { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.price { font-size: 18px; font-weight: 700; color: var(--primary); }
.price-old { font-size: 14px; color: var(--muted); text-decoration: line-through; }
.discount-badge { background: #fef2f2; color: #dc2626; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 6px; }

.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; align-items: center; }
.product-title-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.tag-badge,
.badge-new {
    display: inline-flex;
    align-items: center;
    margin-top: 2px;
    margin-left: 2px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    border-radius: 8px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}
.tag-badge.badge-new,
.badge-new.tag-badge {
    animation: badge-bounce 1.2s infinite alternate cubic-bezier(0.4, 1.6, 0.6, 1);
}
@keyframes badge-bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-2px); }
}

.fab-review {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(173, 155, 138, 1);
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    z-index: 100;
}
.fab-review i {
    font-size: 24px;
    line-height: 1;
    display: block;
}
.fab-review .ph-duotone .ph-fill {
    fill: #fff;
    opacity: 0.35;
}

/* Theme 2 — Modern */
.theme-modern { background: #fff; min-height: 100vh; padding-bottom: 80px; }
.modern-header {
    position: sticky; top: 0; z-index: 50;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 16px; display: flex; align-items: center; gap: 12px;
}
.modern-header img { width: 44px; height: 44px; border-radius: var(--radius); object-fit: cover; }
.modern-header h1 { font-size: 18px; font-weight: 700; }

.modern-slider { overflow-x: auto; display: flex; gap: 0; scroll-snap-type: x mandatory; }
.modern-slider img { width: 100%; height: 180px; object-fit: cover; flex-shrink: 0; scroll-snap-align: start; }

.modern-cats {
    position: sticky; top: 76px; z-index: 40;
    background: #fff; border-bottom: 1px solid var(--border);
    display: flex; gap: 8px; overflow-x: auto; padding: 12px 16px;
    -webkit-overflow-scrolling: touch;
}
.modern-cat-pill {
    flex-shrink: 0; padding: 8px 18px; border-radius: 999px;
    background: #f1f5f9; font-size: 13px; font-weight: 600;
    color: var(--muted); border: none; cursor: pointer; font-family: inherit;
}
.modern-cat-pill.active { background: var(--primary); color: #fff; }

.modern-products { padding: 16px; }
.modern-product {
    display: flex; gap: 14px; padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}
.modern-product img {
    width: 90px;
    aspect-ratio: var(--product-photo-aspect);
    height: auto;
    border-radius: var(--radius);
    object-fit: contain;
    background: #f1f5f9;
}
.modern-product-info { flex: 1; }
.modern-product-info h4 { font-size: 15px; font-weight: 600; }
.modern-product-info p,
.modern-product-desc { font-size: 12px; color: var(--muted); margin: 4px 0; line-height: 1.5; }
.modern-product-desc p { margin: 0 0 0.35em; }
.modern-product-desc p:last-child { margin-bottom: 0; }
.modern-add-btn {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--primary); color: #fff; border: none;
    font-size: 20px; cursor: pointer; align-self: center; flex-shrink: 0;
}

/* Modal */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    display: flex; align-items: flex-end; justify-content: center;
    z-index: 200; padding: 0;
}
.modal-sheet {
    background: #fff; width: 100%; max-width: 480px;
    border-radius: 24px 24px 0 0; padding: 24px;
    max-height: 85vh; overflow-y: auto;
    animation: slideUp 0.3s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.modal-sheet h3 { font-size: 20px; margin-bottom: 8px; }
.modal-sheet .close-btn {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    border: none; background: #f1f5f9; cursor: pointer; font-size: 18px;
}
.allergen-warnings { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }
.allergen-warn {
    font-size: 11px; font-weight: 600; padding: 4px 10px;
    border-radius: 6px; background: rgba(181, 133, 52, 0.12); color: #b58534;
    border: 1px solid rgba(181, 133, 52, 0.35);
}

.review-form .form-group { margin-bottom: 14px; }
.review-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.review-form input, .review-form textarea {
    width: 100%; padding: 12px; border: 1px solid var(--border);
    border-radius: 12px; font-family: inherit; font-size: 14px;
}
.star-picker { display: flex; gap: 8px; font-size: 28px; cursor: pointer; line-height: 1; }
.star-picker span {
    color: #cbd5e1;
    transition: color 0.15s ease, transform 0.15s ease;
    user-select: none;
}
.star-picker span.active,
.star-picker span.is-hover {
    color: #f59e0b;
}
.star-picker.is-invalid span { color: #cbd5e1; }
.star-picker.is-invalid span.active { color: #f59e0b; }
.review-required { color: #ef4444; font-weight: 700; }
.star-picker-error {
    margin: 8px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: #ef4444;
}
.star-picker-error.hidden { display: none; }
.btn-submit {
    width: 100%; padding: 14px; border: none; border-radius: 12px;
    background: #000; color: #fff; font-weight: 600;
    font-size: 15px; cursor: pointer; margin-top: 8px;
}
.btn-submit:hover { background: #1a1a1a; }
.btn-submit:active { background: #333; }

.review-google-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0 12px;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.review-google-divider::before,
.review-google-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}
.btn-google-review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #dadce0;
    border-radius: 12px;
    background: #fff;
    color: #202124;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-sizing: border-box;
}
.btn-google-review .google-brand-icon {
    width: 18px;
    height: 18px;
}
.btn-google-review--primary {
    background: #000;
    border-color: #000;
    color: #fff;
}
.review-success {
    text-align: center;
    padding: 8px 0 4px;
}
.review-success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}
.review-success h3 { margin: 0 0 8px; font-size: 20px; }
.review-success p { margin: 0 0 8px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.review-success-hint { margin-bottom: 20px !important; }
.review-success .btn-google-review { margin-bottom: 12px; }
.btn-review-close {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: #f1f5f9;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.back-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 0; color: var(--primary); font-weight: 600;
    font-size: 14px; border: none; background: none; cursor: pointer;
    margin-bottom: 12px; font-family: inherit;
}

@media (min-width: 481px) {
    .modal-overlay { align-items: center; padding: 20px; }
    .modal-sheet { border-radius: 24px; }
}

/* Theme 3 — Premium AR Dijital Menü */
.theme-premium-body { -webkit-font-smoothing: antialiased; }
.theme-premium .no-scrollbar::-webkit-scrollbar { display: none; }
.theme-premium .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.theme-premium .bottom-sheet {
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.theme-premium .bottom-sheet.open { transform: translateY(0); }
@keyframes rotateAR {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.theme-premium .ar-rotate { animation: rotateAR 12s linear infinite; }
.theme-premium .hidden { display: none !important; }
.theme-premium #ar-camera-modal.flex { display: flex !important; }
.theme-premium .premium-bottom-nav { z-index: 40; }
.theme-premium.has-bottom-nav main { padding-bottom: 5rem; }
.theme-premium .sheet-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,0.42);
    z-index: 55; opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}
.theme-premium .sheet-backdrop.open {
    opacity: 1; pointer-events: auto;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.theme-premium #detail-sheet { z-index: 60; max-height: 78vh; overflow-x: hidden; overflow-y: auto; background: #fff; display: flex; flex-direction: column; }
.theme-premium #detail-sheet.product-detail-sheet { width: 100%; max-width: var(--app-max, 640px); left: 0; right: 0; margin-left: auto; margin-right: auto; border-radius: 28px 28px 0 0; }
.theme-premium .product-sheet-image {
    overflow: hidden;
    background: #000;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: min(52vh, 420px);
    position: relative;
}
.theme-premium .product-sheet-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.theme-premium .product-route-img {
    width: 100%;
    aspect-ratio: var(--product-photo-aspect);
    height: auto;
    object-fit: contain;
    display: block;
    background: #f4f4f5;
}
.theme-premium .product-card-media {
    aspect-ratio: var(--product-photo-aspect);
    overflow: hidden;
}
.theme-premium .product-card-media img {
    object-fit: contain;
}
@media (min-width: 640px) {
    .theme-premium #detail-sheet.product-detail-sheet {
        left: 50%;
        right: auto;
        margin: 0;
        transform: translateX(-50%) translateY(100%);
        width: min(100%, var(--app-max, 640px));
        max-width: var(--app-max, 640px);
        max-height: min(72vh, 520px);
    }
    .theme-premium #detail-sheet.product-detail-sheet.open {
        transform: translateX(-50%) translateY(0);
    }
    .theme-premium .product-sheet-image {
        max-height: min(38vh, 340px);
    }
    .theme-premium .product-sheet-image img {
        max-height: none;
    }
}
.theme-premium .hero-dot {
    width: 6px; height: 6px; border-radius: 999px;
    background: rgba(255,255,255,0.35);
    border: none; cursor: pointer; padding: 0;
    transition: all 0.25s;
}
.theme-premium .hero-dot.active { width: 20px; background: var(--primary); }
.theme-premium[data-color-mode="light"] .hero-dot { background: rgba(255,255,255,0.4); }
.theme-premium[data-color-mode="light"] .hero-dot.active { background: var(--primary); }

/* Premium — Menü Görünümü ayarları (--primary, --radius) */
.theme-premium .pm-accent-text { color: var(--primary) !important; }
.theme-premium .pm-accent-bg { background-color: var(--primary) !important; }
.theme-premium .pm-accent-bg-soft { background-color: color-mix(in srgb, var(--primary) 12%, transparent) !important; }
.theme-premium .pm-accent-border { border-color: color-mix(in srgb, var(--primary) 50%, transparent) !important; }
.theme-premium .pm-accent-border-soft { border-color: color-mix(in srgb, var(--primary) 30%, transparent) !important; }
.theme-premium .pm-accent-line { background-color: var(--primary) !important; box-shadow: 0 0 15px color-mix(in srgb, var(--primary) 65%, transparent); }
.theme-premium .pm-accent-badge {
    color: var(--primary) !important;
    background-color: color-mix(in srgb, var(--primary) 25%, transparent) !important;
    border-color: color-mix(in srgb, var(--primary) 40%, transparent) !important;
}
.theme-premium .pm-accent-btn {
    background-color: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 10px 25px color-mix(in srgb, var(--primary) 30%, transparent);
}
.theme-premium .pm-accent-btn:hover { filter: brightness(1.08); }
.theme-premium .pm-accent-kcal {
    color: var(--primary) !important;
    background-color: color-mix(in srgb, var(--primary) 12%, transparent) !important;
}
.theme-premium .hover\:pm-accent-text:hover { color: var(--primary) !important; }
.theme-premium .group:hover .group-hover\:pm-accent-text { color: var(--primary) !important; }
.theme-premium .group:hover .group-hover\:pm-accent-border { border-color: color-mix(in srgb, var(--primary) 50%, transparent) !important; }
.theme-premium .hover\:pm-accent-border-soft:hover { border-color: color-mix(in srgb, var(--primary) 30%, transparent) !important; }
.theme-premium .focus\:pm-accent-border:focus { border-color: color-mix(in srgb, var(--primary) 50%, transparent) !important; outline: none; }
.theme-premium input[type=range].pm-accent-range { accent-color: var(--primary); }
.theme-premium .pm-radius-hero { border-radius: var(--radius); }
.theme-premium .pm-radius-card { border-radius: var(--radius); }
.theme-premium .pm-product-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.theme-premium .pm-product-grid {
    display: grid;
    gap: 12px;
}
.theme-premium .pm-product-grid--1 {
    grid-template-columns: minmax(0, 1fr);
}
.theme-premium .pm-product-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.theme-premium .product-card img {
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 0;
    object-fit: contain;
}
.theme-premium .pm-route-back { display: inline-flex; align-items: center; font-size: 13px; font-weight: 700; text-decoration: none; margin-bottom: 8px; }

a.cat-card,
a.product-card-link,
a.modern-product-link { text-decoration: none; color: inherit; display: block; }
a.sekiz-subcat-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}
a.modern-product-link { display: flex; align-items: center; gap: 12px; }
.product-page-hero {
    width: 100%;
    aspect-ratio: var(--product-photo-aspect);
    height: auto;
    object-fit: contain;
    border-radius: var(--radius, 16px);
    background: #f1f5f9;
}
