/* MenugGo - Digital Menu Styles */

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

:root {
    --bg: #f5f5f5;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-100: #f7f7f7;
    --gray-200: #e8e8e8;
    --gray-300: #d1d1d1;
    --gray-400: #999;
    --gray-500: #666;
    --gray-600: #444;
    --gold: #c4a35a;
    --theme: #1a1a1a;
    --theme-soft: rgba(26, 26, 26, 0.1);
    --theme-soft-2: rgba(26, 26, 26, 0.18);
    --theme-rgb: 26, 26, 26;
    --page-bg: #f5f5f5;
    --menu-surface: #ffffff;
    --menu-card: #ffffff;
    --menu-text: #1a1a1a;
    --menu-muted: #666666;
    --menu-border: #e8e8e8;
    --sidebar-bg: #1a1a1a;
    --sidebar-text: #ffffff;
    --cream: #f9f7f2;
    --radius: 16px;
    --radius-sm: 12px;
    --radius-lg: 24px;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --max-width: 430px;
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-sans);
    background: var(--page-bg, var(--bg));
    color: var(--menu-text, var(--black));
    min-height: 100vh;
    line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* App container */
.app {
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--menu-surface, var(--white));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    min-height: 100vh;
    position: relative;
}

.site-footer {
    max-width: var(--max-width);
    margin: 8px auto 0;
    padding: 16px 20px 20px;
    text-align: center;
    font-size: 12px;
    color: var(--menu-muted, var(--gray-500));
    line-height: 1.6;
    border-top: 1px solid var(--menu-border, var(--gray-200));
}

.app .site-footer {
    max-width: none;
    margin: 0;
}

/* Site banner — restoran adı altı */
.site-banner {
    padding: 0 16px 12px;
    background: var(--menu-surface, var(--white));
}

.site-banner[hidden] {
    display: none !important;
}

.site-banner__frame {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--gray-100);
    box-shadow: var(--shadow);
}

.site-banner__link {
    display: block;
    line-height: 0;
}

.site-banner__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.site-banner__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.site-banner__close:hover {
    background: rgba(0, 0, 0, 0.75);
}

/* Promo pop-up */
.promo-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.promo-popup-overlay.open {
    opacity: 1;
    visibility: visible;
}

.promo-popup {
    position: relative;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: scale(0.94);
    transition: transform 0.25s ease;
}

.promo-popup-overlay.open .promo-popup {
    transform: scale(1);
}

.promo-popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.promo-popup__close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.promo-popup__content {
    line-height: 0;
}

.promo-popup__image,
.promo-popup__image-link {
    display: block;
    width: 100%;
}

.promo-popup__image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    background: var(--gray-100);
}

.promo-popup__video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.promo-popup__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.promo-popup__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Entry screen (pre-menu landing) */
.menu-root--hidden {
    display: none !important;
}

body.has-entry-screen {
    overflow: hidden;
}

body.menu-entered {
    overflow: auto;
}

.entry-screen {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    justify-content: center;
    background: #0a0a0a;
}

.entry-screen[hidden] {
    display: none !important;
}

.entry-screen__video {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.entry-screen__image,
.entry-screen__color {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.entry-screen__image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.entry-screen__video--youtube,
.entry-screen__video--file {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.entry-screen__video--youtube.is-loading,
.entry-screen__video--file.is-loading {
    opacity: 0 !important;
}

.entry-screen__video--youtube.is-visible,
.entry-screen__video--file.is-visible {
    opacity: 1;
}

.entry-screen__video--file {
    background: #0a0a0a;
}

.entry-screen__video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    max-width: none;
    border: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.entry-screen__video-el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    border: 0;
}

.entry-screen__video-shield {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: auto;
    touch-action: none;
    -webkit-touch-callout: none;
    user-select: none;
    background: transparent;
    cursor: default;
}

.entry-screen__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.15) 35%,
        rgba(0, 0, 0, 0.45) 100%
    );
    pointer-events: none;
}

.entry-screen__content {
    --entry-safe-bottom: env(safe-area-inset-bottom, 0px);
    --entry-safe-top: env(safe-area-inset-top, 0px);
    --entry-bottom-offset: clamp(0.75rem, 3.2svh, 1.75rem);
    --entry-side-top: clamp(4.5rem, 12svh, 6rem);

    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: 0 0 calc(var(--entry-safe-bottom) + var(--entry-bottom-offset));
}

.entry-screen__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    min-height: 88px;
    color: var(--white);
}

.entry-screen__nav-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: background 0.2s;
}

.entry-screen__nav-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.entry-screen__nav-btn svg {
    width: 20px;
    height: 20px;
}

.entry-screen__nav-btn--ai {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.entry-screen__nav-spacer {
    width: 36px;
    height: 36px;
}

.entry-screen__title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.entry-screen__side {
    position: absolute;
    top: calc(var(--entry-side-top, 5.5rem) + var(--entry-safe-top, 0px));
    right: clamp(12px, 4vw, 16px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: clamp(8px, 1.4svh, 12px);
    z-index: 3;
}

.entry-screen__social-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.entry-screen__social-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    min-width: 168px;
}

.entry-screen__social-list[hidden] {
    display: none !important;
}

.entry-screen__social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.entry-screen__social-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.entry-screen__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.entry-screen__social-icon svg {
    width: 18px;
    height: 18px;
}

.entry-screen__social-icon--instagram { color: #E4405F; }
.entry-screen__social-icon--facebook { color: #1877F2; }
.entry-screen__social-icon--twitter { color: #000; }
.entry-screen__social-icon--tiktok { color: #000; }
.entry-screen__social-icon--maps { color: #34A853; }

.entry-screen__social-label {
    white-space: nowrap;
}

.entry-screen__pill--social {
    text-transform: none;
    letter-spacing: 0.02em;
}

.entry-screen__pill {
    min-width: clamp(64px, 18vw, 72px);
    padding: clamp(8px, 1.4svh, 10px) clamp(12px, 3.5vw, 14px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s, border-color 0.2s;
}

.entry-screen__pill:hover,
.entry-screen__pill[aria-expanded="true"] {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--white);
}

.entry-panel {
    position: absolute;
    top: 88px;
    right: 16px;
    width: min(280px, calc(100% - 32px));
    padding: 18px 18px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    z-index: 4;
}

.entry-panel[hidden] {
    display: none !important;
}

.entry-panel--social {
    top: 170px;
}

.entry-panel__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.entry-panel__close:hover {
    background: var(--gray-200);
}

.entry-panel__title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 12px;
    padding-right: 24px;
}

.entry-panel__list {
    display: grid;
    gap: 10px;
}

.entry-panel__row dt {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.entry-panel__row dd {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    word-break: break-word;
}

.entry-panel__note {
    margin-top: 10px;
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.5;
}

.entry-panel__social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.entry-panel__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    box-shadow: var(--shadow);
    transition: border-color 0.2s, transform 0.2s;
}

.entry-panel__social-link:hover {
    border-color: var(--theme);
    transform: translateY(-1px);
}

.entry-screen__bottom {
    margin-top: auto;
    margin-bottom: 0;
    padding: 0 clamp(16px, 5vw, 20px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(12px, 2.2svh, 18px);
    width: 100%;
    box-sizing: border-box;
}

.entry-screen__review {
    display: inline-flex;
    align-items: center;
    padding: clamp(7px, 1.2svh, 9px) clamp(12px, 3.5vw, 14px);
    border-radius: 999px;
    background: #1f5f3f;
    color: var(--white);
    font-size: clamp(9px, 2.6vw, 10px);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s, background 0.2s;
}

.entry-screen__review:hover {
    background: #267a50;
    transform: translateY(-1px);
}

.entry-screen__enter {
    align-self: stretch;
    padding: clamp(14px, 2.4svh, 16px) clamp(18px, 5vw, 24px);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--white);
    font-size: clamp(12px, 3.4vw, 14px);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background 0.2s, border-color 0.2s;
}

.entry-screen__enter:hover {
    background: rgba(0, 0, 0, 0.38);
    border-color: var(--white);
}

/* Contact panel (collapsible) */
.contact-panel {
    border-top: 1px solid var(--menu-border, var(--gray-200));
    background: color-mix(in srgb, var(--menu-surface, #ffffff) 92%, var(--theme) 8%);
}

.contact-panel__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme);
    text-align: left;
    transition: background 0.2s;
}

.contact-panel__toggle:hover { background: var(--theme-soft); }

.contact-panel__title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-panel__title svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.contact-panel__chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--menu-card, var(--white));
    border: 1px solid var(--menu-border, var(--gray-200));
    transition: transform 0.25s ease;
}

.contact-panel__chevron svg {
    width: 16px;
    height: 16px;
    color: var(--menu-muted, var(--gray-500));
}

.contact-panel.is-open .contact-panel__chevron {
    transform: rotate(180deg);
}

.contact-panel__body {
    padding: 0 20px 20px;
}

.contact-panel__body[hidden] {
    display: none !important;
}

.contact-panel__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.contact-panel__link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    background: var(--menu-card, var(--white));
    border: 1px solid var(--menu-border, var(--gray-200));
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-panel__link:hover {
    border-color: var(--theme);
    box-shadow: 0 2px 8px var(--theme-soft);
}

.contact-panel__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    background: var(--menu-card, var(--white));
    border: 1px solid var(--menu-border, var(--gray-200));
    border-radius: var(--radius-sm);
}

.contact-panel__label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--menu-muted, var(--gray-400));
}

