/* ==================== MODERN & MİNİMALİST QR MENÜ ==================== */
/* Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Değişkenleri - Yeni Modern Palet */
:root {
    /* Ana Renkler */
    --bg-primary: #F8F9FA !important;
    --bg-card: #FFFFFF !important;
    --accent-primary: #FF6B35 !important;
    --accent-secondary: #E85A2A !important;
    --text-primary: #2D3436 !important;
    --text-secondary: #636E72 !important;
    --border-color: #EFEFEF !important;
    
    /* Eski değişkenleri override et */
    --primary-color: #FF6B35 !important;
    --secondary-color: #E85A2A !important;
    --text-color: #2D3436 !important;
    
    /* Gölgeler */
    --shadow-soft: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Geçişler */
    --transition: all 0.3s ease;
}

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    background: #F8F9FA !important;
    color: #2D3436 !important;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Footer en alta */
footer {
    margin-top: auto !important;
    background: #FFFFFF !important;
    padding: 24px 20px !important;
    text-align: center !important;
    border-top: 1px solid #EFEFEF !important;
    color: #636E72 !important;
    font-size: 14px !important;
}

footer a {
    color: #FF6B35 !important;
    font-weight: 500 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER - MODERN MİNİMALİST ==================== */
.header {
    background: #FFFFFF !important;
    color: #2D3436 !important;
    padding: 16px 20px !important;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #EFEFEF !important;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.restaurant-logo {
    font-size: 24px !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
    color: #2D3436 !important;
    text-shadow: none !important;
}

/* Header butonları */
.header .lang-btn,
.header .favorites-header-btn {
    background: #F8F9FA !important;
    border: 1px solid #EFEFEF !important;
    color: #2D3436 !important;
}

.header .lang-btn:hover,
.header .favorites-header-btn:hover {
    background: #EFEFEF !important;
}

/* ==================== POPÜLER ÜRÜNLER SLIDER ==================== */
.popular-section {
    padding: 30px 0 !important;
    background: #FFFFFF !important;
}

.section-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #2D3436 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    letter-spacing: -0.3px !important;
}

.popular-slider {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    padding: 10px 0 20px 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.popular-slider::-webkit-scrollbar {
    display: none;
}

.popular-card {
    background: #FFFFFF !important;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 200px;
    min-width: 200px;
}

.popular-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
}

.popular-image-wrapper {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: #F8F9FA !important;
    overflow: hidden;
}

.popular-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-card:hover .popular-image {
    transform: scale(1.05);
}

.popular-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F9FA !important;
    color: #636E72 !important;
    font-size: 12px;
    font-weight: 500;
}

.popular-info {
    padding: 16px;
}

.popular-name {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #2D3436 !important;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-price {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #FF6B35 !important;
}

/* ==================== KATEGORİ GRİD ==================== */
.categories-section {
    padding: 30px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.category-card {
    position: relative;
    border-radius: 20px !important;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    border: none !important;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2) !important;
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-bg {
    transform: scale(1.15);
}

.category-bg-default {
    background: linear-gradient(135deg, #FF6B35 0%, #E85A2A 100%) !important;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
    transition: all 0.4s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
}

.category-name {
    position: relative;
    z-index: 10;
    color: white;
    font-size: 17px !important;
    font-weight: 700 !important;
    text-align: left;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    width: 100%;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

/* ==================== GERİ DÖN BÖLÜMÜ ==================== */
.back-section {
    background: #FFFFFF !important;
    padding: 12px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    max-width: 832px;
    margin: 0 auto 10px auto;
    border-radius: 16px;
}

.back-section .container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px !important;
    background: #FF6B35 !important;
    color: white !important;
    text-decoration: none;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 13px;
    transition: all 0.3s ease !important;
    margin-bottom: 0;
    border: none !important;
    box-shadow: 0 2px 8px rgba(255,107,53,0.25);
    flex-shrink: 0;
    white-space: nowrap;
}

.back-btn:hover {
    background: #E85A2A !important;
    transform: translateX(-3px) !important;
    box-shadow: 0 4px 12px rgba(255,107,53,0.35);
}

.category-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin: 0 !important;
    letter-spacing: -0.3px;
    display: inline !important;
}

/* Back section içindeki düzen */
.back-section .container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    flex-wrap: nowrap !important;
}

.back-section .category-title {
    margin: 0 !important;
    flex: 1;
}

/* ==================== ÜRÜN LİSTESİ ==================== */
.products-list-section {
    padding: 30px 0;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 16px;
    max-width: 800px;
    margin: 0 auto;
}

.product-list-item {
    background: #FFFFFF !important;
    border-radius: 20px !important;
    padding: 14px;
    display: flex;
    gap: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
    position: relative;
    overflow: hidden;
}

.product-list-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FF6B35 0%, #E85A2A 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-list-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(255,107,53,0.15) !important;
    border-color: rgba(255,107,53,0.2) !important;
}

.product-list-item:hover::before {
    opacity: 1;
}

.product-list-image {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 16px !important;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-list-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-list-item:hover .product-list-img {
    transform: scale(1.1);
}

.product-list-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    color: #636E72 !important;
    font-size: 12px;
    font-weight: 500;
}

.product-list-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 8px;
}

.product-list-name {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin-bottom: 4px;
    line-height: 1.3;
}

.product-list-description {
    font-size: 13px !important;
    color: #636E72 !important;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-list-price {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #FF6B35 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-list-price .old-price {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #aaa !important;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #636E72 !important;
    font-size: 16px;
}

/* ==================== MODAL - MODERN TASARIM ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 0;
}

.modal-content {
    background: #FFFFFF !important;
    border-radius: 0 !important;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    position: relative;
    box-shadow: none !important;
    animation: modalSlideUp 0.3s ease;
    border: none !important;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close {
    position: fixed;
    top: 16px;
    left: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #2D3436 !important;
    cursor: pointer;
    z-index: 1001;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
    line-height: 1;
    border: none !important;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: #FFFFFF !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
}

.modal-body {
    padding: 0;
}

.modal-image-wrapper {
    width: 100%;
    height: 45vh;
    min-height: 280px;
    max-height: 400px;
    background: #F8F9FA !important;
    overflow: hidden;
    position: relative;
    border-radius: 0 !important;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 24px;
    padding-bottom: 100px;
}

.modal-info h2 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #2D3436 !important;
    margin-bottom: 8px;
    line-height: 1.3;
}

.modal-category {
    font-size: 12px !important;
    color: #FF6B35 !important;
    font-weight: 600 !important;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-description {
    font-size: 15px !important;
    color: #636E72 !important;
    line-height: 1.6;
    margin-bottom: 16px;
}

.modal-price {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #FF6B35 !important;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #EFEFEF !important;
}

/* ==================== SEPETE EKLE / FİYAT BUTONU ==================== */
.add-to-cart-btn,
.price-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px !important;
    background: #FF6B35 !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    margin-top: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}

.add-to-cart-btn:hover,
.price-btn:hover {
    background: #E85A2A !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
}

