/* ==========================================================================
   HAN YÖRESEL LEZZETLER - PREMIUM QR MENÜ STİLLERİ
   ========================================================================== */

/* 1. Global Reset & Değişkenler */
:root {
    /* Renk Paleti - Dark Gold */
    --bg-dark-main: #070707;      /* Ana Koyu Arkaplan */
    --bg-dark-surface: #101010;   /* Yüzey Arkaplanı */
    --bg-dark-card: #161616;      /* Kart Arkaplanı */
    --bg-dark-input: #1f1f1f;     /* Giriş Kutusu Arkaplanı */
    
    --accent-gold: #d4af37;       /* Odunpazarı Altını */
    --accent-gold-rgb: 212, 175, 55;
    --accent-gold-hover: #f3e5ab; /* Açık Altın */
    --accent-gold-muted: rgba(212, 175, 55, 0.15);
    
    --text-white: #ffffff;        /* Başlıklar */
    --text-silver: #e0e0e0;       /* Gövde Metni */
    --text-muted: #8e8e93;        /* Pasif / İkincil Metin */
    
    /* Durum Renkleri (Badgeler İçin) */
    --color-popular: #e74c3c;
    --color-special: #2ecc71;
    --color-favorite: #f1c40f;
    --color-signature: #9b59b6;
    --color-morning: #3498db;
    
    /* Yazı Tipleri */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Diğer Stiller */
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --box-shadow-premium: 0 8px 30px rgba(0, 0, 0, 0.5);
    --gold-glow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark-main);
    color: var(--text-silver);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

/* Tipografi */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* ==========================================================================
   2. HEADER / NAVBAR
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.1;
    color: var(--text-white);
    background: linear-gradient(135deg, #ffffff 30%, #e0e0e0 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-sub {
    font-size: 0.65rem;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
    font-weight: 500;
}

.social-widgets {
    display: flex;
    gap: 8px;
}

.widget-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--text-white);
    background-color: var(--bg-dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.instagram-widget:hover {
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.4);
    box-shadow: 0 0 10px rgba(225, 48, 108, 0.2);
}

.whatsapp-widget:hover {
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.2);
}

/* ==========================================================================
   3. CATEGORY NAVIGATION (STICKY & SWIPEABLE)
   ========================================================================== */
.category-nav-bar {
    position: sticky;
    top: 73px; /* Just below main header */
    z-index: 999;
    background-color: rgba(16, 16, 16, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
    padding: 8px 0;
}

.category-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 12px;
    scrollbar-width: none; /* Firefox */
}

.category-nav-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.nav-cat-item {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 30px;
    background-color: var(--bg-dark-main);
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.nav-cat-item i {
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.nav-cat-item:hover {
    color: var(--text-white);
    border-color: rgba(212, 175, 55, 0.3);
}

.nav-cat-item.active {
    color: var(--bg-dark-main);
    background: linear-gradient(135deg, var(--accent-gold), #f3e5ab);
    border-color: var(--accent-gold);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.nav-cat-item.active i {
    color: var(--bg-dark-main);
}

/* ==========================================================================
   4. HERO SHOWCASE
   ========================================================================== */
.menu-hero {
    position: relative;
    height: 25vh;
    min-height: 180px;
    max-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.6) 0%, rgba(7, 7, 7, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    padding: 0 16px;
    z-index: 1;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.gold-text {
    color: var(--accent-gold);
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 4px;
    background: linear-gradient(to right, #ffffff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

/* ==========================================================================
   5. INTERACTIVE SEARCH BAR
   ========================================================================== */
.search-section {
    padding: 16px 0;
    background-color: var(--bg-dark-main);
}

.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
}

.search-input-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 0 16px;
    transition: var(--transition-smooth);
}

.search-input-box:focus-within {
    border-color: var(--accent-gold);
    box-shadow: var(--gold-glow);
    background-color: var(--bg-dark-card);
}

.search-icon {
    font-size: 1rem;
    color: var(--text-muted);
    margin-right: 12px;
    transition: var(--transition-smooth);
}

.search-input-box:focus-within .search-icon {
    color: var(--accent-gold);
}

.search-input-box input {
    width: 100%;
    height: 48px;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-white);
}

.search-input-box input::placeholder {
    color: var(--text-muted);
}

#clearSearchBtn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    padding: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

#clearSearchBtn:hover {
    color: var(--text-white);
}

/* ==========================================================================
   6. MENU CONTAINER & CATEGORY HEADERS
   ========================================================================== */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px 80px;
}

.menu-category-section {
    padding-top: 40px;
    margin-bottom: 24px;
    scroll-margin-top: 140px; /* Offset for sticky nav headers */
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.category-title-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-shrink: 0;
}

.category-number {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 500;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-white);
}

.header-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.02));
}

/* ==========================================================================
   7. GRID CARD DESIGN (MAIN DISHES & BREAKFAST)
   ========================================================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
}

.menu-item-card {
    background-color: var(--bg-dark-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.menu-item-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), var(--gold-glow);
}

/* Visual Image Frame */
.card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 68%; /* Aspect ratio (~3:2) */
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-dark-surface);
    border-bottom: 2px solid rgba(212, 175, 55, 0.08);
}