.contact-panel__value {
    font-size: 14px;
    font-weight: 600;
    color: var(--menu-text, var(--gray-600));
    line-height: 1.4;
}

.contact-panel__link .contact-panel__value {
    color: var(--theme);
}

.contact-panel__social {
    margin-bottom: 12px;
}

.contact-panel__social-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--menu-muted, var(--gray-400));
    margin-bottom: 8px;
}

.contact-panel__social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-panel__social-links a {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--theme);
    background: var(--menu-card, var(--white));
    border: 1px solid var(--menu-border, var(--gray-200));
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.contact-panel__social-links a:hover {
    background: var(--theme-soft);
    border-color: var(--theme);
}

.contact-panel__note,
.contact-panel__empty {
    font-size: 12px;
    color: var(--menu-muted, var(--gray-500));
    line-height: 1.55;
    padding: 10px 12px;
    background: var(--menu-card, var(--white));
    border-radius: var(--radius-sm);
    border: 1px dashed var(--menu-border, var(--gray-200));
}

.feedback-panel__body {
    padding-bottom: 24px;
}

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

.feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.feedback-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .58);
    backdrop-filter: blur(4px);
}

.feedback-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    max-height: min(88vh, 760px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--cream);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.feedback-modal__dialog.is-loading .feedback-panel__body {
    opacity: 0.35;
}

.feedback-modal__loading {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 5;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background: rgba(249, 247, 242, 0.94);
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
}

.feedback-modal__dialog.is-loading .feedback-modal__loading {
    display: flex;
}

.feedback-modal__loading-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--theme);
    border-radius: 50%;
    animation: feedbackSpin 0.8s linear infinite;
}

@keyframes feedbackSpin {
    to { transform: rotate(360deg); }
}

.feedback-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
    position: relative;
    z-index: 6;
}

.feedback-modal__head h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
}

.feedback-modal__close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    background: var(--white);
    color: var(--gray-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    pointer-events: auto;
}

.feedback-modal__close:hover {
    border-color: var(--theme);
    color: var(--theme);
    background: var(--theme-soft);
}

.feedback-modal__close svg {
    width: 18px;
    height: 18px;
}

.feedback-modal .feedback-panel__body {
    overflow-y: auto;
    padding: 18px 20px 22px;
    flex: 1 1 auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

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

.feedback-panel__intro {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.55;
    margin: 0 0 16px;
}

.feedback-form__questions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.feedback-question__label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.feedback-question__req {
    color: #c0392b;
    margin-left: 2px;
}

.feedback-rating {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feedback-rating__btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-500);
    cursor: pointer;
    transition: all .15s ease;
}

.feedback-rating__btn:hover,
.feedback-rating__btn.is-selected {
    border-color: var(--theme);
    background: var(--theme-soft);
    color: var(--theme);
}

.feedback-choices {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feedback-choice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    cursor: pointer;
    font-size: 13px;
    color: var(--gray-600);
}

.feedback-choice:has(input:checked) {
    border-color: var(--theme);
    background: var(--theme-soft);
}

.feedback-choice input {
    accent-color: var(--theme);
}

.feedback-textarea {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-size: 13px;
    font-family: inherit;
    resize: vertical;
    min-height: 64px;
    background: var(--white);
    color: var(--gray-600);
}

.feedback-textarea:focus {
    outline: none;
    border-color: var(--theme);
    box-shadow: 0 0 0 3px var(--theme-soft);
}

.feedback-extra {
    margin-bottom: 14px;
}

.feedback-upload {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.feedback-upload input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    cursor: pointer;
    font-size: 0;
}

.feedback-upload__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
}

.feedback-upload__btn:hover {
    border-color: var(--theme);
    color: var(--theme);
}

.feedback-upload__name {
    font-size: 12px;
    color: var(--gray-500);
}

.feedback-form__error {
    font-size: 12px;
    color: #c0392b;
    margin: 0 0 10px;
    padding: 8px 10px;
    background: #fdecea;
    border-radius: var(--radius-sm);
}

.feedback-submit {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--theme);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .15s ease;
}

.feedback-submit:hover:not(:disabled) {
    opacity: .92;
}

.feedback-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.feedback-success {
    text-align: center;
    padding: 28px 12px;
    color: var(--theme);
}

.feedback-success[hidden],
.feedback-form[hidden],
.feedback-panel__intro[hidden] {
    display: none !important;
}

.feedback-success svg {
    margin-bottom: 10px;
}

.feedback-success p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
}

.site-footer-contact,
.site-footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    margin-bottom: 8px;
}

.site-footer a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 600;
}

.site-footer a:hover { color: var(--black); text-decoration: underline; }

