/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    background: #0a221f;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 150px;
}

/* Üst Başlık (Header) */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo-text {
    color: #e8dfd1;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.header-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    color: #e8dfd1;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #ffb300;
    opacity: 1;
    transform: translateY(-1px);
}

/* Ana İçerik Konteyner */
.hero-container {
    padding: 30px 15px;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.25;
    letter-spacing: 1px;
}

.hero-title-outlined {
    color: transparent;
    -webkit-text-stroke: 1.2px #ffb300;
    font-style: italic;
}

.storefront-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 1.58 / 1;
}

.storefront-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.info-card-slide {
    display: none !important;
}

.info-card-slide.active {
    display: block !important;
    animation: fadeIn 0.5s ease-out;
}

.hero-sliders-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    position: relative;
    margin-bottom: 30px;
}

.hero-slide {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    width: 100%;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}


.opening-hours {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    color: #e8dfd1;
    text-align: center;
}

.opening-hours h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #ffb300;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.opening-hours p {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 300;
}

.opening-hours p:last-child {
    margin-bottom: 0;
}

.opening-hours p span {
    font-weight: 700;
    color: #ffffff;
}

/* Ana İçerik */
.main-content { padding: 40px; text-align: center; flex: 1; flex-shrink: 0; }
.header { margin-top: 60px; }
.header h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: #5c4a3d; margin-bottom: 10px; letter-spacing: 2px; }
.subtitle { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #8b7355; font-style: italic; }

/* FAB Buton */
.reservation-fab {
    position: fixed; bottom: 30px; right: 30px;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white; border: none; padding: 18px 32px; border-radius: 50px;
    font-size: 16px; font-weight: 700; cursor: pointer;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
    display: flex; align-items: center; gap: 10px;
    transition: all 0.3s ease; z-index: 100;
}
.reservation-fab:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(139, 69, 19, 0.5); }
.reservation-fab svg { width: 24px; height: 24px; }

/* Modal */
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); z-index: 2000;
    justify-content: flex-end; align-items: center; padding: 20px;
    animation: fadeIn 0.3s ease;
}
.modal-overlay.active { display: flex; }
.modal-container {
    background: white; border-radius: 20px; width: 100%; max-width: 450px;
    max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}
.modal-header {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white; padding: 30px; text-align: center; position: relative;
}
.modal-header h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 5px; }
.modal-subtitle { font-style: italic; opacity: 0.9; }
.close-btn {
    position: absolute; top: 15px; right: 15px;
    background: rgba(255, 255, 255, 0.2); border: none;
    width: 36px; height: 36px; border-radius: 50%;
    color: white; font-size: 24px; cursor: pointer;
    transition: all 0.3s ease; display: flex; align-items: center; justify-content: center;
}
.close-btn:hover { background: rgba(255, 255, 255, 0.3); transform: rotate(90deg); }
.modal-body { padding: 30px; }