/* Desktop */
@media (min-width: 769px) {
    .modal {
        padding: 0;
    }
    
    .modal-content {
        max-width: 100%;
        width: 100%;
        height: 100%;
        border-radius: 0 !important;
    }
    
    .modal-image-wrapper {
        height: 50vh;
        max-height: 500px;
    }
    
    .modal-info {
        max-width: 600px;
        margin: 0 auto;
        padding: 30px;
        padding-bottom: 100px;
    }
    
    .modal-info h2 {
        font-size: 28px !important;
    }
    
    .modal-price {
        font-size: 32px !important;
    }
    
    .modal-close {
        top: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .popular-card {
        width: 180px;
        min-width: 180px;
    }

    .category-card {
        height: 160px;
        border-radius: 16px !important;
    }
    
    .category-name {
        font-size: 15px !important;
        padding: 15px;
    }

    .category-name {
        font-size: 16px !important;
    }

    .product-list-image {
        width: 80px;
        height: 80px;
    }

    .product-list-name {
        font-size: 15px !important;
    }

    .product-list-price {
        font-size: 18px !important;
    }
}

/* Scrollbar Stilleri - Minimal */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #EFEFEF;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ddd;
}


/* ==================== INSTAGRAM STORY STYLE - POPÜLER ÜRÜNLER ==================== */

section.popular-section {
    padding: 25px 0 !important;
    background: #FFFFFF !important;
}

section.popular-section .section-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #2D3436 !important;
    margin-bottom: 15px !important;
    text-align: left !important;
    padding-left: 5px !important;
}

section.popular-section .popular-slider {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 18px !important;
    padding: 10px 5px 15px 5px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    -webkit-overflow-scrolling: touch !important;
}

section.popular-section .popular-slider::-webkit-scrollbar {
    display: none !important;
}

section.popular-section .popular-card {
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    cursor: pointer !important;
    transition: transform 0.2s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    width: 80px !important;
    min-width: 80px !important;
    padding: 0 !important;
}

section.popular-section .popular-card:hover {
    transform: scale(1.05) !important;
    box-shadow: none !important;
}

section.popular-section .popular-image-wrapper {
    width: 72px !important;
    height: 72px !important;
    padding-top: 0 !important;
    position: relative !important;
    overflow: visible !important;
    border-radius: 50% !important;
    padding: 3px !important;
    background: linear-gradient(45deg, #FF6B35 0%, #E85A2A 100%) !important;
}

section.popular-section .popular-image-wrapper::before {
    content: '' !important;
    position: absolute !important;
    top: 3px !important;
    left: 3px !important;
    right: 3px !important;
    bottom: 3px !important;
    background: white !important;
    border-radius: 50% !important;
    z-index: 1 !important;
}

section.popular-section .popular-image {
    position: absolute !important;
    top: 5px !important;
    left: 5px !important;
    width: calc(100% - 10px) !important;
    height: calc(100% - 10px) !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    z-index: 2 !important;
    transition: none !important;
}

section.popular-section .popular-card:hover .popular-image {
    transform: none !important;
}

section.popular-section .popular-image-placeholder {
    position: absolute !important;
    top: 5px !important;
    left: 5px !important;
    width: calc(100% - 10px) !important;
    height: calc(100% - 10px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #FF6B35 0%, #E85A2A 100%) !important;
    color: white !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    border-radius: 50% !important;
    z-index: 2 !important;
}

section.popular-section .popular-info {
    padding: 8px 0 0 0 !important;
    text-align: center !important;
    width: 100% !important;
}

section.popular-section .popular-name {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #2D3436 !important;
    margin-bottom: 0 !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 80px !important;
}

/* Fiyat ve alerjen bilgilerini gizle */
section.popular-section .popular-card .popular-price,
section.popular-section .popular-card .allergen-icons {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    section.popular-section .popular-card {
        width: 72px !important;
        min-width: 72px !important;
    }
    
    section.popular-section .popular-image-wrapper {
        width: 66px !important;
        height: 66px !important;
    }
    
    section.popular-section .popular-name {
        font-size: 11px !important;
        max-width: 72px !important;
    }
    
    section.popular-section .popular-slider {
        gap: 14px !important;
    }
}

/* ==================== KATEGORİ NAVİGASYONU - ŞEFFAF & MİNİMAL ==================== */

.category-nav,
.categories-nav {
    background: transparent !important;
    padding: 12px 0;
    position: sticky;
    top: 60px;
    z-index: 90;
}

.category-nav-list,
.categories-nav-list {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 8px 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    background: transparent !important;
}

.category-nav-list::-webkit-scrollbar,
.categories-nav-list::-webkit-scrollbar {
    display: none;
}

.category-nav-item,
.categories-nav-item {
    flex-shrink: 0;
    padding: 10px 20px;
    background: transparent !important;
    border: none !important;
    border-radius: 16px !important;
    font-size: 14px;
    font-weight: 500;
    color: #636E72 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    text-decoration: none;
    white-space: nowrap;
}

.category-nav-item:hover,
.categories-nav-item:hover {
    color: #2D3436 !important;
    background: rgba(0, 0, 0, 0.03) !important;
}

.category-nav-item.active,
.categories-nav-item.active {
    background: #FF6B35 !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3) !important;
}

/* ==================== FAVORİLER SİSTEMİ ==================== */

/* Favori Butonu - Ürün Kartlarında */
.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF !important;
    border: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 15;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease !important;
}

.favorite-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
}

.favorite-btn.active {
    animation: heartPop 0.3s ease;
    color: #e74c3c !important;
}

@keyframes heartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Header Favori Butonu */
.favorites-header-btn {
    position: relative;
    background: #F8F9FA !important;
    border: 1px solid #EFEFEF !important;
    padding: 10px 14px;
    border-radius: 12px !important;
    cursor: pointer;
    font-size: 18px;
    color: #2D3436 !important;
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.favorites-header-btn:hover {
    background: #EFEFEF !important;
}

#favoritesCount {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #FF6B35 !important;
    color: white !important;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Modal Butonlar Satırı */
.modal-buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    align-items: center;
}

/* Modal Favori Butonu */
.modal-favorite-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: #F8F9FA !important;
    border: 2px solid #EFEFEF !important;
    border-radius: 12px !important;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #636E72 !important;
    transition: all 0.3s ease !important;
    flex: 1;
    min-width: 0;
    justify-content: center;
    white-space: nowrap;
}

.modal-favorite-btn:hover {
    background: #fff0f0 !important;
    border-color: #ffcdd2 !important;
    color: #e74c3c !important;
}

.modal-favorite-btn.active {
    background: #fff0f0 !important;
    border-color: #e74c3c !important;
    color: #e74c3c !important;
}

/* Modal WhatsApp Butonu */
.modal-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: #25D366 !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: white !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25) !important;
    flex: 1;
    min-width: 0;
    justify-content: center;
    white-space: nowrap;
}

.modal-whatsapp-btn:hover {
    background: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35) !important;
}

/* Modal Telefon Butonu */
.modal-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: #FF6B35 !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25) !important;
    flex: 1;
    min-width: 0;
    justify-content: center;
    white-space: nowrap;
}

.modal-call-btn:hover {
    background: #E85A2A !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.35) !important;
    color: white !important;
}


/* ==================== GÜNÜN MENÜSÜ - MODERN ==================== */
.daily-menu-section {
    padding: 20px 0;
}

