:root {
    --bg-dark: #0f0f1a;       /* Çok koyu lacivert/siyah */
    --card-bg: #1b1b2f;       /* Kart arka planı */
    --neon-orange: #ff9f43;   /* Ana vurgu rengi */
    --neon-purple: #d63031;   /* İkincil vurgu (Kırmızıya kaçan mor) */
    --text-white: #ffffff;
    --text-gray: #a4b0be;
    --glow: 0 0 10px rgba(255, 159, 67, 0.5); /* Neon parlaması */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kanit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding-bottom: 80px; /* Mobil sepet butonu için boşluk */
}

/* Header & Logo */
.neon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: sticky;
    top: 0;
    background: rgba(15, 15, 26, 0.95);
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.neon-dot {
    color: var(--neon-orange);
    text-shadow: var(--glow);
}

/* Açık/Kapalı Badge */
.status-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 5px;
    display: inline-block;
    font-weight: 600;
}

/* Sepet İkonu */
.cart-icon {
    position: relative;
    font-size: 1.5rem;
    cursor: pointer;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--neon-orange);
    color: #000;
    font-size: 0.8rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(circle at center, #2c2c54 0%, #0f0f1a 70%);
}

.hero h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.highlight {
    color: var(--neon-orange);
    text-shadow: var(--glow);
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--neon-orange);
    color: var(--neon-orange);
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: var(--neon-orange);
    color: #000;
    box-shadow: 0 0 20px var(--neon-orange);
}

/* Filtre Butonları Kapsayıcısı */
.filter-container {
    display: flex;
    gap: 15px;
    padding: 20px 5%;
    
    /* Taşma ayarları */
    overflow-x: auto;       /* Yatay kaydırmaya izin ver */
    white-space: nowrap;    /* Satır başı yapmayı engelle */
    flex-wrap: nowrap;      /* Asla alt satıra geçmesin */
    
    /* MOBİL İÇİN KRİTİK AYAR: Sola yasla */
    justify-content: flex-start; 
    
    /* iOS Momentum Scroll (Akıcı kaydırma) */
    -webkit-overflow-scrolling: touch; 
    
    /* Scroll çubuğunu gizle (Estetik için) */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

/* Chrome ve Safari için scroll çubuğunu gizleme */
.filter-container::-webkit-scrollbar {
    display: none;
}

/* Sadece Masaüstünde (Geniş ekranda) Ortala */
@media (min-width: 900px) {
    .filter-container {
        justify-content: center;
    }
}

/* Menü Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    padding: 20px 5%;
}

.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 15px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-orange);
}

.product-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.product-info p {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: var(--neon-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

.add-btn {
    background: var(--text-white);
    color: #000;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

.add-btn:active {
    transform: scale(0.9);
}

/* Sepet Modal */
.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100%;
    background: #151522;
    z-index: 200;
    padding: 20px;
    transition: 0.4s;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.cart-modal.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.remove-item {
    color: var(--neon-purple);
    cursor: pointer;
    margin-left: 10px;
}

.cart-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.total-price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: right;
}

.whatsapp-btn {
    width: 100%;
    background: #25D366; /* WhatsApp Yeşili */
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 150;
    display: none;
    backdrop-filter: blur(3px);
}

.overlay.active {
    display: block;
}

/* Mobil Uyum */
@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr 1fr; /* Mobilde yan yana 2 ürün */
    }
    .cart-modal {
        width: 100%;
    }
}

:root {
    --bg-dark: #0f0f1a;
    --card-bg: #1b1b2f;
    --neon-orange: #ff9f43;
    --neon-purple: #d63031;
    --text-white: #ffffff;
    --text-gray: #a4b0be;
    --glow: 0 0 10px rgba(255, 159, 67, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kanit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

/* Header */
.neon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: sticky;
    top: 0;
    background: rgba(15, 15, 26, 0.95);
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo h1 { font-size: 1.8rem; letter-spacing: 1px; }
.neon-dot { color: var(--neon-orange); text-shadow: var(--glow); }

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    display: none; /* Mobilde gizle */
}

@media(min-width: 768px) { .nav-link { display: block; } }

.status-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 5px;
    display: inline-block;
    font-weight: 600;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    cursor: pointer;
}

#cart-count {
    position: absolute;
    top: -8px; right: -8px;
    background: var(--neon-orange);
    color: #000;
    font-size: 0.8rem;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-weight: bold;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(circle at center, #2c2c54 0%, #0f0f1a 70%);
}

.hero h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 15px; }
.highlight { color: var(--neon-orange); text-shadow: var(--glow); }

.cta-btn {
    display: inline-block; margin-top: 20px; padding: 12px 30px;
    background: transparent; border: 2px solid var(--neon-orange);
    color: var(--neon-orange); font-weight: bold; text-decoration: none;
    border-radius: 50px; transition: 0.3s;
}