.site-footer-text {
    margin: 0;
    font-size: 12px;
    color: var(--menu-muted, var(--gray-500));
    line-height: 1.6;
}

/* Top nav */
.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    min-height: 88px;
    position: sticky;
    top: 0;
    background: var(--menu-surface, var(--white));
    z-index: 100;
}

.nav-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}
.nav-btn:hover { background: var(--gray-100); }
.nav-btn svg { width: 20px; height: 20px; }

.header-brand {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.header-brand__logo {
    display: block;
    max-width: min(380px, calc(100vw - 100px));
    width: auto;
    height: auto;
    object-fit: contain;
}

.header-brand__logo.is-horizontal {
    max-height: var(--header-logo-height, 140px);
    min-height: 56px;
}

.header-brand__logo.is-circle {
    width: var(--header-logo-size, 60px);
    height: var(--header-logo-size, 60px);
    max-width: var(--header-logo-size, 60px);
    max-height: var(--header-logo-size, 60px);
    min-height: var(--header-logo-size, 60px);
    object-fit: cover;
    border-radius: 50%;
}

/* Eski sınıf uyumluluğu */
.header-brand__logo.is-square {
    width: var(--header-logo-size, 60px);
    height: var(--header-logo-size, 60px);
    max-width: var(--header-logo-size, 60px);
    max-height: var(--header-logo-size, 60px);
    min-height: var(--header-logo-size, 60px);
    object-fit: cover;
    border-radius: 50%;
}

.header-brand--entry .header-brand__logo {
    filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.45));
}

.restaurant-name {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--theme);
}

.ai-btn {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ai-btn svg { width: 16px; height: 16px; color: var(--theme); }

/* Category grid (home) */
.category-grid {
    padding: 8px 16px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.2s;
}
.category-card:hover { transform: scale(1.02); }
.category-card.full-width {
    grid-column: 1 / -1;
    aspect-ratio: 2.2 / 1;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.category-card h2 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.category-card p {
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    line-height: 1.4;
    max-width: 90%;
}

/* Klasik düzende eşi olmayan yarım kart: tam satır kapla, boşluk kalmasın */
.category-card--solo { aspect-ratio: 2.2 / 1; }

.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--black);
    color: var(--white);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

/* Şekilli kategori kartları (kare / daire / altıgen / elmas) */
.category-grid--shape {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
    align-items: start;
}

.category-shape-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.category-shape-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-200);
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}
.category-shape-card:hover .category-shape-card__media { transform: scale(1.03); }

.category-shape-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-shape-card__badge {
    top: 10px;
    left: 10px;
}