.daily-menu-card {
    background: #FFFFFF !important;
    border-radius: 16px !important;
    overflow: hidden;
    display: flex;
    cursor: pointer;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
    border: 2px solid var(--theme-primary, #FF6B35) !important;
    position: relative;
}

.daily-menu-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
}

.daily-menu-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--theme-primary, #FF6B35) !important;
    color: white !important;
    padding: 6px 14px;
    border-radius: 16px !important;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.daily-menu-image {
    width: 140px;
    min-width: 140px;
    height: 140px;
    overflow: hidden;
}

.daily-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.daily-menu-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: #F8F9FA !important;
}

.daily-menu-info {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.daily-menu-info h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #2D3436 !important;
    margin: 0 0 6px 0;
}

.daily-menu-desc {
    font-size: 13px !important;
    color: #636E72 !important;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.daily-menu-price {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--theme-primary, #FF6B35) !important;
}

@media (max-width: 480px) {
    .daily-menu-image {
        width: 110px;
        min-width: 110px;
        height: 110px;
    }
    
    .daily-menu-info h3 {
        font-size: 16px !important;
    }
    
    .daily-menu-price {
        font-size: 18px !important;
    }
    
    .daily-menu-badge {
        font-size: 10px;
        padding: 4px 10px;
    }
}

/* ==================== TOAST BİLDİRİMİ ==================== */
.favorites-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #2D3436 !important;
    color: white !important;
    padding: 14px 28px;
    border-radius: 16px !important;
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.favorites-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ==================== FAVORİLER MODAL ==================== */
#favoritesModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    align-items: flex-end;
    justify-content: center;
}

.favorites-modal-content {
    background: #FFFFFF !important;
    border-radius: 16px 16px 0 0 !important;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15) !important;
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.favorites-modal-header {
    position: sticky;
    top: 0;
    background: #FFFFFF !important;
    padding: 20px;
    border-bottom: 1px solid #EFEFEF !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.favorites-modal-header h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #2D3436 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.favorites-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F8F9FA !important;
    border: none !important;
    cursor: pointer;
    font-size: 16px;
    color: #636E72 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
}

.favorites-modal-close:hover {
    background: #EFEFEF !important;
}

.favorites-modal-body {
    padding: 16px;
}

/* Favoriler Listesi */
.favorites-empty {
    text-align: center;
    padding: 60px 20px;
    color: #636E72 !important;
}

.favorites-empty p:first-child {
    font-size: 48px;
    margin-bottom: 15px;
}

.favorites-empty p:nth-child(2) {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #2D3436 !important;
    margin-bottom: 10px;
}

.favorites-empty small {
    font-size: 14px !important;
    color: #636E72 !important;
}

.favorites-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background: #F8F9FA !important;
    border-radius: 12px !important;
    margin-bottom: 10px;
    transition: all 0.3s ease !important;
}

.favorites-item:hover {
    background: #EFEFEF !important;
}

.favorites-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px !important;
    overflow: hidden;
    flex-shrink: 0;
    background: #EFEFEF !important;
}

.favorites-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.favorites-item-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #636E72 !important;
}

.favorites-item-info {
    flex: 1;
    min-width: 0;
}

.favorites-item-info h4 {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #2D3436 !important;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.favorites-item-category {
    display: block;
    font-size: 12px !important;
    color: #636E72 !important;
    margin-bottom: 4px;
}

.favorites-item-price {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #FF6B35 !important;
}

.favorites-item-remove {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF !important;
    border: 1px solid #EFEFEF !important;
    cursor: pointer;
    font-size: 14px;
    color: #636E72 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
    flex-shrink: 0;
}

.favorites-item-remove:hover {
    background: #fee !important;
    border-color: #e74c3c !important;
    color: #e74c3c !important;
}

/* Desktop Favoriler Modal */
@media (min-width: 769px) {
    #favoritesModal {
        align-items: center;
        padding: 20px;
    }
    
    .favorites-modal-content {
        max-width: 500px;
        border-radius: 16px !important;
        max-height: 70vh;
    }
}

/* Mobil Uyum */
@media (max-width: 480px) {
    .favorites-header-btn {
        padding: 8px 12px;
        font-size: 16px;
    }
    
    .favorite-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* Favori Silme Butonu */
.fav-remove-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF !important;
    border: 1px solid #EFEFEF !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
    flex-shrink: 0;
}

.fav-remove-btn:hover {
    background: #fee !important;
    border-color: #e74c3c !important;
}


/* ==================== MOBİL HAMBURGER MENÜ ==================== */

/* Hamburger Butonu */
.hamburger-btn {
    display: none;
    background: #F8F9FA !important;
    border: 1px solid #EFEFEF !important;
    width: 44px;
    height: 44px;
    border-radius: 12px !important;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 101;
    position: relative;
}

.hamburger-btn:hover,
.hamburger-btn:active {
    background: #EFEFEF !important;
}

.hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #2D3436 !important;
    border-radius: 2px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobil Menü Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-menu-overlay.show {
    display: block;
    opacity: 1;
}

/* Mobil Menü Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15) !important;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu-header {
    padding: 60px 24px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: rgba(255, 255, 255, 0.5) !important;
}

.mobile-menu-header h3 {
    font-size: 26px !important;
    font-weight: 700 !important;
    margin: 0;
    color: #2D3436 !important;
    letter-spacing: -0.5px;
}

.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(248, 249, 250, 0.8) !important;
    border: none !important;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #636E72 !important;
    font-size: 14px;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

.mobile-menu-close:active {
    background: rgba(239, 239, 239, 0.9) !important;
    transform: scale(0.95);
}

.mobile-menu-content {
    padding: 24px;
}

.mobile-menu-section {
    margin-bottom: 8px;
}

.mobile-menu-section-title {
    display: none;
}

/* Mobil Menü - Favoriler Butonu */
.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #F8F9FA !important;
    border-radius: 16px !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    text-decoration: none;
    color: #2D3436 !important;
    border: none !important;
    width: 100%;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: -0.2px;
}

.mobile-menu-item:active {
    background: #EFEFEF !important;
    transform: scale(0.98);
}

.mobile-menu-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: #F0F0F0 !important;
    box-shadow: none !important;
}

.mobile-menu-item-icon svg {
    stroke: #2D3436 !important;
    fill: none !important;
}

.mobile-menu-item-icon.favorites {
    background: #F0F0F0 !important;
    box-shadow: none !important;
}

.mobile-menu-item-icon.favorites svg {
    stroke: #e74c3c !important;
    fill: none !important;
}

.mobile-menu-item-icon.lang-icon {
    background: #F0F0F0 !important;
    box-shadow: none !important;
}

.mobile-menu-item-icon.lang-icon svg {
    stroke: #2D3436 !important;
}

.mobile-menu-item-badge {
    margin-left: auto;
    background: #FF6B35 !important;
    color: white !important;
    font-size: 13px;
    font-weight: 600;
    min-width: 24px;
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
}

/* Mobil Menü - Dil Listesi */
.mobile-lang-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: #F8F9FA !important;
    border-radius: 12px !important;
    margin-top: 8px;
}

/* Mobil Menü - Accordion */
.mobile-menu-accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px;
    background: #F8F9FA !important;
    border-radius: 16px !important;
    cursor: pointer;
    border: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #2D3436 !important;
    letter-spacing: -0.2px;
    transition: all 0.3s ease !important;
}