/* Form */
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 8px; color: #5c4a3d; font-weight: 700; font-size: 14px; }
.form-group select, .form-group input, .form-group textarea {
    width: 100%; padding: 14px 16px; border: 2px solid #e0d5c7; border-radius: 10px;
    font-size: 15px; font-family: 'Lato', sans-serif; transition: all 0.3s ease; background: #faf8f5;
    cursor: pointer; appearance: none; -webkit-appearance: none; -moz-appearance: none;
    background-image: url("image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b4513' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-group select:focus, .form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: #8b4513; background: white; box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

/* Policy Sections */
.policy-section { background: #fff8f0; border: 1px solid #e0d5c7; border-radius: 10px; padding: 15px; margin-bottom: 20px; }
.policy-item { display: flex; align-items: flex-start; gap: 12px; }
.policy-icon { color: #d32f2f; flex-shrink: 0; margin-top: 2px; }
.policy-content h4 { color: #5c4a3d; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.policy-content p { color: #8b7355; font-size: 13px; line-height: 1.4; }
.kvkk-section { margin-bottom: 20px; }
.marketing-section { background: #f5f1e8; border: 1px solid #e0d5c7; border-radius: 10px; padding: 15px; margin-bottom: 20px; }
.marketing-section h4 { color: #5c4a3d; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.marketing-desc { color: #8b7355; font-size: 13px; margin-bottom: 12px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 14px; color: #5c4a3d; }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; cursor: pointer; accent-color: #8b4513; }
.checkbox-label span { line-height: 1.4; }
.checkbox-label a { color: #8b4513; text-decoration: underline; font-weight: 600; }
.checkbox-label a:hover { text-decoration: none; }

/* Submit Button */
.submit-btn {
    width: 100%; padding: 16px;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white; border: none; border-radius: 10px;
    font-size: 16px; font-weight: 700; cursor: pointer;
    transition: all 0.3s ease; margin-top: 10px;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4); }
.submit-btn:active { transform: translateY(0); }

/* Success Modal */
.success-modal {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); z-index: 3000;
    justify-content: center; align-items: center; animation: fadeIn 0.3s ease;
}
.success-modal.active { display: flex; }
.success-content {
    background: white; padding: 50px; border-radius: 20px;
    text-align: center; max-width: 400px; animation: scaleIn 0.3s ease;
}
.success-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px; margin: 0 auto 25px;
}
.success-content h2 { font-family: 'Playfair Display', serif; color: #5c4a3d; margin-bottom: 15px; font-size: 2rem; }
.success-content p { color: #8b7355; margin-bottom: 10px; }
.success-details { background: #f5f1e8; padding: 15px; border-radius: 10px; margin: 20px 0; font-weight: 600; color: #5c4a3d; }
.close-success-btn {
    margin-top: 20px; padding: 14px 40px;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white; border: none; border-radius: 10px;
    font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s ease;
}
.close-success-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4); }

/* Footer */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 650px;
    background: rgba(10, 34, 31, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px 16px 0 0;
    padding: 15px 20px;
    text-align: center;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
    box-sizing: border-box;
}

.footer-main-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 650px;
    margin-bottom: 15px;
}

.site-footer .footer-main-actions .reservation-fab,
.site-footer .footer-main-actions .menu-fab,
.site-footer .footer-main-actions .review-fab {
    position: static;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.site-footer .footer-main-actions .reservation-fab {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
}

.site-footer .footer-main-actions .reservation-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.site-footer .footer-main-actions .menu-fab {
    background: #e8dfd1;
    color: #0a221f;
    border: 1px solid #e0d5c7;
}

.site-footer .footer-main-actions .menu-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 223, 209, 0.3);
}

.site-footer .footer-main-actions .review-fab {
    background: linear-gradient(135deg, #ffb300 0%, #ff8f00 100%);
    color: white;
}

.site-footer .footer-main-actions .review-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 143, 0, 0.3);
}

.footer-credits {
    margin-top: 5px;
    color: rgba(232, 223, 209, 0.6);
    font-size: 11px;
}

.copyright-text {
    margin-bottom: 2px;
}
.footer-link { color: #e8dfd1; text-decoration: none; font-size: 14px; font-weight: 600; transition: all 0.3s ease; display: inline-block; }
.footer-link:hover { color: #fff; text-decoration: underline; }

.footer-action-btn {
    background: transparent;
    color: #e8dfd1;
    border: 1px solid rgba(232, 223, 209, 0.4);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}
.footer-action-btn:hover {
    background: rgba(232, 223, 209, 0.15);
    color: #fff;
    border-color: #fff;
    transform: translateY(-1px);
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { transform: translateX(100px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes scaleIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-bottom: 130px;
    }
    .hero-title { font-size: 2.2rem; }
    .policy-item { flex-direction: column; gap: 8px; }
    .footer-link { font-size: 11px; }
    .site-footer { 
        padding: 10px 10px 8px 10px; 
        border-radius: 12px 12px 0 0;
    }
    .site-footer .footer-main-actions { 
        gap: 6px; 
        margin-bottom: 8px; 
    }
    .site-footer .footer-main-actions .reservation-fab,
    .site-footer .footer-main-actions .menu-fab,
    .site-footer .footer-main-actions .review-fab {
        padding: 8px 5px;
        font-size: 10.5px;
        gap: 4px;
        letter-spacing: -0.3px;
        white-space: nowrap;
    }
    .site-footer .footer-main-actions svg {
        width: 13px;
        height: 13px;
    }
    .footer-pwa-actions {
        margin-bottom: 8px !important;
        gap: 10px !important;
    }
    .footer-action-btn {
        padding: 4px 10px !important;
        font-size: 11px !important;
    }
    .footer-credits {
        margin-top: 2px;
    }
}

/* Loading */
.loading {
    display: inline-block; width: 20px; height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3); border-radius: 50%;
    border-top-color: white; animation: spin 1s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.submit-btn.loading-btn { pointer-events: none; opacity: 0.8; }

/* ========== PWA VE BİLDİRİM MODALLARI STİLLERİ ========== */
.pwa-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0d5c7;
    z-index: 11000;
    width: 90%;
    max-width: 450px;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translate(-50%, 100px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.pwa-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pwa-banner-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 3px 8px rgba(139,69,19,0.2);
}

.pwa-banner-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-pwa-install {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-pwa-install:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(139,69,19,0.3);
}

.btn-pwa-dismiss {
    background: none;
    border: none;
    font-size: 20px;
    color: #8b7355;
    cursor: pointer;
    padding: 0 5px;
}

/* iOS ve Bildirim Modalları */
.ios-modal, .notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 12000;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.ios-modal-content, .notification-modal-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    text-align: center;
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes ringBell {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(5deg); }
    40% { transform: rotate(-5deg); }
    50% { transform: rotate(0); }
}

.hidden {
    display: none !important;
}

/* --- QR MENÜ TASARIMI --- */
.menu-fab {
    position: fixed; bottom: 30px; right: 280px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #5c4a3d; border: 2px solid #8b4513; padding: 18px 32px; border-radius: 50px;
    font-size: 16px; font-weight: 700; cursor: pointer;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
    display: flex; align-items: center; gap: 10px;
    transition: all 0.3s ease; z-index: 100;
}
.menu-fab:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(139, 69, 19, 0.25); background: white; }
.menu-fab svg { width: 24px; height: 24px; color: #8b4513; }

/* Google Review FAB */
.review-fab {
    position: fixed; bottom: 30px; right: 530px;
    background: linear-gradient(135deg, #ffb300 0%, #ff8f00 100%);
    color: white; text-decoration: none; padding: 18px 32px; border-radius: 50px;
    font-size: 16px; font-weight: 700; cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 143, 0, 0.3);
    display: flex; align-items: center; gap: 10px;
    transition: all 0.3s ease; z-index: 100;
}
.review-fab:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255, 143, 0, 0.4); color: white; }
.review-fab svg { width: 24px; height: 24px; fill: white; color: white; }

.menu-modal-container {
    background: #fcfaf7; border-radius: 20px; width: 100%; max-width: 550px;
    height: 90vh; max-height: 90vh; display: flex; flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

.menu-modal-header {
    background: linear-gradient(135deg, #5c4a3d 0%, #3e3025 100%);
    color: white; padding: 25px; text-align: center; position: relative;
    border-bottom: 3px solid #8b4513;
}
.menu-modal-header h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 5px; letter-spacing: 1px; }
.menu-subtitle { font-style: italic; opacity: 0.9; font-size: 14px; color: #e8dfd1; }

.menu-search-wrapper {
    padding: 15px 20px; background: white; border-bottom: 1px solid #e0d5c7;
}
.menu-search-container {
    display: flex; align-items: center; background: #faf8f5; border: 2px solid #e0d5c7;
    border-radius: 30px; padding: 10px 16px; transition: all 0.3s ease;
}
.menu-search-container:focus-within {
    border-color: #8b4513; background: white; box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}
.menu-search-container svg { color: #8b7355; flex-shrink: 0; }
.menu-search-container input {
    border: none; background: transparent; outline: none; width: 100%;
    margin-left: 10px; font-size: 14px; font-family: 'Lato', sans-serif; color: #5c4a3d;
}

.menu-categories-nav {
    display: flex; overflow-x: auto; gap: 10px; padding: 12px 20px; background: white;
    border-bottom: 1px solid #e0d5c7; scrollbar-width: none; -ms-overflow-style: none;
}
.menu-categories-nav::-webkit-scrollbar { display: none; }
.menu-cat-tab {
    white-space: nowrap; padding: 8px 18px; border-radius: 20px;
    border: 1px solid #e0d5c7; background: #faf8f5; color: #8b7355;
    font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.3s ease;
    display: flex; align-items: center; gap: 6px;
}
.menu-cat-tab:hover { border-color: #8b4513; color: #8b4513; background: #fff8f0; }
.menu-cat-tab.active { background: #8b4513; color: white; border-color: #8b4513; box-shadow: 0 4px 10px rgba(139, 69, 19, 0.2); }

.menu-modal-body {
    flex: 1; overflow-y: auto; padding: 25px 20px; scroll-behavior: smooth;
    background: #fcfaf7;
}

.menu-loading-spinner {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 60px 0; gap: 15px; color: #8b7355; font-weight: 600;
}
.menu-loading-spinner .loading { border-top-color: #8b4513; width: 30px; height: 30px; }

.menu-error-msg, .menu-empty-msg {
    text-align: center; color: #c62828; padding: 40px 20px; font-weight: 600;
}
.menu-empty-msg { color: #8b7355; }

.menu-category-section { margin-bottom: 35px; }
.menu-category-section:last-child { margin-bottom: 10px; }
.menu-category-title {
    font-family: 'Playfair Display', serif; font-size: 22px; color: #5c4a3d;
    border-bottom: 2px solid #e0d5c7; padding-bottom: 8px; margin-bottom: 18px;
    font-weight: 700; display: flex; align-items: center; gap: 10px;
}
.menu-category-title span { font-size: 24px; }

.menu-items-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.menu-item-card {
    background: white; border-radius: 12px; padding: 18px; border: 1px solid #e0d5c7;
    box-shadow: 0 4px 15px rgba(92, 74, 61, 0.02); display: flex;
    flex-direction: column; gap: 10px; transition: all 0.3s ease;
}
.menu-item-card:hover {
    transform: translateY(-2px); box-shadow: 0 8px 25px rgba(92, 74, 61, 0.08);
    border-color: #8b4513;
}
/* Üst satır: görsel + isim/fiyat yan yana */
.menu-item-top-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.menu-item-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.menu-item-name { font-family: 'Lato', sans-serif; font-weight: 700; font-size: 15px; color: #3e3025; margin: 0; }
.menu-item-price {
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 16px;
    color: #8b4513; white-space: nowrap;
}
.menu-item-description {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #7d6a5c;
    margin: 0;
    line-height: 1.4;
    padding-top: 4px;
    border-top: 1px solid #f3ede6;
}

@media (max-width: 768px) {
    .menu-modal-container { max-height: 95vh; }
    .menu-item-card { padding: 12px; gap: 8px; }
    .menu-item-name { font-size: 14px; }
    .menu-item-price { font-size: 14px; }
    .menu-item-description { font-size: 11px; }
}

/* --- ACCORDION VE RESİM ÖZELLİKLERİ --- */

/* Kategori Başlığı ve Chevron */
.menu-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e0d5c7;
    padding-bottom: 8px;
    margin-bottom: 18px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}
.menu-category-header:hover {
    background-color: rgba(139, 69, 19, 0.03);
    border-radius: 4px;
}
.menu-category-title {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.category-chevron {
    color: #8b4513;
    transition: transform 0.3s ease;
}
.menu-category-section.collapsed .category-chevron {
    transform: rotate(-90deg);
}
.menu-category-section.collapsed .menu-items-grid {
    display: none;
}

/* Küçük Ürün Görseli */
.menu-item-thumb-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 12px;
    border: 1px solid #e0d5c7;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    cursor: pointer;
}
.menu-item-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.menu-item-thumb-wrapper:hover .menu-item-thumb {
    transform: scale(1.15);
}
.menu-item-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.menu-item-thumb-wrapper:hover .menu-item-thumb-overlay {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 15000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
}
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 3px solid white;
    object-fit: contain;
}
.lightbox-caption {
    color: white;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #e8dfd1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
    user-select: none;
    z-index: 15001;
}
.lightbox-close:hover {
    color: white;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .menu-item-thumb-wrapper {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
}

/* Ana Sayfa Yeni Tasarım Bölümleri */
.home-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px 20px;
    margin-top: 25px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #e8dfd1;
    margin-top: 0;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ffb300;
    border-radius: 2px;
}
.section-text {
    font-size: 14px;
    color: #c4b5a2;
    line-height: 1.6;
}
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.feature-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(232, 223, 209, 0.15);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}
.feature-card h4 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 4px;
    font-weight: 700;
}
.feature-card p {
    font-size: 13px;
    color: #c4b5a2;
    line-height: 1.4;
    margin: 0;
}
.dishes-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    margin-top: 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.dishes-scroll-container::-webkit-scrollbar {
    display: none;
}
.dish-card {
    flex: 0 0 220px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.dish-img-placeholder {
    height: 100px;
    background: rgba(232, 223, 209, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dish-info {
    padding: 12px;
}
.dish-info h4 {
    color: #ffffff;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 700;
}
.dish-info p {
    font-size: 12px;
    color: #c4b5a2;
    line-height: 1.4;
    margin: 0;
}
.review-carousel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}
.review-item {
    background: rgba(255, 255, 255, 0.01);
    border-left: 3px solid #ffb300;
    padding: 12px 15px;
    border-radius: 0 12px 12px 0;
}
.stars {
    color: #ffb300;
    font-size: 12px;
    margin-bottom: 6px;
}
.review-text {
    font-size: 13px;
    color: #e8dfd1;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 6px;
}
.review-author {
    font-size: 11px;
    color: #8b7d6c;
}
.map-card-link {
    text-decoration: none;
    display: block;
    margin-top: 15px;
}
.map-mock-card {
    background: linear-gradient(135deg, #133e38 0%, #0a221f 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.map-mock-card:hover {
    transform: translateY(-2px);
    border-color: #ffb300;
}
.map-mock-icon {
    font-size: 20px;
}

/* === MODERN DEKTOP ARABİRİM TASARIMI === */
@media (min-width: 992px) {
    body {
        background: radial-gradient(circle at top, #0d2f2b 0%, #061614 100%) !important;
    }

    /* Header Genişletme */
    .app-header {
        max-width: 1200px !important;
        padding: 30px 40px;
        margin-bottom: 20px;
    }
    
    /* Split Hero Görünümü */
    .hero-container {
        max-width: 1200px !important;
        padding: 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        text-align: left;
    }
    
    .hero-title {
        font-size: 3.8rem;
        text-align: left;
        grid-column: 1;
        margin-bottom: 20px;
    }
    
    .hero-sliders-container {
        grid-column: 2;
        grid-row: 1 / span 3;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        position: relative;
        min-height: 520px;
    }
    
    .hero-slide {
        grid-column: 1;
        grid-row: 1;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.8s ease, visibility 0.8s ease;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-slide.active {
        opacity: 1;
        visibility: visible;
    }
    
    .storefront-wrapper {
        width: 100% !important;
        margin-bottom: 0;
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
        box-shadow: 0 25px 55px rgba(0,0,0,0.5);
    }
    
    .storefront-wrapper:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        box-shadow: 0 30px 65px rgba(0,0,0,0.6);
    }
    
    .opening-hours {
        grid-column: 1;
        text-align: left;
        max-width: 500px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 25px;
    }
    
    /* Grid Elemanlar */
    .home-section {
        grid-column: 1 / span 2;
        padding: 40px;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* Hakkımızda Kartları Yan Yana */
    .features-grid {
        flex-direction: row !important;
        gap: 20px;
    }
    
    .feature-card {
        flex: 1;
        background: rgba(255, 255, 255, 0.01);
        border: 1px solid rgba(255, 255, 255, 0.04);
        padding: 20px;
        transition: all 0.3s ease;
    }
    .feature-card:hover {
        background: rgba(255, 255, 255, 0.03);
        border-color: #ffb300;
        transform: translateY(-3px);
    }
    
    /* Özel Lezzetler Grid */
    .dishes-scroll-container {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
        overflow-x: visible;
    }
    
    .dish-card {
        flex: none !important;
        background: rgba(255, 255, 255, 0.02);
        transition: all 0.3s ease;
    }
    .dish-card:hover {
        background: rgba(255, 255, 255, 0.04);
        border-color: #ffb300;
        transform: translateY(-3px);
    }
    .dish-img-placeholder {
        height: 140px;
    }
    
    /* Fiks Menü Tanıtım Alanı (Yan yana detay) */
    .fix-menus-section {
        display: grid !important;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 40px;
        align-items: center;
        text-align: left;
    }
    
    .fix-menus-section .section-title {
        grid-column: 1 / span 2;
    }
    
    .fix-menu-single-wrapper {
        grid-column: 2;
        margin: 0 !important;
        max-width: 100% !important;
    }

    .fix-menus-section::before {
        content: 'Asmalıbahçe Cuma-Cumartesi gecelerinize lezzet katıyor. 5 çeşit meze, ara sıcakta pastırmalı humus, mevsim salatası, ana yemekte tavuk kebap ve serpme meyve ikramlarımızla fiks menümüz tam bir şölen sunuyor. Rezervasyon yaparken fiks menü seçeneğini belirtmeyi unutmayın.';
        grid-column: 1;
        font-size: 15px;
        line-height: 1.8;
        color: #c4b5a2;
        font-family: 'Lato', sans-serif;
    }
    
    /* Yorumlar ve İletişim Yan Yana */
    .reviews-section {
        grid-column: 1 !important;
        margin-top: 0;
        height: 100%;
    }
    
    .contact-section {
        grid-column: 2 !important;
        margin-top: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    /* Docked Bottom Bar */
    .site-footer {
        max-width: 800px !important;
        border-radius: 20px 20px 0 0 !important;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: none;
    }
}