.category-shape-card__label {
    display: block;
    text-align: center;
    padding: 0 4px;
}
.category-shape-card__label h2 {
    color: var(--menu-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
}
.category-shape-card__label p {
    color: var(--menu-muted);
    font-size: 11px;
    line-height: 1.4;
    margin-top: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Kare */
.category-grid--square .category-shape-card__media { border-radius: 6px; }

/* Yumuşak kare (squircle) */
.category-grid--rounded .category-shape-card__media { border-radius: 28px; }

/* Daire */
.category-grid--circle { grid-template-columns: 1fr 1fr; }
.category-grid--circle .category-shape-card__media { border-radius: 50%; }
.category-grid--circle .category-shape-card__badge {
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
}

/* Altıgen */
.category-grid--hexagon .category-shape-card__media {
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    box-shadow: none;
}
.category-grid--hexagon .category-shape-card__badge {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
}

/* Oval (dikey elips) */
.category-grid--oval .category-shape-card__media {
    aspect-ratio: 4 / 5;
    border-radius: 50%;
}
.category-grid--oval .category-shape-card__badge {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
}

/* Kemer (üstü yuvarlak kapı formu) */
.category-grid--arch .category-shape-card__media {
    aspect-ratio: 4 / 5;
    border-radius: 999px 999px 16px 16px;
}

/* Beşgen */
.category-grid--pentagon .category-shape-card__media {
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    box-shadow: none;
}
.category-grid--pentagon .category-shape-card__badge {
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
}

/* Sekizgen */
.category-grid--octagon .category-shape-card__media {
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    box-shadow: none;
}
.category-grid--octagon .category-shape-card__badge {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
}

/* Yaprak (çapraz yuvarlatılmış köşeler) */
.category-grid--leaf .category-shape-card__media {
    border-radius: 0 46% 0 46%;
}

/* Organik (blob) */
.category-grid--blob .category-shape-card__media {
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
}
.category-grid--blob .category-shape-card:nth-child(2n) .category-shape-card__media {
    border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%;
}

/* Yastık (çok yumuşak kare) */
.category-grid--pillow .category-shape-card__media { border-radius: 38%; }

/* Damla (tek köşesi sivri) */
.category-grid--drop .category-shape-card__media { border-radius: 0 50% 50% 50%; }
.category-grid--drop .category-shape-card__badge {
    top: 10%;
    left: 55%;
    border-radius: 999px;
}

/* Kalkan (altı yuvarlak sivri) */
.category-grid--shield .category-shape-card__media {
    border-radius: 14px 14px 50% 50% / 14px 14px 62% 62%;
}

/* Yamuk (paralelkenar) */
.category-grid--slant .category-shape-card__media {
    aspect-ratio: 4 / 3;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    box-shadow: none;
}
.category-grid--slant .category-shape-card__badge { left: 18%; }

/* Yıldız (5 köşeli) */
.category-grid--star .category-shape-card__media {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    box-shadow: none;
}
.category-grid--star .category-shape-card__badge {
    top: 38%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
}

/* Rozet damga (dişli mühür) */
.category-grid--seal .category-shape-card__media {
    clip-path: polygon(100% 50%, 91.5% 61.1%, 93.3% 75%, 80.4% 80.4%, 75% 93.3%, 61.1% 91.5%, 50% 100%, 38.9% 91.5%, 25% 93.3%, 19.6% 80.4%, 6.7% 75%, 8.5% 61.1%, 0% 50%, 8.5% 38.9%, 6.7% 25%, 19.6% 19.6%, 25% 6.7%, 38.9% 8.5%, 50% 0%, 61.1% 8.5%, 75% 6.7%, 80.4% 19.6%, 93.3% 25%, 91.5% 38.9%);
    box-shadow: none;
}
.category-grid--seal .category-shape-card__badge {
    top: 14%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
}

/* Polaroid çerçeve */
.category-grid--polaroid .category-shape-card__media {
    border-radius: 4px;
    background: #fff;
    padding: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.category-grid--polaroid .category-shape-card__media img { border-radius: 2px; }
.category-grid--polaroid .category-shape-card__badge { top: 14px; left: 14px; }

/* Kapsül (yatay hap) */
.category-grid--capsule .category-shape-card__media {
    aspect-ratio: 3 / 2;
    border-radius: 999px;
}

/* Kesik köşe */
.category-grid--chamfer .category-shape-card__media {
    clip-path: polygon(12% 0%, 88% 0%, 100% 12%, 100% 88%, 88% 100%, 12% 100%, 0% 88%, 0% 12%);
    box-shadow: none;
}

/* Yatay altıgen (düz tepeli) */
.category-grid--hexagon-flat .category-shape-card__media {
    aspect-ratio: 4 / 3.4;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    box-shadow: none;
}
.category-grid--hexagon-flat .category-shape-card__badge {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
}

/* Üçgen */
.category-grid--triangle .category-shape-card__media {
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    box-shadow: none;
}
.category-grid--triangle .category-shape-card__badge {
    top: 42%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
}

/* Ters üçgen */
.category-grid--triangle-down .category-shape-card__media {
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    box-shadow: none;
}
.category-grid--triangle-down .category-shape-card__badge {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
}

/* Etiket ok (sağa sivri) */
.category-grid--tag .category-shape-card__media {
    aspect-ratio: 4 / 3;
    clip-path: polygon(0% 0%, 78% 0%, 100% 50%, 78% 100%, 0% 100%);
    box-shadow: none;
}

/* Flama (altı çentikli bayrak) */
.category-grid--banner .category-shape-card__media {
    aspect-ratio: 4 / 4.6;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 86%, 0% 100%);
    box-shadow: none;
}

/* Parıltı (4 köşeli yıldız) */
.category-grid--sparkle .category-shape-card__media {
    clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
    box-shadow: none;
}
.category-grid--sparkle .category-shape-card__badge {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 999px;
}

/* Güneş (8 köşeli patlama) */
.category-grid--burst .category-shape-card__media {
    clip-path: polygon(100% 50%, 79.6% 62.3%, 85.4% 85.4%, 62.3% 79.6%, 50% 100%, 37.7% 79.6%, 14.6% 85.4%, 20.4% 62.3%, 0% 50%, 20.4% 37.7%, 14.6% 14.6%, 37.7% 20.4%, 50% 0%, 62.3% 20.4%, 85.4% 14.6%, 79.6% 37.7%);
    box-shadow: none;
}
.category-grid--burst .category-shape-card__badge {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
}

/* Kalp */
.category-grid--heart .category-shape-card__media {
    clip-path: polygon(50% 95%, 20% 65%, 6% 45%, 6% 28%, 16% 14%, 32% 10%, 44% 16%, 50% 26%, 56% 16%, 68% 10%, 84% 14%, 94% 28%, 94% 45%, 80% 65%);
    box-shadow: none;
}
.category-grid--heart .category-shape-card__badge {
    top: 24%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
}

/* Yonca (4 yapraklı) */
.category-grid--clover .category-shape-card__media {
    -webkit-mask:
        radial-gradient(closest-side circle at 30% 30%, #000 99%, transparent),
        radial-gradient(closest-side circle at 70% 30%, #000 99%, transparent),
        radial-gradient(closest-side circle at 30% 70%, #000 99%, transparent),
        radial-gradient(closest-side circle at 70% 70%, #000 99%, transparent);
    mask:
        radial-gradient(closest-side circle at 30% 30%, #000 99%, transparent),
        radial-gradient(closest-side circle at 70% 30%, #000 99%, transparent),
        radial-gradient(closest-side circle at 30% 70%, #000 99%, transparent),
        radial-gradient(closest-side circle at 70% 70%, #000 99%, transparent);
    box-shadow: none;
}
.category-grid--clover .category-shape-card__badge {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 999px;
}

/* Elmas (döndürülmüş kare) — scale(.7): köşegen kutuya sığsın, başlığı örtmesin */
.category-grid--diamond { gap: 20px 12px; }
.category-grid--diamond .category-shape-card__media {
    border-radius: 18%;
    transform: rotate(45deg) scale(0.7);
    box-shadow: none;
}
.category-grid--diamond .category-shape-card__media img {
    transform: rotate(-45deg) scale(1.45);
}
.category-grid--diamond .category-shape-card:hover .category-shape-card__media {
    transform: rotate(45deg) scale(0.73);
}
.category-grid--diamond .category-shape-card__badge {
    transform: rotate(-45deg);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    border-radius: 999px;
}

.media-icons {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}
.media-icons span {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Category tabs */
.category-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 0 16px;
    border-bottom: 1px solid var(--menu-border, var(--gray-200));
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.category-tabs::-webkit-scrollbar { display: none; }

.category-tab {
    flex-shrink: 0;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--menu-muted, var(--gray-500));
    white-space: nowrap;
    position: relative;
    transition: color 0.2s;
}
.category-tab.active {
    color: var(--theme);
    font-weight: 500;
}
.category-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--theme);
}

/* Featured carousel */
.featured-section {
    padding: 16px;
    overflow-x: auto;
    display: flex;
    gap: 12px;
    scrollbar-width: none;
}
.featured-section::-webkit-scrollbar { display: none; }

.featured-card {
    flex-shrink: 0;
    width: 140px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
}
.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-card .info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.featured-card h3 {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}
.featured-card .price {
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    margin-top: 2px;
}

/* İndirim etiketi (ürün kartı + öne çıkanlar) */
.discount-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #e11d48;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 3px 8px;
    border-radius: 999px;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.featured-card .discount-badge { top: 8px; left: 8px; font-size: 11px; }

/* Ürün listesinde ad yanında indirim çipi */
.discount-chip {
    display: inline-block;
    vertical-align: middle;
    background: #e11d48;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 999px;
    margin-left: 4px;
    white-space: nowrap;
    transform: translateY(-1px);
}

/* Şekilli öne çıkan kartlarda etiket üst-ortada dursun (köşeler kırpılıyor) */
[class*="featured-section--shape-"] .featured-card .discount-badge {
    left: 50%;
    transform: translateX(-50%);
    top: 12%;
}
.featured-section--shape-square .featured-card .discount-badge,
.featured-section--shape-arch .featured-card .discount-badge,
.featured-section--shape-polaroid .featured-card .discount-badge {
    left: 8px;
    transform: none;
    top: 8px;
}
.featured-section--shape-polaroid .featured-card .discount-badge { top: 12px; left: 12px; }

/* Öne çıkanlar kart şekilleri (Ayarlar → Menü Görünümü) */
.featured-section--shape-square .featured-card { border-radius: 4px; }
.featured-section--shape-circle .featured-card { aspect-ratio: 1; border-radius: 50%; }
.featured-section--shape-oval .featured-card { border-radius: 50%; }
.featured-section--shape-arch .featured-card { border-radius: 999px 999px 12px 12px; }
.featured-section--shape-capsule .featured-card { border-radius: 999px; }
.featured-section--shape-pillow .featured-card { border-radius: 32%; }
.featured-section--shape-leaf .featured-card { border-radius: 0 40% 0 40%; }
.featured-section--shape-blob .featured-card { border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%; }
.featured-section--shape-blob .featured-card:nth-child(2n) { border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%; }
.featured-section--shape-drop .featured-card { border-radius: 0 50% 50% 50%; }
.featured-section--shape-shield .featured-card { border-radius: 10px 10px 50% 50% / 10px 10px 40% 40%; }
.featured-section--shape-chamfer .featured-card { clip-path: polygon(12% 0%, 88% 0%, 100% 9%, 100% 91%, 88% 100%, 12% 100%, 0% 91%, 0% 9%); }
.featured-section--shape-hexagon .featured-card { clip-path: polygon(50% 0%, 93% 20%, 93% 80%, 50% 100%, 7% 80%, 7% 20%); }
.featured-section--shape-hexagon-flat .featured-card { aspect-ratio: 1; clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); }
.featured-section--shape-pentagon .featured-card { clip-path: polygon(50% 0%, 100% 30%, 82% 100%, 18% 100%, 0% 30%); }
.featured-section--shape-octagon .featured-card { clip-path: polygon(30% 0%, 70% 0%, 100% 22%, 100% 78%, 70% 100%, 30% 100%, 0% 78%, 0% 22%); }
.featured-section--shape-diamond .featured-card { aspect-ratio: 1; clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
.featured-section--shape-slant .featured-card { clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%); }
.featured-section--shape-tag .featured-card { aspect-ratio: 1; clip-path: polygon(0% 0%, 78% 0%, 100% 50%, 78% 100%, 0% 100%); }
.featured-section--shape-banner .featured-card { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 90%, 0% 100%); }
.featured-section--shape-triangle .featured-card { clip-path: polygon(50% 0%, 100% 100%, 0% 100%); }
.featured-section--shape-triangle-down .featured-card { clip-path: polygon(0% 0%, 100% 0%, 50% 100%); }
.featured-section--shape-star .featured-card { aspect-ratio: 1; clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.featured-section--shape-seal .featured-card { aspect-ratio: 1; clip-path: polygon(100% 50%, 91.5% 61.1%, 93.3% 75%, 80.4% 80.4%, 75% 93.3%, 61.1% 91.5%, 50% 100%, 38.9% 91.5%, 25% 93.3%, 19.6% 80.4%, 6.7% 75%, 8.5% 61.1%, 0% 50%, 8.5% 38.9%, 6.7% 25%, 19.6% 19.6%, 25% 6.7%, 38.9% 8.5%, 50% 0%, 61.1% 8.5%, 75% 6.7%, 80.4% 19.6%, 93.3% 25%, 91.5% 38.9%); }
.featured-section--shape-sparkle .featured-card { aspect-ratio: 1; clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%); }
.featured-section--shape-burst .featured-card { aspect-ratio: 1; clip-path: polygon(100% 50%, 79.6% 62.3%, 85.4% 85.4%, 62.3% 79.6%, 50% 100%, 37.7% 79.6%, 14.6% 85.4%, 20.4% 62.3%, 0% 50%, 20.4% 37.7%, 14.6% 14.6%, 37.7% 20.4%, 50% 0%, 62.3% 20.4%, 85.4% 14.6%, 79.6% 37.7%); }
.featured-section--shape-heart .featured-card { aspect-ratio: 1; clip-path: polygon(50% 95%, 20% 65%, 6% 45%, 6% 28%, 16% 14%, 32% 10%, 44% 16%, 50% 26%, 56% 16%, 68% 10%, 84% 14%, 94% 28%, 94% 45%, 80% 65%); }
.featured-section--shape-clover .featured-card {
    aspect-ratio: 1;
    -webkit-mask:
        radial-gradient(closest-side circle at 30% 30%, #000 99%, transparent),
        radial-gradient(closest-side circle at 70% 30%, #000 99%, transparent),
        radial-gradient(closest-side circle at 30% 70%, #000 99%, transparent),
        radial-gradient(closest-side circle at 70% 70%, #000 99%, transparent);
    mask:
        radial-gradient(closest-side circle at 30% 30%, #000 99%, transparent),
        radial-gradient(closest-side circle at 70% 30%, #000 99%, transparent),
        radial-gradient(closest-side circle at 30% 70%, #000 99%, transparent),
        radial-gradient(closest-side circle at 70% 70%, #000 99%, transparent);
}
.featured-section--shape-polaroid .featured-card {
    border-radius: 4px;
    background: #fff;
    padding: 6px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}
.featured-section--shape-polaroid .featured-card img { border-radius: 2px; }
.featured-section--shape-polaroid .featured-card .info { left: 6px; right: 6px; bottom: 6px; }

/* Altı kırpılan şekillerde yazı ortada kalsın diye info alanını yukarı çek */
.featured-section--shape-circle .featured-card .info,
.featured-section--shape-oval .featured-card .info,
.featured-section--shape-capsule .featured-card .info,
.featured-section--shape-pillow .featured-card .info,
.featured-section--shape-hexagon .featured-card .info,
.featured-section--shape-hexagon-flat .featured-card .info,
.featured-section--shape-pentagon .featured-card .info,
.featured-section--shape-octagon .featured-card .info,
.featured-section--shape-diamond .featured-card .info,
.featured-section--shape-leaf .featured-card .info,
.featured-section--shape-blob .featured-card .info,
.featured-section--shape-drop .featured-card .info,
.featured-section--shape-shield .featured-card .info,
.featured-section--shape-slant .featured-card .info,
.featured-section--shape-tag .featured-card .info,
.featured-section--shape-banner .featured-card .info,
.featured-section--shape-star .featured-card .info,
.featured-section--shape-sparkle .featured-card .info,
.featured-section--shape-burst .featured-card .info,
.featured-section--shape-heart .featured-card .info,
.featured-section--shape-seal .featured-card .info,
.featured-section--shape-clover .featured-card .info,
.featured-section--shape-triangle-down .featured-card .info {
    bottom: 50%;
    transform: translateY(50%);
    background: rgba(0,0,0,0.45);
    border-radius: 8px;
    left: 16%;
    right: 16%;
    padding: 8px;
    text-align: center;
}

/* Yıldız / parıltı gibi çok dar merkezli şekillerde rozeti daralt */
.featured-section--shape-star .featured-card .info,
.featured-section--shape-sparkle .featured-card .info {
    left: 24%;
    right: 24%;
    padding: 6px 4px;
}
.featured-section--shape-heart .featured-card .info {
    bottom: 58%;
    transform: translateY(50%);
}

/* Üçgen: yazı alt kenarda güvenli, ortala */
.featured-section--shape-triangle .featured-card .info {
    text-align: center;
    left: 10%;
    right: 10%;
}

/* Menu items list */
.menu-list {
    padding: 8px 16px 32px;
}

.menu-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: var(--menu-card, var(--white));
    color: var(--menu-text, var(--black));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 12px;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.menu-item:hover { box-shadow: var(--shadow-lg); }

.menu-item-content {
    flex: 1;
    min-width: 0;
}

.menu-item-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}
.menu-item-header h3 {
    font-size: 15px;
    font-weight: 600;
}
.menu-item-header .chevron {
    color: var(--gray-400);
    font-size: 12px;
}

.menu-item p {
    font-size: 13px;
    color: var(--menu-muted, var(--gray-500));
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-item .price {
    font-size: 14px;
    font-weight: 600;
    color: var(--theme);
}

.menu-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Ürün görseli konumu (Ayarlar → Menü Görünümü) */
.menu-list--img-left .menu-item { flex-direction: row-reverse; }
/* Dönüşümlü: 1. solda, 2. sağda, 3. solda... */
.menu-list--img-alternate .menu-item:nth-child(odd) { flex-direction: row-reverse; }
.menu-list--img-alternate .menu-item:nth-child(even) { flex-direction: row; }

/* İç menü ürün görseli şekilleri (Ayarlar → Menü Görünümü) */
.menu-list--shape-square .menu-item-image { border-radius: 4px; }
.menu-list--shape-circle .menu-item-image { border-radius: 50%; }
.menu-list--shape-pillow .menu-item-image { border-radius: 38%; }
.menu-list--shape-leaf .menu-item-image { border-radius: 0 46% 0 46%; }
.menu-list--shape-blob .menu-item-image { border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%; }
.menu-list--shape-blob .menu-item:nth-child(2n) .menu-item-image { border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%; }
.menu-list--shape-drop .menu-item-image { border-radius: 0 50% 50% 50%; }
.menu-list--shape-shield .menu-item-image { border-radius: 6px 6px 50% 50% / 6px 6px 62% 62%; }
.menu-list--shape-chamfer .menu-item-image { clip-path: polygon(12% 0%, 88% 0%, 100% 12%, 100% 88%, 88% 100%, 12% 100%, 0% 88%, 0% 12%); }
.menu-list--shape-hexagon .menu-item-image { clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%); }
.menu-list--shape-pentagon .menu-item-image { clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%); }
.menu-list--shape-octagon .menu-item-image { clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%); }
.menu-list--shape-star .menu-item-image { clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.menu-list--shape-seal .menu-item-image { clip-path: polygon(100% 50%, 91.5% 61.1%, 93.3% 75%, 80.4% 80.4%, 75% 93.3%, 61.1% 91.5%, 50% 100%, 38.9% 91.5%, 25% 93.3%, 19.6% 80.4%, 6.7% 75%, 8.5% 61.1%, 0% 50%, 8.5% 38.9%, 6.7% 25%, 19.6% 19.6%, 25% 6.7%, 38.9% 8.5%, 50% 0%, 61.1% 8.5%, 75% 6.7%, 80.4% 19.6%, 93.3% 25%, 91.5% 38.9%); }
.menu-list--shape-sparkle .menu-item-image { clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%); }
.menu-list--shape-burst .menu-item-image { clip-path: polygon(100% 50%, 79.6% 62.3%, 85.4% 85.4%, 62.3% 79.6%, 50% 100%, 37.7% 79.6%, 14.6% 85.4%, 20.4% 62.3%, 0% 50%, 20.4% 37.7%, 14.6% 14.6%, 37.7% 20.4%, 50% 0%, 62.3% 20.4%, 85.4% 14.6%, 79.6% 37.7%); }
.menu-list--shape-heart .menu-item-image { clip-path: polygon(50% 95%, 20% 65%, 6% 45%, 6% 28%, 16% 14%, 32% 10%, 44% 16%, 50% 26%, 56% 16%, 68% 10%, 84% 14%, 94% 28%, 94% 45%, 80% 65%); }
.menu-list--shape-clover .menu-item-image {
    -webkit-mask:
        radial-gradient(closest-side circle at 30% 30%, #000 99%, transparent),
        radial-gradient(closest-side circle at 70% 30%, #000 99%, transparent),
        radial-gradient(closest-side circle at 30% 70%, #000 99%, transparent),
        radial-gradient(closest-side circle at 70% 70%, #000 99%, transparent);
    mask:
        radial-gradient(closest-side circle at 30% 30%, #000 99%, transparent),
        radial-gradient(closest-side circle at 70% 30%, #000 99%, transparent),
        radial-gradient(closest-side circle at 30% 70%, #000 99%, transparent),
        radial-gradient(closest-side circle at 70% 70%, #000 99%, transparent);
}
.menu-list--shape-oval .menu-item-image { width: 80px; border-radius: 50%; }
.menu-list--shape-arch .menu-item-image { width: 82px; border-radius: 999px 999px 12px 12px; }
.menu-list--shape-capsule .menu-item-image { height: 68px; border-radius: 999px; align-self: center; }
.menu-list--shape-hexagon-flat .menu-item-image { clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); }
.menu-list--shape-slant .menu-item-image { height: 80px; clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%); align-self: center; }
.menu-list--shape-tag .menu-item-image { height: 80px; clip-path: polygon(0% 0%, 78% 0%, 100% 50%, 78% 100%, 0% 100%); align-self: center; }
.menu-list--shape-banner .menu-item-image { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 86%, 0% 100%); }
.menu-list--shape-triangle .menu-item-image { clip-path: polygon(50% 0%, 100% 100%, 0% 100%); }
.menu-list--shape-triangle-down .menu-item-image { clip-path: polygon(0% 0%, 100% 0%, 50% 100%); }
.menu-list--shape-diamond .menu-item-image { border-radius: 18%; transform: rotate(45deg) scale(0.7); }
.menu-list--shape-diamond .menu-item-image img { transform: rotate(-45deg) scale(1.45); }
.menu-list--shape-diamond .menu-item-image .media-badge { transform: rotate(-45deg); }
.menu-list--shape-polaroid .menu-item-image {
    border-radius: 3px;
    background: #fff;
    padding: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.menu-list--shape-polaroid .menu-item-image img { border-radius: 2px; }

.menu-item-image .media-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    gap: 4px;
}
.menu-item-image .media-badge span {
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Sidebar */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.sidebar-overlay.open { opacity: 1; visibility: visible; }

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    max-width: 320px;
    height: 100%;
    background: var(--sidebar-bg, var(--black));
    z-index: 201;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 24px 0;
}
.sidebar.open { transform: translateX(0); }

.sidebar-home {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px 24px;
    border-bottom: 1px solid color-mix(in srgb, var(--sidebar-text, #ffffff) 14%, transparent);
    margin-bottom: 8px;
    cursor: pointer;
}
.sidebar-home .icon {
    width: 40px;
    height: 40px;
    background: color-mix(in srgb, var(--sidebar-text, #ffffff) 12%, transparent);
    color: var(--sidebar-text, var(--white));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-home h4 {
    color: var(--sidebar-text, var(--white));
    font-size: 14px;
    font-weight: 600;
}
.sidebar-home p {
    color: color-mix(in srgb, var(--sidebar-text, #ffffff) 62%, transparent);
    font-size: 11px;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}
.sidebar-nav a {
    display: block;
    padding: 14px 24px;
    color: var(--sidebar-text, var(--white));
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s;
}
.sidebar-nav a:hover { background: color-mix(in srgb, var(--sidebar-text, #ffffff) 8%, transparent); }

.sidebar-footer {
    padding: 16px 24px;
    border-top: 1px solid color-mix(in srgb, var(--sidebar-text, #ffffff) 14%, transparent);
}

.lang-picker {
    position: relative;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid color-mix(in srgb, var(--sidebar-text, #ffffff) 26%, transparent);
    border-radius: 24px;
    color: var(--sidebar-text, var(--white));
    font-size: 13px;
    cursor: pointer;
    background: transparent;
    width: 100%;
    justify-content: flex-start;
}
.lang-switch svg { width: 16px; height: 16px; flex-shrink: 0; }

.lang-dropdown {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--sidebar-bg, #1a1a1a);
    border: 1px solid color-mix(in srgb, var(--sidebar-text, #ffffff) 20%, transparent);
    border-radius: 12px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: min(70vh, 360px);
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s;
    z-index: 20;
    pointer-events: none;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: color-mix(in srgb, var(--sidebar-text, #ffffff) 92%, transparent);
    font-size: 13px;
    border-bottom: 1px solid color-mix(in srgb, var(--sidebar-text, #ffffff) 10%, transparent);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.lang-option:last-child { border-bottom: none; }
.lang-option:hover, .lang-option.active {
    background: color-mix(in srgb, var(--sidebar-text, #ffffff) 14%, transparent);
    color: var(--sidebar-text, var(--white));
}

.lang-code {
    font-weight: 700;
    width: 28px;
    font-size: 11px;
    flex-shrink: 0;
}

.lang-name { flex: 1; }

.lang-currency,
.lang-switch-currency {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--sidebar-text, #ffffff);
    background: color-mix(in srgb, var(--sidebar-text, #ffffff) 18%, transparent);
    padding: 3px 7px;
    border-radius: 4px;
    flex-shrink: 0;
}

.lang-switch-currency {
    margin-left: auto;
    opacity: 0.9;
}

.powered-by {
    text-align: center;
    padding: 16px;
    font-size: 10px;
    color: var(--gray-400);
    letter-spacing: 0.1em;
}

/* Item modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 300;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.item-modal {
    background: var(--menu-card, var(--white));
    color: var(--menu-text, var(--black));
    width: 100%;
    max-width: var(--max-width);
    max-height: 90vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.modal-overlay.open .item-modal { transform: translateY(0); }

.modal-image {
    position: relative;
    aspect-ratio: 4/3;
}
.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gray-600);
}

.modal-body { padding: 20px; }

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.modal-header h2 {
    font-size: 22px;
    font-weight: 600;
}
.modal-header .price {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    color: var(--theme);
}

.modal-description {
    font-size: 14px;
    color: var(--menu-muted, var(--gray-500));
    line-height: 1.6;
    margin-bottom: 16px;
}

.modal-video {
    margin-bottom: 18px;
}

.modal-video-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--menu-muted, var(--gray-500));
    margin-bottom: 10px;
}

.modal-video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.modal-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.modal-gallery {
    margin-bottom: 18px;
}

.modal-gallery-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--menu-muted, var(--gray-500));
    margin-bottom: 10px;
}

.modal-gallery-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.modal-gallery-slide {
    flex: 0 0 min(78%, 280px);
    scroll-snap-align: start;
    border-radius: var(--radius);
    overflow: hidden;
    background: #111;
    aspect-ratio: 4 / 3;
}

.modal-gallery-slide img,
.modal-gallery-slide video,
.modal-gallery-slide iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    display: block;
}

.modal-gallery-slide iframe,
.modal-gallery-slide video {
    object-fit: contain;
    background: #000;
}

/* Image lightbox */
.has-image-lightbox .menu-item-image img,
.has-image-lightbox .featured-card > img {
    cursor: zoom-in;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 4000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.image-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.image-lightbox__img {
    max-width: min(96vw, 920px);
    max-height: min(88vh, 920px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
}

.image-lightbox__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: 0;
    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;
    z-index: 1;
    transition: background 0.15s ease;
}

.image-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.28);
}

.modal-prep {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 16px;
}

/* Allergen panel */
/* Allergen warning */
.allergen-warning {
    margin-bottom: 20px;
    padding: 16px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.allergen-warning-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}
.allergen-warning-shield {
    width: 20px;
    height: 20px;
    color: #dc2626;
    flex-shrink: 0;
}
.allergen-warning-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    letter-spacing: -0.01em;
}
.allergen-warning-text {
    font-size: 12px;
    line-height: 1.5;
    color: var(--gray-600);
    margin: 0 0 14px;
    padding: 0;
    white-space: pre-wrap;
}
.allergen-icon-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.allergen-icon-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    min-width: 52px;
    max-width: 60px;
    padding: 5px 4px;
    border-radius: 8px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    text-align: center;
}
.allergen-icon-chip-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.allergen-icon-chip-icon svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
    display: block;
    flex-shrink: 0;
}
.allergen-icon-chip-name {
    font-size: 8px;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.2;
    word-break: break-word;
}

/* Variants / sizes */
.variants-list {
    margin-bottom: 24px;
}

.modal-variants {
    margin-top: 4px;
    margin-bottom: 8px;
}

.modal-variants-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--menu-text, var(--black));
}

.variant-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    gap: 12px;
}

.variant-row:last-child { border-bottom: none; }

.variant-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.variant-label {
    font-size: 14px;
    font-weight: 600;
}

.variant-meta {
    font-size: 12px;
    color: var(--gray-500);
}

.variant-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.variant-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--theme);
}

.variant-price-old {
    font-size: 13px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.variant-discount-badge {
    font-size: 10px;
    font-weight: 600;
    background: #fef2f2;
    color: #dc2626;
    padding: 3px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.variant-row.has-discount .variant-price {
    color: #dc2626;
}

.modal-stats {
    display: flex;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
    margin-bottom: 20px;
}
.modal-stats .stat {
    flex: 1;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    border-right: 1px solid var(--gray-200);
}
.modal-stats .stat:last-child { border-right: none; }

.recommendations h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.rec-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rec-card-full {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.rec-card-full:hover {
    box-shadow: var(--shadow);
}

.rec-card-inner {
    display: flex;
    gap: 14px;
    padding: 14px;
}

.rec-card-full .rec-image {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.rec-card-full .rec-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rec-content {
    flex: 1;
    min-width: 0;
}

.rec-card-full h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.rec-desc {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rec-variants {
    margin-top: 8px;
}

.rec-var-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 4px 0;
    color: var(--gray-600);
}

.rec-var-price {
    font-weight: 600;
    color: var(--black);
}

.rec-var-old {
    text-decoration: line-through;
    color: var(--gray-400);
    font-weight: 400;
    margin-right: 4px;
}

.rec-price-main {
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
}

.rec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.rec-card {
    cursor: pointer;
}
.rec-card .rec-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 8px;
}
.rec-card .rec-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rec-card h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}
.rec-card .why-label {
    font-size: 11px;
    color: var(--gray-400);
    margin-bottom: 2px;
}
.rec-card .why-text {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.4;
    margin-bottom: 6px;
}
.rec-card .rec-price {
    font-size: 13px;
    font-weight: 600;
}

/* ŞefAI modal */
.sefai-overlay,
.chefai-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    z-index: 400;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.sefai-overlay.open,
.chefai-overlay.open { opacity: 1; visibility: visible; }

.sefai-modal,
.chefai-modal {
    background: var(--sefai-surface, var(--menu-card, var(--white)));
    width: 100%;
    max-width: 420px;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
}
.sefai-overlay.open .sefai-modal,
.chefai-overlay.open .chefai-modal { transform: translateY(0); }

.sefai-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--sefai-header-bg, var(--theme)) 0%, color-mix(in srgb, var(--sefai-header-bg, var(--theme)) 55%, #000) 100%);
    color: var(--sefai-header-text, var(--white));
}
.sefai-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}
.sefai-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--sefai-header-text, #ffffff) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sefai-accent, #fbbf24);
    flex-shrink: 0;
}
.sefai-avatar svg { width: 20px; height: 20px; }
.sefai-header-copy {
    min-width: 0;
    flex: 1;
}
.sefai-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.25;
    max-width: 100%;
}
.sefai-status {
    font-size: 11px;
    color: color-mix(in srgb, var(--sefai-header-text, #ffffff) 65%, transparent);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}
.sefai-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
}
.sefai-close {
    width: 32px;
    height: 32px;
    border: none;
    background: color-mix(in srgb, var(--sefai-header-text, #ffffff) 10%, transparent);
    color: var(--sefai-header-text, var(--white));
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

.sefai-context {
    margin: 0 16px 8px;
    padding: 8px 12px;
    border-radius: 10px;
    background: var(--theme-soft);
    color: var(--gray-600);
    font-size: 11px;
    line-height: 1.4;
}

.sefai-context[hidden] {
    display: none !important;
}

.sefai-quick-bar {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    overflow-x: auto;
    border-bottom: 1px solid var(--menu-border, var(--gray-100));
    background: var(--sefai-surface, var(--menu-card, var(--white)));
    -webkit-overflow-scrolling: touch;
}
.sefai-quick-bar::-webkit-scrollbar { display: none; }
.sefai-quick-btn {
    flex-shrink: 0;
    padding: 6px 12px;
    border: 1px solid var(--menu-border, var(--gray-200));
    border-radius: 20px;
    background: var(--sefai-surface, var(--menu-card, var(--white)));
    color: var(--menu-text, var(--black));
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.sefai-quick-btn:hover { border-color: var(--black); background: var(--gray-100); }

.sefai-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    min-height: 200px;
    max-height: 50vh;
    background: var(--sefai-body-bg, #fafafa);
}
.sefai-prompt {
    font-size: 13px;
    font-weight: 600;
    color: var(--menu-muted, var(--gray-600));
    margin-bottom: 14px;
    text-align: center;
}
.sefai-mode-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.sefai-mode-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    background: var(--sefai-surface, var(--menu-card, var(--white)));
    border: 1.5px solid var(--menu-border, var(--gray-200));
    border-radius: 14px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    color: var(--menu-text, var(--black));
}
.sefai-mode-card:hover { border-color: var(--menu-text, var(--black)); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.sefai-mode-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--sefai-accent, #fbbf24) 14%, #ffffff);
    color: color-mix(in srgb, var(--sefai-accent, #fbbf24) 72%, #000000);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sefai-mode-icon svg { width: 18px; height: 18px; }
.sefai-mode-card strong { font-size: 12px; display: block; }
.sefai-mode-card span { font-size: 10px; color: var(--menu-muted, var(--gray-500)); line-height: 1.3; }

.sefai-chat { display: flex; flex-direction: column; gap: 10px; }
.sefai-message {
    max-width: 88%;
    padding: 11px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.5;
    white-space: pre-wrap;
}
.sefai-message--bot {
    align-self: flex-start;
    background: var(--sefai-surface, var(--menu-card, var(--white)));
    border: 1px solid var(--menu-border, var(--gray-200));
    border-bottom-left-radius: 4px;
    color: var(--menu-text, var(--black));
}
.sefai-message--user {
    align-self: flex-end;
    background: var(--sefai-header-bg, var(--theme));
    color: var(--sefai-header-text, var(--white));
    border-bottom-right-radius: 4px;
}

.sefai-typing {
    display: flex;
    gap: 4px;
    padding: 8px 14px;
    align-self: flex-start;
}
.sefai-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-400);
    animation: sefai-bounce 1.2s infinite;
}
.sefai-typing span:nth-child(2) { animation-delay: 0.15s; }
.sefai-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes sefai-bounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.sefai-suggestions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: stretch;
    width: 100%;
}
.sefai-suggestion-card {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: var(--sefai-surface, var(--menu-card, var(--white)));
    border: 1px solid var(--menu-border, var(--gray-200));
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: box-shadow 0.2s;
    width: 100%;
}
.sefai-suggestion-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.sefai-suggestion-card img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.sefai-suggestion-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.sefai-suggestion-body strong { font-size: 12px; }
.sefai-suggestion-body p {
    font-size: 10px;
    color: var(--gray-500);
    line-height: 1.35;
    margin: 2px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sefai-suggestion-body span { font-size: 10px; color: var(--theme); font-weight: 600; }
.sefai-suggestion-body em { font-size: 11px; font-style: normal; font-weight: 700; margin-top: 2px; color: var(--black); }

.sefai-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px 12px;
    border-top: 1px solid var(--menu-border, var(--gray-100));
    background: var(--sefai-surface, var(--menu-card, var(--white)));
    min-height: 0;
}
.sefai-chip {
    padding: 6px 12px;
    border: 1px solid var(--menu-border, var(--gray-200));
    border-radius: 16px;
    background: var(--sefai-surface, var(--menu-card, var(--white)));
    color: var(--menu-text, var(--black));
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
}
.sefai-chip:hover { background: var(--gray-100); }

.sefai-input,
.chefai-input {
    display: flex;
    gap: 10px;
    padding: 12px 16px 20px;
    background: var(--sefai-surface, var(--menu-card, var(--white)));
    border-top: 1px solid var(--menu-border, var(--gray-100));
}
.sefai-input input,
.chefai-input input {
    flex: 1;
    padding: 12px 18px;
    border: 1.5px solid var(--menu-border, var(--gray-200));
    border-radius: 24px;
    font-size: 14px;
    background: var(--sefai-body-bg, var(--gray-100));
    color: var(--menu-text, var(--black));
    outline: none;
}
.sefai-input input:focus,
.chefai-input input:focus { border-color: var(--menu-muted, var(--gray-400)); background: var(--sefai-surface, var(--white)); }
.sefai-input button,
.chefai-input button {
    width: 44px;
    height: 44px;
    background: var(--sefai-send-btn, var(--black));
    color: var(--sefai-header-text, var(--white));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}
.sefai-input button:disabled,
.chefai-input button:disabled { opacity: 0.4; cursor: not-allowed; }
.sefai-input button svg,
.chefai-input button svg { width: 18px; height: 18px; }

@media (min-width: 500px) {
    .sefai-overlay,
    .chefai-overlay { align-items: center; padding: 20px; }
    .sefai-modal,
    .chefai-modal { border-radius: 20px; max-height: 85vh; }
    .sefai-overlay.open .sefai-modal,
    .chefai-overlay.open .chefai-modal { transform: scale(1); }
}

/* Responsive */
@media (min-width: 500px) {
    body { padding: 0 20px 20px; }
    .modal-overlay { align-items: center; }
    .item-modal {
        border-radius: var(--radius-lg);
        max-height: 85vh;
    }
    .modal-image img { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}

/* Loading */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--gray-400);
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