.item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.menu-item-card:hover .item-img {
    transform: scale(1.06);
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.card-img-wrapper:hover .img-overlay {
    opacity: 1;
}

.zoom-badge {
    background-color: rgba(7, 7, 7, 0.8);
    color: var(--text-white);
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 6px;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.card-img-wrapper:hover .zoom-badge {
    transform: translateY(0);
}

/* Custom Badges */
.item-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hot-badge {
    background-color: var(--color-popular);
    color: var(--text-white);
}

.secondary-badge {
    background-color: var(--color-special);
    color: var(--text-white);
}

.best-seller-badge {
    background: linear-gradient(135deg, var(--color-favorite), #d4af37);
    color: var(--bg-dark-main);
}

.signature-badge {
    background-color: var(--color-signature);
    color: var(--text-white);
}

.morning-badge {
    background-color: var(--color-morning);
    color: var(--text-white);
}

/* Card Body */
.card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.item-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-gold);
    white-space: nowrap;
}

.item-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.food-tag {
    font-size: 0.65rem;
    color: var(--accent-gold);
    background-color: var(--bg-dark-surface);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.food-tag i {
    margin-right: 2px;
}

/* ==========================================================================
   8. LIST CARD DESIGN (DESSERTS & WARM DRINKS)
   ========================================================================== */
.list-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .list-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.menu-list-row-item {
    background-color: var(--bg-dark-card);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
}

.menu-list-row-item:hover {
    border-color: rgba(212, 175, 55, 0.12);
    box-shadow: var(--gold-glow);
    background-color: rgba(22, 22, 22, 0.8);
}

.row-img-wrapper {
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    background-color: var(--bg-dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.row-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-list-row-item:hover .row-item-img {
    transform: scale(1.08);
}

.row-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.row-img-wrapper:hover .row-img-overlay {
    opacity: 1;
}

.row-content-area {
    flex-grow: 1;
    min-width: 0; /* Prevents overflow with ellipsis */
}

.row-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
    gap: 12px;
}

.row-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    flex-shrink: 0;
}

.row-connector {
    display: none;
}

.row-item-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-gold);
    flex-shrink: 0;
}

@media (min-width: 576px) {
    .row-connector {
        display: block;
        flex-grow: 1;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        margin: 0 10px;
    }
}

.row-description {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
}

/* ==========================================================================
   9. COMPACT DRINKS LIST (NO PHOTOS)
   ========================================================================== */
.drinks-list-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 768px) {
    .drinks-list-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.drink-item-row {
    background-color: var(--bg-dark-card);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 14px 18px;
    transition: var(--transition-smooth);
}

.drink-item-row:hover {
    border-color: rgba(212, 175, 55, 0.1);
    background-color: rgba(22, 22, 22, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.drink-details {
    display: flex;
    flex-direction: column;
}

.drink-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.drink-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

.drink-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.drink-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.4;
}

/* ==========================================================================
   10. NO RESULTS PLACEHOLDER
   ========================================================================== */
.no-results-alert {
    text-align: center;
    padding: 60px 24px;
    background-color: var(--bg-dark-surface);
    border-radius: var(--border-radius-lg);
    border: 1px dashed rgba(212, 175, 55, 0.15);
    margin-top: 30px;
}

.alert-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
    opacity: 0.8;
}

.no-results-alert h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 6px;
}

.no-results-alert p {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 320px;
    margin: 0 auto;
}

/* ==========================================================================
   11. INFO & CONTACT SECTION
   ========================================================================== */
.info-contact-section {
    background-color: var(--bg-dark-surface);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    padding: 60px 0;
}

.section-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.info-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-section-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 36px;
    font-weight: 300;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .info-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-card-item {
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-md);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.info-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-dark-surface);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--gold-glow);
}

.info-card-content h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.info-card-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.info-phone-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.info-phone-link:hover {
    color: var(--accent-gold-hover);
    text-decoration: underline;
}

.info-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

@media (min-width: 576px) {
    .info-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 24px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-map {
    background-color: var(--accent-gold);
    color: var(--bg-dark-main);
    border: 1px solid var(--accent-gold);
}

.btn-map:hover {
    background-color: transparent;
    color: var(--accent-gold);
    box-shadow: var(--gold-glow);
}

.btn-wa {
    background-color: transparent;
    border: 1px solid #25d366;
    color: #25d366;
}

.btn-wa:hover {
    background-color: #25d366;
    color: var(--bg-dark-main);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.map-widget-wrapper {
    width: 100%;
    height: 250px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.yandex-map-iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(0.92) contrast(0.85); /* Dark map effect */
}

/* ==========================================================================
   12. LUXURY FOOTER
   ========================================================================== */
.luxury-footer {
    background-color: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    padding: 0 16px;
}

.footer-logo {
    height: 54px;
    margin: 0 auto 16px;
    opacity: 0.7;
    filter: grayscale(0.2);
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.footer-credit {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==========================================================================
   13. IMAGE LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--text-white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10002;
    transition: var(--transition-smooth);
    line-height: 1;
}

.close-modal-btn:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.lightbox-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox-modal.active .lightbox-img {
    transform: scale(1);
}

.lightbox-caption {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-white);
    margin-top: 16px;
    text-align: center;
    font-weight: 500;
}

/* ==========================================================================
   14. SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark-main);
    box-shadow: var(--gold-glow);
}

/* ==========================================================================
   15. ANIMATIONS & EFFECTS
   ========================================================================== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-category-section {
    animation: slideUp 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

/* Delay categories animation for smooth page load */
#yoresel-lezzetler { animation-delay: 0.1s; }
#kahvalti-corba { animation-delay: 0.2s; }
#tatlilar { animation-delay: 0.3s; }
#sicak-icecekler { animation-delay: 0.4s; }
#soguk-icecekler { animation-delay: 0.5s; }