.mobile-menu-accordion:active {
    background: #EFEFEF !important;
    transform: scale(0.98);
}

.accordion-arrow {
    color: #636E72 !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-lang-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #FFFFFF !important;
    border-radius: 12px !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    text-decoration: none;
    color: #2D3436 !important;
}

.mobile-lang-item:active {
    transform: scale(0.98);
}

.mobile-lang-item.active {
    background: #FF6B35 !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25) !important;
}

.mobile-lang-item .lang-flag {
    font-size: 26px;
}

.mobile-lang-item .lang-name {
    font-size: 15px !important;
    font-weight: 500 !important;
}

.mobile-lang-item .lang-check {
    margin-left: auto;
}

/* Desktop Header Butonları */
.desktop-header-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }
    
    .desktop-header-btns {
        display: none !important;
    }
    
    .language-selector .lang-dropdown,
    .language-selector .favorites-header-btn:not(.mobile-visible) {
        display: none !important;
    }
}

/* ==================== EK MODERN DOKUNUŞLAR ==================== */

/* Genel Buton Stilleri */
button, .btn {
    font-family: 'Inter', sans-serif !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
}

/* Link Stilleri */
a {
    color: #FF6B35 !important;
    text-decoration: none;
    transition: all 0.3s ease !important;
}

a:hover {
    color: #E85A2A !important;
}

/* Seçim Vurgusu */
::selection {
    background: #FF6B35 !important;
    color: white !important;
}

/* Focus Stilleri - Erişilebilirlik */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid #FF6B35 !important;
    outline-offset: 2px;
}

/* Placeholder Stilleri */
::placeholder {
    color: #636E72 !important;
    opacity: 0.7;
}

/* Input Stilleri */
input, textarea, select {
    font-family: 'Inter', sans-serif !important;
    border: 1px solid #EFEFEF !important;
    border-radius: 8px !important;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease !important;
    background: #FFFFFF !important;
    color: #2D3436 !important;
}