.cta-btn:hover {
    background: var(--neon-orange); color: #000;
    box-shadow: 0 0 20px var(--neon-orange);
}

/* Filtreler */
.filter-container {
    display: flex; gap: 10px; padding: 20px 5%;
    overflow-x: auto; white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.filter-btn {
    background: var(--card-bg); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-gray); padding: 10px 20px; border-radius: 20px;
    cursor: pointer; transition: 0.3s; flex-shrink: 0;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--neon-orange); color: #000; font-weight: bold;
}

/* Menü Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px; padding: 20px 5%;
}

.product-card {
    background: var(--card-bg); border-radius: 15px; padding: 15px;
    border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
}

.product-card:hover { transform: translateY(-5px); border-color: var(--neon-orange); }

.product-img {
    width: 100%; height: 120px; object-fit: cover;
    border-radius: 10px; margin-bottom: 10px;
}

.product-info h3 { font-size: 1rem; margin-bottom: 5px; }
.price-row { display: flex; justify-content: space-between; align-items: center; }
.price { color: var(--neon-orange); font-weight: bold; font-size: 1.1rem; }

.add-btn {
    background: var(--text-white); color: #000; border: none;
    width: 30px; height: 30px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* --- YENİ EKLENEN BÖLÜMLER --- */

.section-padding { padding: 60px 5%; }
.center-text { text-align: center; }
.section-title {
    font-size: 2rem; margin-bottom: 30px;
    color: var(--neon-orange); text-shadow: var(--glow);
}

/* Biz Kimiz */
.about-text {
    max-width: 800px; margin: 0 auto 40px auto;
    color: var(--text-gray); line-height: 1.8;
}

.features-grid {
    display: flex; justify-content: center; gap: 30px; flex-wrap: wrap;
}

.feature-box {
    background: var(--card-bg); padding: 20px; border-radius: 15px;
    width: 150px; text-align: center; border: 1px solid rgba(255,255,255,0.05);
}

.feature-box i { font-size: 2rem; color: var(--neon-purple); margin-bottom: 10px; }

/* İletişim */
.contact-wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px;
}

.info-box {
    display: flex; align-items: center; gap: 15px;
    background: var(--card-bg); padding: 20px; border-radius: 15px;
    margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.05);
}

.info-box i { font-size: 1.5rem; color: var(--neon-orange); }
.info-box h4 { font-size: 0.9rem; color: var(--text-gray); margin-bottom: 2px; }
.info-box a, .info-box p { color: var(--text-white); text-decoration: none; }

/* Instagram Kartı */
.instagram-card {
    background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    padding: 3px; border-radius: 15px; /* Gradient Border Efekti */
}

.instagram-card > * { background: var(--card-bg); }

.instagram-card {
    display: flex; flex-direction: column; justify-content: space-between;
    background: var(--card-bg); padding: 20px; border-radius: 15px; border: 1px solid #c13584;
}

.insta-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.insta-logo { font-size: 2.5rem; color: #e1306c; }
.insta-btn {
    display: block; text-align: center; background: #e1306c; color: white;
    padding: 10px; border-radius: 10px; text-decoration: none; font-weight: bold;
    margin-top: 15px;
}

/* Harita */
.map-container iframe {
    width: 100%; height: 300px; border: none; border-radius: 15px;
    filter: invert(90%) hue-rotate(180deg); /* Haritayı koyu mod yapar */
}

/* Footer */
footer {
    text-align: center; padding: 20px;
    background: #000; color: var(--text-gray); font-size: 0.8rem;
    margin-top: 40px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed; bottom: 20px; left: 20px;
    background: #25D366; color: white;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
    z-index: 999; text-decoration: none; transition: 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* Sepet Modal & Overlay */
.cart-modal {
    position: fixed; top: 0; right: -100%;
    width: 350px; height: 100%; background: #151522;
    z-index: 200; padding: 20px; transition: 0.4s;
    display: flex; flex-direction: column;
}

.cart-modal.active { right: 0; }
.cart-header { display: flex; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid #333; }
.cart-items { flex-grow: 1; overflow-y: auto; margin-top: 10px; }
.cart-item { display: flex; justify-content: space-between; background: rgba(255,255,255,0.05); padding: 10px; margin-bottom: 10px; border-radius: 8px;}
.whatsapp-btn { width: 100%; background: #25D366; color: white; padding: 15px; border:none; border-radius: 10px; cursor: pointer; font-weight: bold; margin-top: 10px;}
.overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 150; display: none; }
.overlay.active { display: block; }

/* Mobil Uyum */
@media (max-width: 768px) {
    .menu-grid { grid-template-columns: 1fr 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .cart-modal { width: 100%; }
}