input:focus, textarea:focus, select:focus {
    border-color: #FF6B35 !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

/* Loading Animasyonu */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #F8F9FA 25%, #EFEFEF 50%, #F8F9FA 75%) !important;
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px !important;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Alerjen İkonları */
.allergen-icons {
    font-size: 14px !important;
    margin-top: 5px;
    color: #636E72 !important;
}


/* ==================== GECE MODU (DARK MODE) ==================== */

/* Gece Modu Değişkenleri */
body.dark-mode {
    --bg-primary: #121212 !important;
    --bg-card: #1E1E1E !important;
    --accent-primary: #FF6B35 !important;
    --accent-secondary: #E85A2A !important;
    --text-primary: #FFFFFF !important;
    --text-secondary: #A0A0A0 !important;
    --border-color: #2D2D2D !important;
}

body.dark-mode {
    background: #121212 !important;
    color: #FFFFFF !important;
}

/* Header - Gece Modu */
body.dark-mode .header {
    background: #1E1E1E !important;
    border-bottom-color: #2D2D2D !important;
}

body.dark-mode .restaurant-logo {
    color: #FFFFFF !important;
}

/* Logo resmi - Gece Modu (karanlık arka plan için aydınlat) */
body.dark-mode .header-content img {
    filter: brightness(0) invert(1) !important;
    transition: filter 0.3s ease;
}

body.dark-mode .hamburger-btn {
    background: #2D2D2D !important;
    border-color: #3D3D3D !important;
}

body.dark-mode .hamburger-btn span {
    background: #FFFFFF !important;
}

body.dark-mode .favorites-header-btn,
body.dark-mode .lang-btn {
    background: #2D2D2D !important;
    border-color: #3D3D3D !important;
    color: #FFFFFF !important;
}

body.dark-mode .favorites-header-btn svg {
    stroke: #FFFFFF !important;
}

/* Popüler Ürünler - Gece Modu */
body.dark-mode .popular-section {
    background: #1E1E1E !important;
}

body.dark-mode .section-title {
    color: #FFFFFF !important;
}

body.dark-mode .popular-card {
    background: #2D2D2D !important;
}

body.dark-mode .popular-name {
    color: #FFFFFF !important;
}

body.dark-mode .popular-image-placeholder {
    background: #2D2D2D !important;
}

/* Kategori Kartları - Gece Modu */
body.dark-mode .category-card {
    box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
}

/* Ürün Listesi - Gece Modu */
body.dark-mode .product-list-item {
    background: #1E1E1E !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
    border-color: rgba(255,255,255,0.05) !important;
}

body.dark-mode .product-list-item:hover {
    box-shadow: 0 12px 40px rgba(255,107,53,0.2) !important;
    border-color: rgba(255,107,53,0.3) !important;
}

body.dark-mode .product-list-image {
    background: linear-gradient(135deg, #2D2D2D 0%, #252525 100%) !important;
}

body.dark-mode .product-list-name {
    color: #FFFFFF !important;
}

body.dark-mode .product-list-description {
    color: #A0A0A0 !important;
}

body.dark-mode .product-list-placeholder {
    background: linear-gradient(135deg, #2D2D2D 0%, #252525 100%) !important;
}

/* Geri Dön Bölümü - Gece Modu */
body.dark-mode .back-section {
    background: #1E1E1E !important;
}

body.dark-mode .category-title {
    color: #FFFFFF !important;
}

/* Modal - Gece Modu */
body.dark-mode .modal-content {
    background: #1E1E1E !important;
}

body.dark-mode .modal-info h2 {
    color: #FFFFFF !important;
}

body.dark-mode .modal-description {
    color: #A0A0A0 !important;
}

body.dark-mode .modal-close {
    background: #2D2D2D !important;
    color: #FFFFFF !important;
}

body.dark-mode .modal-image-wrapper {
    background: #2D2D2D !important;
}

/* Favoriler Modal - Gece Modu */
body.dark-mode .favorites-modal-content {
    background: #1E1E1E !important;
}

body.dark-mode .favorites-modal-header {
    background: #1E1E1E !important;
    border-bottom-color: #2D2D2D !important;
}

body.dark-mode .favorites-modal-header h3 {
    color: #FFFFFF !important;
}

body.dark-mode .favorites-item {
    background: #2D2D2D !important;
}

body.dark-mode .favorites-item:hover {
    background: #3D3D3D !important;
}

body.dark-mode .favorites-item-info h4 {
    color: #FFFFFF !important;
}

body.dark-mode .favorites-item-category {
    color: #A0A0A0 !important;
}

body.dark-mode .favorites-item-remove {
    background: #2D2D2D !important;
    border-color: #3D3D3D !important;
    color: #A0A0A0 !important;
}

body.dark-mode .favorites-empty p:nth-child(2) {
    color: #FFFFFF !important;
}

/* Mobil Menü - Gece Modu */
body.dark-mode .mobile-menu {
    background: rgba(30, 30, 30, 0.9) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

body.dark-mode .mobile-menu-header {
    background: rgba(30, 30, 30, 0.5) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .mobile-menu-close {
    background: rgba(45, 45, 45, 0.8) !important;
}

body.dark-mode .mobile-menu-header {
    border-bottom-color: #2D2D2D !important;
}

body.dark-mode .mobile-menu-header h3 {
    color: #FFFFFF !important;
}

body.dark-mode .mobile-menu-close {
    background: #2D2D2D !important;
    color: #A0A0A0 !important;
}

body.dark-mode .mobile-menu-item {
    background: #2D2D2D !important;
    color: #FFFFFF !important;
}

body.dark-mode .mobile-menu-item:active {
    background: #3D3D3D !important;
}

body.dark-mode .mobile-menu-accordion {
    background: #2D2D2D !important;
    color: #FFFFFF !important;
}

body.dark-mode .mobile-lang-list {
    background: #2D2D2D !important;
}

body.dark-mode .mobile-lang-item {
    background: #1E1E1E !important;
    color: #FFFFFF !important;
}

body.dark-mode .mobile-hours-list {
    background: #2D2D2D !important;
}

body.dark-mode .mobile-hours-item {
    background: #1E1E1E !important;
    color: #FFFFFF !important;
}

body.dark-mode .mobile-hours-item .hours-time {
    color: #4CAF50 !important;
}

/* Arama Modal - Gece Modu */
body.dark-mode .search-modal-content {
    background: #1E1E1E !important;
}

body.dark-mode .search-input-wrap {
    border-bottom-color: #2D2D2D !important;
}

body.dark-mode .search-input-wrap input {
    background: transparent !important;
    color: #FFFFFF !important;
}

body.dark-mode .search-result-item {
    border-bottom-color: #2D2D2D !important;
}

body.dark-mode .search-result-item:hover {
    background: #2D2D2D !important;
}

body.dark-mode .search-result-info h4 {
    color: #FFFFFF !important;
}

body.dark-mode .search-no-results {
    color: #A0A0A0 !important;
}

/* Günün Menüsü - Gece Modu */
body.dark-mode .daily-menu-card {
    background: #1E1E1E !important;
}

body.dark-mode .daily-menu-info h3 {
    color: #FFFFFF !important;
}

body.dark-mode .daily-menu-desc {
    color: #A0A0A0 !important;
}

body.dark-mode .daily-menu-placeholder {
    background: #2D2D2D !important;
}

/* Dil Menüsü - Gece Modu */
body.dark-mode .lang-menu {
    background: #1E1E1E !important;
    border-color: #2D2D2D !important;
}

body.dark-mode .lang-option {
    color: #FFFFFF !important;
}

body.dark-mode .lang-option:hover {
    background: #2D2D2D !important;
}

body.dark-mode .lang-option.active {
    background: #2D2D2D !important;
}

/* Footer - Gece Modu */
body.dark-mode footer {
    background: #1E1E1E !important;
    border-top-color: #2D2D2D !important;
    color: #A0A0A0 !important;
}

/* Scrollbar - Gece Modu */
body.dark-mode ::-webkit-scrollbar-thumb {
    background: #3D3D3D !important;
}

body.dark-mode ::-webkit-scrollbar-track {
    background: #1E1E1E !important;
}

/* Toast - Gece Modu */
body.dark-mode .favorites-toast {
    background: #2D2D2D !important;
}

/* Kategori Navigasyonu - Gece Modu */
body.dark-mode .category-nav-item,
body.dark-mode .categories-nav-item {
    color: #A0A0A0 !important;
}

body.dark-mode .category-nav-item:hover,
body.dark-mode .categories-nav-item:hover {
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Input - Gece Modu */
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background: #2D2D2D !important;
    border-color: #3D3D3D !important;
    color: #FFFFFF !important;
}

/* Butonlar - Gece Modu */
body.dark-mode .modal-favorite-btn {
    background: #2D2D2D !important;
    border-color: #3D3D3D !important;
    color: #A0A0A0 !important;
}

body.dark-mode .modal-favorite-btn:hover {
    background: #3D3D3D !important;
}

/* Geçiş Animasyonu */
body, .header, .popular-section, .product-list-item, .modal-content, 
.favorites-modal-content, .mobile-menu, .search-modal-content, footer {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}


/* ==================== MODERN ÜRÜN MODAL V2 ==================== */

/* Modal Overlay */
.product-modal-v2 {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Modal İçerik */
.product-modal-content-v2 {
    background: #FFFFFF;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    position: relative;
    box-shadow: none;
    animation: modalSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from { 
        opacity: 0; 
        transform: scale(0.9) translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

/* Kapatma Butonu */
.modal-close-v2 {
    position: fixed;
    top: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #2D3436;
    backdrop-filter: blur(10px);
}

.modal-close-v2:hover {
    background: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

/* Görsel Alanı */
.modal-image-wrapper-v2 {
    position: relative;
    width: 100%;
    height: 45vh;
    min-height: 280px;
    max-height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    flex-shrink: 0;
}

.modal-image-v2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modal-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

/* Etiketler - Başlık Altında Düzenli */
.modal-tags-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
    margin-bottom: 6px;
    justify-content: flex-start;
}

.modal-tag-v2 {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    animation: tagFadeIn 0.4s ease forwards;
    opacity: 0;
}

.modal-tag-v2 svg {
    width: 12px;
    height: 12px;
}

.modal-tag-v2:nth-child(1) { animation-delay: 0.1s; }
.modal-tag-v2:nth-child(2) { animation-delay: 0.2s; }
.modal-tag-v2:nth-child(3) { animation-delay: 0.3s; }

@keyframes tagFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-tag-v2.discount-tag-v2 {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    animation: discountPulse 2s infinite;
}

@keyframes discountPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(238, 90, 90, 0.4); }
    50% { box-shadow: 0 6px 25px rgba(238, 90, 90, 0.6); }
}

/* İçerik Alanı */
.modal-info-v2 {
    padding: 16px 20px 20px;
}

/* Kategori Badge */
.modal-category-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: linear-gradient(135deg, #FF6B35 0%, #E85A2A 100%);
    color: white;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.modal-category-badge-v2 svg {
    opacity: 0.9;
}

/* Ürün Adı */
.modal-name-v2 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Hazırlama Süresi */
.modal-prep-time-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.modal-prep-time-v2 svg {
    color: #28a745;
}

/* Açıklama */
.modal-description-v2 {
    font-size: 14px;
    color: #636E72;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

/* Alerjen Bilgisi */
.modal-allergens-v2 {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
}

.allergen-header-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #856404;
    margin-bottom: 6px;
}

.allergen-header-v2 svg {
    color: #d39e00;
}

.allergen-list-v2 {
    font-size: 13px;
    color: #856404;
    line-height: 1.5;
}

/* Footer - Fiyat ve Butonlar - SABİT ALT BAR */
.modal-footer-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid #f1f3f4;
    margin-top: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1002;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.modal-price-v2 {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.modal-price-v2 .price-label {
    font-size: 11px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-price-v2 .price-value {
    font-size: 28px;
    font-weight: 800;
    color: #FF6B35;
    letter-spacing: -1px;
}

/* Aksiyon Butonları */
.modal-actions-v2 {
    display: flex;
    gap: 10px;
}

.modal-action-btn-v2 {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

/* Favori Butonu */
.favorite-btn-v2 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #636E72;
    border: 2px solid #e9ecef;
}

.favorite-btn-v2:hover {
    background: linear-gradient(135deg, #ffe6e6 0%, #ffcccc 100%);
    border-color: #ffb3b3;
    color: #e74c3c;
    transform: scale(1.08);
}

.favorite-btn-v2.active {
    background: linear-gradient(135deg, #ffe6e6 0%, #ffcccc 100%);
    border-color: #e74c3c;
    color: #e74c3c;
}

.favorite-btn-v2.active svg {
    fill: #e74c3c;
    animation: heartBeat 0.4s ease;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* WhatsApp Butonu */
.whatsapp-btn-v2 {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #25D366;
    border: 2px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn-v2:hover {
    transform: scale(1.08) translateY(-2px);
    background: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn-v2 svg {
    stroke: #25D366 !important;
    fill: #25D366 !important;
}

/* Telefon Butonu */
.call-btn-v2 {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--theme-primary, #3498db);
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.call-btn-v2:hover {
    transform: scale(1.08) translateY(-2px);
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--theme-primary, #3498db);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.call-btn-v2 svg {
    stroke: var(--theme-primary, #3498db) !important;
}

/* Enerjik tema - Modal butonları */
body.theme-energetic .call-btn-v2 {
    border-color: rgba(0, 0, 0, 0.1);
}

body.theme-energetic .call-btn-v2:hover {
    border-color: var(--theme-primary);
}

body.theme-energetic .call-btn-v2 svg {
    stroke: var(--theme-primary) !important;
}

/* Gece modu - Modal butonları */
body.dark-mode .whatsapp-btn-v2,
body.dark-mode .call-btn-v2 {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .whatsapp-btn-v2:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
}

body.dark-mode .call-btn-v2:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--theme-primary, #3498db);
}

/* Responsive - Mobil */
@media (max-width: 480px) {
    .product-modal-v2 {
        padding: 0;
        align-items: stretch;
    }
    
    .product-modal-content-v2 {
        max-width: 100%;
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        animation: modalSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    @keyframes modalSlideUp {
        from { 
            opacity: 0; 
            transform: translateY(100%); 
        }
        to { 
            opacity: 1; 
            transform: translateY(0); 
        }
    }
    
    .modal-close-v2 {
        position: fixed;
        top: 12px;
        left: 12px;
        width: 42px;
        height: 42px;
    }
    
    .modal-image-wrapper-v2 {
        height: 40vh;
        min-height: 250px;
        max-height: 350px;
    }
    
    .modal-info-v2 {
        padding: 16px 20px 100px;
    }
    
    .modal-name-v2 {
        font-size: 22px;
    }
    
    .modal-description-v2 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .modal-price-v2 .price-value {
        font-size: 26px;
    }
    
    .modal-action-btn-v2 {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
}

/* Gece Modu - Modal V2 */
body.dark-mode .product-modal-content-v2 {
    background: #1E1E1E;
}

body.dark-mode .modal-close-v2 {
    background: rgba(45, 45, 45, 0.95);
    color: #FFFFFF;
}

body.dark-mode .modal-image-wrapper-v2 {
    background: linear-gradient(135deg, #2D2D2D 0%, #1E1E1E 100%);
}

body.dark-mode .modal-image-overlay {
    background: linear-gradient(to top, rgba(30,30,30,1) 0%, rgba(30,30,30,0) 100%);
}

body.dark-mode .modal-name-v2 {
    color: #FFFFFF;
}

body.dark-mode .modal-description-v2 {
    color: #A0A0A0;
}

body.dark-mode .modal-footer-v2 {
    border-top-color: #2D2D2D;
    background: rgba(30, 30, 30, 0.98);
}

body.dark-mode .modal-price-v2 .price-label {
    color: #666;
}

body.dark-mode .favorite-btn-v2 {
    background: linear-gradient(135deg, #2D2D2D 0%, #3D3D3D 100%);
    border-color: #3D3D3D;
    color: #A0A0A0;
}

body.dark-mode .favorite-btn-v2:hover {
    background: linear-gradient(135deg, #3D3D3D 0%, #4D4D4D 100%);
    border-color: #e74c3c;
    color: #e74c3c;
}

body.dark-mode .modal-allergens-v2 {
    background: linear-gradient(135deg, #3D3D3D 0%, #2D2D2D 100%);
}

body.dark-mode .allergen-header-v2,
body.dark-mode .allergen-list-v2 {
    color: #ffc107;
}

body.dark-mode .modal-prep-time-v2 {
    background: linear-gradient(135deg, #2D3D2D 0%, #1E2E1E 100%);
    color: #4CAF50;
}


/* ==================== DESKTOP GECE MODU BUTONU ==================== */

/* Desktop Header Butonları - Şeffaf ve Minimal */
.desktop-header-btns .dark-mode-header-btn {
    background: #F8F9FA !important;
    border: 1px solid #EFEFEF !important;
    box-shadow: none !important;
}

.desktop-header-btns .dark-mode-header-btn:hover {
    background: #EFEFEF !important;
    transform: scale(1.05) !important;
}

.desktop-header-btns .dark-mode-header-btn svg {
    stroke: #2D3436 !important;
}

.desktop-header-btns .favorites-header-btn {
    background: #F8F9FA !important;
    border: 1px solid #EFEFEF !important;
    box-shadow: none !important;
}

.desktop-header-btns .favorites-header-btn:hover {
    background: #EFEFEF !important;
    transform: scale(1.05) !important;
}

.desktop-header-btns .favorites-header-btn svg {
    stroke: #2D3436 !important;
    fill: none !important;
}

.desktop-header-btns .lang-btn {
    background: #F8F9FA !important;
    border: 1px solid #EFEFEF !important;
    color: #2D3436 !important;
    box-shadow: none !important;
}

.desktop-header-btns .lang-btn:hover {
    background: #EFEFEF !important;
    transform: scale(1.05) !important;
}

.desktop-header-btns .lang-btn .lang-arrow {
    color: #636E72 !important;
}

/* Gece modunda desktop butonları */
body.dark-mode .desktop-header-btns .dark-mode-header-btn {
    background: #2D2D2D !important;
    border-color: #3D3D3D !important;
}

body.dark-mode .desktop-header-btns .dark-mode-header-btn svg {
    stroke: #ffc107 !important;
}

body.dark-mode .desktop-header-btns .favorites-header-btn {
    background: #2D2D2D !important;
    border-color: #3D3D3D !important;
}

body.dark-mode .desktop-header-btns .favorites-header-btn svg {
    stroke: #FFFFFF !important;
}

body.dark-mode .desktop-header-btns .lang-btn {
    background: #2D2D2D !important;
    border-color: #3D3D3D !important;
    color: #FFFFFF !important;
}

body.dark-mode .desktop-header-btns .lang-btn .lang-arrow {
    color: #A0A0A0 !important;
}

/* ==================== ENERJİK KAFE TEMASI ==================== */
body.theme-energetic {
    --bg-primary: #F5F7FA !important;
    --bg-card: #FFFFFF !important;
    --accent-primary: var(--theme-primary) !important;
    --accent-secondary: var(--theme-secondary) !important;
    --text-primary: #2F3542 !important;
    --text-secondary: #57606F !important;
    --border-color: #E8ECEF !important;
    --primary-color: var(--theme-primary) !important;
    --secondary-color: var(--theme-secondary) !important;
}

body.theme-energetic .header {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 100%) !important;
}

body.theme-energetic .category-btn.active,
body.theme-energetic .category-btn:hover {
    background: var(--theme-primary) !important;
    border-color: var(--theme-primary) !important;
}

body.theme-energetic .product-price,
body.theme-energetic .popular-price,
body.theme-energetic .product-list-price,
body.theme-energetic .modal-price,
body.theme-energetic .modal-category {
    color: var(--theme-primary) !important;
}

body.theme-energetic .btn-primary,
body.theme-energetic button[type="submit"],
body.theme-energetic .back-btn,
body.theme-energetic .modal-add-btn {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 100%) !important;
    border-color: var(--theme-primary) !important;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

body.theme-energetic .btn-primary:hover,
body.theme-energetic .back-btn:hover {
    filter: brightness(0.9);
}

body.theme-energetic .mobile-nav-item.active,
body.theme-energetic .mobile-nav-item:hover {
    color: var(--theme-primary) !important;
}

body.theme-energetic .mobile-nav-item.active svg,
body.theme-energetic .mobile-nav-item:hover svg {
    stroke: var(--theme-primary) !important;
}

body.theme-energetic .badge,
body.theme-energetic .tag,
body.theme-energetic .mobile-menu-item-badge {
    background: var(--theme-primary) !important;
    color: white !important;
}

body.theme-energetic a {
    color: var(--theme-primary) !important;
}

body.theme-energetic .footer {
    background: #2F3542 !important;
}

body.theme-energetic .search-input:focus,
body.theme-energetic input:focus,
body.theme-energetic textarea:focus,
body.theme-energetic select:focus {
    border-color: var(--theme-primary) !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1) !important;
}

/* Ürün kartları sol kenar */
body.theme-energetic .product-list-item::before,
body.theme-energetic .popular-item::before {
    background: linear-gradient(180deg, var(--theme-primary) 0%, var(--theme-secondary) 100%) !important;
}

/* Ürün kartı border */
body.theme-energetic .popular-item,
body.theme-energetic .product-list-item {
    border-color: var(--theme-primary) !important;
}

/* Kategori navigasyonu */
body.theme-energetic .category-nav-item.active,
body.theme-energetic .categories-nav-item.active {
    background: var(--theme-primary) !important;
}

body.theme-energetic .category-bg-default {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 100%) !important;
}

/* Favori badge */
body.theme-energetic .favorites-count,
body.theme-energetic .fav-count {
    background: var(--theme-primary) !important;
}

/* Seçim vurgusu */
body.theme-energetic ::selection {
    background: var(--theme-primary) !important;
    color: white !important;
}

/* Focus outline */
body.theme-energetic button:focus-visible,
body.theme-energetic a:focus-visible,
body.theme-energetic input:focus-visible {
    outline-color: var(--theme-primary) !important;
}

/* Mobil dil seçici */
body.theme-energetic .mobile-lang-item.active {
    background: var(--theme-primary) !important;
}

/* Logo çerçevesi */
body.theme-energetic .logo-frame {
    background: linear-gradient(45deg, var(--theme-primary) 0%, var(--theme-secondary) 100%) !important;
}

/* Enerjik tema - Hover stilleri */
body.theme-energetic .product-list-item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--theme-primary) !important;
}

body.theme-energetic .popular-item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--theme-primary) !important;
}

body.theme-energetic.dark-mode .product-list-item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
    border-color: var(--theme-primary) !important;
}

body.theme-energetic.dark-mode .popular-item:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
    border-color: var(--theme-primary) !important;
}

/* Enerjik tema - Header butonları */
body.theme-energetic .desktop-header-btns .dark-mode-header-btn,
body.theme-energetic .desktop-header-btns .favorites-header-btn,
body.theme-energetic .desktop-header-btns .lang-btn {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    color: white !important;
}

body.theme-energetic .desktop-header-btns .dark-mode-header-btn:hover,
body.theme-energetic .desktop-header-btns .favorites-header-btn:hover,
body.theme-energetic .desktop-header-btns .lang-btn:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: scale(1.05) !important;
}

body.theme-energetic .desktop-header-btns .dark-mode-header-btn svg,
body.theme-energetic .desktop-header-btns .favorites-header-btn svg {
    stroke: white !important;
}

body.theme-energetic .desktop-header-btns .lang-btn {
    color: white !important;
}

body.theme-energetic .desktop-header-btns .lang-btn .lang-arrow {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Enerjik tema - Gece modu header */
body.theme-energetic.dark-mode .header {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #0d2137 100%) !important;
    border-bottom: 1px solid rgba(0, 206, 201, 0.3) !important;
    box-shadow: 0 4px 30px rgba(0, 206, 201, 0.1) !important;
}

body.theme-energetic.dark-mode .header .restaurant-name,
body.theme-energetic.dark-mode .header h1 {
    color: #00CEC9 !important;
    text-shadow: 0 0 20px rgba(0, 206, 201, 0.5) !important;
}

/* Enerjik tema - Modern header tasarımı */
body.theme-energetic .header {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 100%) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    border-bottom: none !important;
    position: sticky;
    z-index: 100;
}

body.theme-energetic .header .header-content {
    position: relative;
    z-index: 101;
}

body.theme-energetic .lang-menu {
    z-index: 9999 !important;
}

/* Enerjik tema - Gece modu */
body.theme-energetic.dark-mode .header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
    border-bottom: 1px solid var(--theme-primary) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

body.theme-energetic.dark-mode .header .restaurant-name,
body.theme-energetic.dark-mode .header h1 {
    color: var(--theme-primary) !important;
}

body.theme-energetic.dark-mode .desktop-header-btns .dark-mode-header-btn,
body.theme-energetic.dark-mode .desktop-header-btns .favorites-header-btn,
body.theme-energetic.dark-mode .desktop-header-btns .lang-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

body.theme-energetic.dark-mode .desktop-header-btns .dark-mode-header-btn:hover,
body.theme-energetic.dark-mode .desktop-header-btns .favorites-header-btn:hover,
body.theme-energetic.dark-mode .desktop-header-btns .lang-btn:hover {
    border-color: var(--theme-primary) !important;
}

body.theme-energetic.dark-mode .desktop-header-btns .dark-mode-header-btn svg {
    stroke: var(--theme-primary) !important;
}

body.theme-energetic.dark-mode .desktop-header-btns .favorites-header-btn svg {
    stroke: var(--theme-primary) !important;
}

body.theme-energetic.dark-mode .desktop-header-btns .lang-btn {
    color: var(--theme-primary) !important;
}

body.theme-energetic .header .restaurant-name,
body.theme-energetic .header h1 {
    color: white !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3) !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    position: relative;
    z-index: 1;
}

/* Enerjik tema - Mobil Menü Şık Tasarım */
body.theme-energetic .mobile-menu {
    background: #ffffff !important;
}

body.theme-energetic .mobile-menu-header {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 100%) !important;
    border-bottom: none !important;
    padding: 70px 24px 30px !important;
}

body.theme-energetic .mobile-menu-header h3 {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
}

body.theme-energetic .mobile-menu-close {
    background: rgba(255,255,255,0.2) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    color: white !important;
}

body.theme-energetic .mobile-menu-close:hover {
    background: rgba(255,255,255,0.3) !important;
}

body.theme-energetic .mobile-menu-item {
    background: white !important;
    border: 1px solid #e8e8e8 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

body.theme-energetic .mobile-menu-item:hover,
body.theme-energetic .mobile-menu-item:active {
    background: #f8f8f8 !important;
    border-color: var(--theme-primary) !important;
}

body.theme-energetic .mobile-menu-item-icon {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 100%) !important;
    border: none !important;
}

body.theme-energetic .mobile-menu-item-icon svg {
    stroke: white !important;
}

body.theme-energetic .mobile-menu-item-icon.favorites svg {
    stroke: white !important;
    fill: none !important;
}

body.theme-energetic .mobile-menu-accordion {
    background: white !important;
    border: 1px solid #e8e8e8 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

body.theme-energetic .mobile-menu-accordion:hover {
    background: #f8f8f8 !important;
}

body.theme-energetic .mobile-menu-accordion .mobile-menu-item-icon {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 100%) !important;
}

body.theme-energetic .mobile-menu-item span,
body.theme-energetic .mobile-menu-accordion span {
    color: #2D3436 !important;
}

/* ==================== ENERJİK TEMA - GECE MODU ==================== */
body.theme-energetic.dark-mode {
    --bg-primary: #121212 !important;
    --bg-card: #1E1E1E !important;
    --text-primary: #FFFFFF !important;
    --text-secondary: #A0A0A0 !important;
}

body.theme-energetic.dark-mode .product-price,
body.theme-energetic.dark-mode .popular-price,
body.theme-energetic.dark-mode .product-list-price,
body.theme-energetic.dark-mode .modal-price {
    color: var(--theme-primary) !important;
}

body.theme-energetic.dark-mode .product-list-item,
body.theme-energetic.dark-mode .popular-item {
    background: #1E1E1E !important;
    border-color: rgba(255,255,255,0.1) !important;
}

body.theme-energetic.dark-mode .product-list-item:hover,
body.theme-energetic.dark-mode .popular-item:hover {
    border-color: var(--theme-primary) !important;
}

body.theme-energetic.dark-mode .category-nav-item.active,
body.theme-energetic.dark-mode .categories-nav-item.active {
    background: var(--theme-primary) !important;
}

body.theme-energetic.dark-mode .mobile-menu {
    background: #121212 !important;
}

body.theme-energetic.dark-mode .mobile-menu-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    border-bottom: 1px solid var(--theme-primary) !important;
}

body.theme-energetic.dark-mode .mobile-menu-header h3 {
    color: var(--theme-primary) !important;
}

body.theme-energetic.dark-mode .mobile-menu-item {
    background: #1E1E1E !important;
    border-color: rgba(255,255,255,0.1) !important;
}

body.theme-energetic.dark-mode .mobile-menu-item:hover {
    background: #252525 !important;
    border-color: var(--theme-primary) !important;
}

body.theme-energetic.dark-mode .mobile-menu-item-icon {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 100%) !important;
}

body.theme-energetic.dark-mode .mobile-menu-item-icon svg {
    stroke: white !important;
}

body.theme-energetic.dark-mode .mobile-menu-close {
    background: #2D2D2D !important;
    color: var(--theme-primary) !important;
}

body.theme-energetic.dark-mode .mobile-menu-accordion {
    background: #1E1E1E !important;
    border-color: rgba(255,255,255,0.1) !important;
}

body.theme-energetic.dark-mode .mobile-menu-item span,
body.theme-energetic.dark-mode .mobile-menu-accordion span {
    color: #FFFFFF !important;
}

body.theme-energetic.dark-mode .footer {
    background: #0a0a0a !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
}

body.theme-energetic.dark-mode .lang-menu {
    background: #1E1E1E !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

body.theme-energetic.dark-mode .lang-option {
    color: #FFFFFF !important;
}

body.theme-energetic.dark-mode .lang-option:hover {
    background: #2D2D2D !important;
}

body.theme-energetic.dark-mode .lang-option.active {
    background: #2D2D2D !important;
    color: var(--theme-primary) !important;
}

/* Gece modu ikonu varsayılan stil */
.mobile-menu-item-icon.darkmode-icon {
    background: linear-gradient(145deg, #FF6B35, #E85A2A) !important;
}

.mobile-menu-item-icon.darkmode-icon svg {
    stroke: white !important;
    fill: white !important;
}

/* Gece modunda - turuncu tema */
body.dark-mode .mobile-menu-item-icon.darkmode-icon {
    background: linear-gradient(145deg, #FF6B35, #E85A2A) !important;
}

body.dark-mode .mobile-menu-item-icon.darkmode-icon svg {
    stroke: white !important;
    fill: white !important;
}

/* Enerjik tema - Gece modu ikonu */
body.theme-energetic .mobile-menu-item-icon.darkmode-icon {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 100%) !important;
}

body.theme-energetic .mobile-menu-item-icon.darkmode-icon svg {
    stroke: white !important;
    fill: white !important;
}

body.theme-energetic.dark-mode .mobile-menu-item-icon.darkmode-icon {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 100%) !important;
}

body.theme-energetic.dark-mode .mobile-menu-item-icon.darkmode-icon svg {
    stroke: white !important;
    fill: white !important;
}

/* Enerjik tema - Gece modu accordion içerikleri */
body.theme-energetic.dark-mode .mobile-menu-accordion-content {
    background: #1a1a1a !important;
    border-color: rgba(255,255,255,0.1) !important;
}

body.theme-energetic.dark-mode .mobile-hours-grid {
    background: transparent !important;
}

body.theme-energetic.dark-mode .mobile-hours-item {
    background: #252525 !important;
    border-color: #333 !important;
    color: #FFFFFF !important;
}

body.theme-energetic.dark-mode .mobile-hours-item .day-name,
body.theme-energetic.dark-mode .mobile-hours-item .hours-time {
    color: #FFFFFF !important;
}

body.theme-energetic.dark-mode .mobile-hours-item.today {
    background: linear-gradient(135deg, var(--theme-primary, #00CEC9), var(--theme-secondary, #00B5B0)) !important;
    color: white !important;
}

body.theme-energetic.dark-mode .mobile-lang-grid {
    background: transparent !important;
}

body.theme-energetic.dark-mode .mobile-lang-item {
    background: #252525 !important;
    border-color: #333 !important;
    color: #FFFFFF !important;
}

body.theme-energetic.dark-mode .mobile-lang-item:hover {
    background: #333 !important;
    border-color: var(--theme-primary, #00CEC9) !important;
}

body.theme-energetic.dark-mode .mobile-lang-item.active {
    background: var(--theme-primary, #00CEC9) !important;
    color: white !important;
    border-color: var(--theme-primary, #00CEC9) !important;
}

body.theme-energetic.dark-mode .mobile-menu-accordion .accordion-arrow {
    color: var(--theme-primary, #00CEC9) !important;
}

body.theme-energetic.dark-mode .mobile-menu-accordion:hover {
    background: #252525 !important;
    border-color: var(--theme-primary, #00CEC9) !important;
}
