/* Ana Stiller */
:root {
    --primary-color: #1e3a8a; /* Daha derin, zengin bir lacivert rengi */
    --accent-color: #2563eb; /* Canlı, modern bir mavi vurgu rengi */
    --text-color: #111827; /* Daha koyu, daha okunabilir metin rengi */
    --light-gray: #f9fafb; /* Çok hafif gri tonunda arka plan */
    --border-color: #e5e7eb; /* Sınır rengi - daha belirgin */
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* Daha belirgin gölge */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-gray);
}

/* Header */
header {
    background: white;
    box-shadow: var(--box-shadow);
    padding: 0.8rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

/* Logo Stili Düzeltmeleri */
.logo {
    height: 40px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

.logo h1 {
    font-size: 1.2rem; /* Yazı boyutunu küçülttüm */
    font-weight: 500; /* Yazı kalınlığını azalttım */
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    line-height: 1;
}

/* Responsive için logo düzenlemesi */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 1rem; /* Mobil görünümde daha da küçük */
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-text {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

.header-icons {
    display: flex;
    gap: 0.8rem;
}

.icon-button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-button:hover {
    transform: translateY(-2px);
}

/* Banner - Düzeltilmiş */
.banner-slider {
    position: relative;
    max-width: 100%;
    margin: 0;
    height: 350px;
    overflow: hidden;
}

.banner-container {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.banner-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
    z-index: 5;
}

.banner-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    margin-top: 0.5rem;
    width: 90%;
    position: relative;
    z-index: 6;
}

.banner-content p {
    width: 90%;
    position: relative;
    z-index: 6;
}

/* Yeni nokta göstergeleri */
.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 7;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .banner-slider {
        height: 200px;
    }

    .banner-content h2 {
        font-size: 1.3rem;
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }

    .banner-content p {
        font-size: 0.9rem;
    }
    
    .banner-dots {
        bottom: 10px;
    }
    
    .banner-dot {
        width: 8px;
        height: 8px;
    }
}

/* Sağ sol butonlarını gizle - özellikle mobilde */
.banner-controls {
    display: none;
}
/* Kategoriler - Düzeltilmiş */
.categories {
    background: white;
    padding: 1rem 0;
    margin: 0;
    width: 100%;
    position: sticky;
    top: 60px;
    z-index: 90;
    box-shadow: var(--box-shadow);
}

.categories-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0.5rem;
    padding: 0 1rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.categories-wrapper::-webkit-scrollbar {
    display: none;
}

.category-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 20px;
    background: var(--light-gray);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
    flex-shrink: 0;
}

.category-btn:hover {
    background: var(--primary-color);
    color: white;
}

.category-btn.active {
    background: var(--accent-color);
    color: white;
}

.scroll-indicator {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background: linear-gradient(90deg, transparent, white 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.scroll-indicator i {
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ürünler */
.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.category-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.products-list {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 100px 1fr;
    height: 100px;
}

.product-image-container {
    width: 100px;
    height: 100px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.product-title {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.product-description {
    color: #666;
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.product-price {
    position: absolute;
    bottom: 0.8rem;
    right: 0.8rem;
    background: var(--light-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Boş Kategori Mesajı */
.empty-category {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: var(--box-shadow);
}

.empty-category i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.empty-category p {
    color: var(--text-color);
    font-size: 1rem;
}

/* Modaller - Düzeltilmiş */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 1.5rem;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 30px;
    height: 30px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: #666;
    z-index: 1;
}

/* Ürün Detay Modal */
.product-detail-content {
    text-align: center;
}

.product-detail-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-detail-content h2 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-detail-content .description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 1.5rem;
}

.product-detail-content .price {
    display: inline-block;
    background: var(--light-gray);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Modern Light Footer Styles */
.footer {
    background: #ffffff;
    color: #2c3e50;
    padding: 4rem 0 2rem 0;
    margin-top: 3rem;
    position: relative;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #f8f9fa 0%, var(--accent-color) 50%, #f8f9fa 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-section p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* İletişim Bilgileri Stili */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #64748b;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
    color: var(--accent-color);
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: var(--accent-color);
    color: white;
}

/* Sosyal Medya Linkleri Stili */
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.2);
}

/* Hızlı Linkler Stili */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.quick-links a {
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
}

.quick-links a:hover {
    background: #f8f9fa;
    color: var(--accent-color);
    transform: translateX(5px);
}

.quick-links a i {
    font-size: 0.8rem;
    color: var(--accent-color);
}

/* Copyright Bölümü */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid #f1f5f9;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Kartlı Görünüm */
.footer-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.footer-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Working Hours Stili */
.working-hours {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.working-hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    border-radius: 8px;
    color: #64748b;
    transition: all 0.3s ease;
}

.working-hours-item:hover {
    background: #f8f9fa;
}

.working-hours-item span:last-child {
    color: var(--accent-color);
    font-weight: 500;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .quick-links {
        align-items: center;
    }

    .quick-links a {
        justify-content: center;
    }

    .working-hours-item {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .banner-slider {
        height: 200px;
    }

    .banner-content h2 {
        font-size: 1.3rem;
    }

    .categories {
        top: 57px;
    }

    .scroll-indicator {
        width: 40px;
    }

    .product-card {
        height: 90px;
        grid-template-columns: 90px 1fr;
    }

    .product-image-container {
        width: 90px;
        height: 90px;
    }

    .product-info {
        padding: 0.6rem;
    }

    .product-title {
        font-size: 0.9rem;
    }

    .product-description {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .product-price {
        font-size: 0.85rem;
        padding: 0.2rem 0.6rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .modal-content {
        margin: 20% auto;
        padding: 1rem;
    }

    .product-detail-content h2 {
        font-size: 1.1rem;
    }

    .product-detail-content .description {
        font-size: 0.9rem;
    }

    .product-detail-content .price {
        font-size: 1rem;
    }
}
/* WiFi ve Telefon Modal Stilleri */
.wifi-content,
.phone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
}

.wifi-content i,
.phone-content i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    background: var(--light-gray);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.1);
}

.wifi-content h3,
.phone-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.wifi-info {
    background: var(--light-gray);
    padding: 1.2rem;
    border-radius: 12px;
    width: 100%;
    margin-bottom: 1.5rem;
}

.wifi-info p {
    margin: 0.5rem 0;
    color: var(--text-color);
    font-size: 1rem;
}

.wifi-info p strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.wifi-qr {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.wifi-hint {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.phone-number {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.2);
}

.phone-number:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

/* Modal Animasyonları */
.modal {
    backdrop-filter: blur(5px);
}

.modal-content {
    animation: modalSlideIn 0.3s ease-out;
}

/* Masaüstünde popup konumlandırma */
@media (min-width: 769px) {
    #wifiModal .modal-content,
    #phoneModal .modal-content {
        margin: 5% auto; /* Yukarıdan mesafeyi %10'dan %5'e düşürdüm */
        max-height: 90vh;
        overflow-y: auto;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 480px) {
    .wifi-content,
    .phone-content {
        padding: 1.5rem 0.8rem;
    }

    .wifi-content i,
    .phone-content i {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }

    .wifi-content h3,
    .phone-content h3 {
        font-size: 1.3rem;
    }

    .phone-number {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* ===== MODERN KARANLIK TEMA ===== */
.dark-theme {
    --primary-color: #6366f1 !important; /* Modern indigo */
    --accent-color: #8b5cf6 !important; /* Modern mor */
    --success-color: #10b981 !important; /* Modern yeşil */
    --warning-color: #f59e0b !important; /* Modern amber */
    --text-color: #f8fafc !important; /* Yumuşak beyaz */
    --text-muted: #94a3b8 !important; /* Gri metin */
    --light-gray: #0f172a !important; /* Ana arka plan */
    --border-color: #334155 !important; /* Kenarlık rengi */
    --box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.2), 0 2px 4px -1px rgba(139, 92, 246, 0.1) !important;
    --card-bg: #1e293b !important; /* Kart arka planı */
    --modal-bg: #1e293b !important; /* Modal arka planı */
    --hover-bg: #475569 !important; /* Hover arka planı */
    --glass-bg: rgba(30, 41, 59, 0.8) !important; /* Cam efekti */
    --gradient-primary: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    --gradient-secondary: linear-gradient(135deg, #1e293b, #334155) !important;
}

.dark-theme body {
    background: linear-gradient(135deg, var(--light-gray) 0%, #0c1220 50%, var(--light-gray) 100%) !important;
    position: relative;
    overflow-x: hidden;
    color: var(--text-color) !important;
    backdrop-filter: blur(10px);
}

/* Modern arka plan animasyonu */
.dark-theme body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: modernBackground 12s ease-in-out infinite;
}

@keyframes modernBackground {
    0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
    33% { opacity: 0.6; transform: scale(1.05) rotate(1deg); }
    66% { opacity: 0.5; transform: scale(0.98) rotate(-1deg); }
}

/* Header karanlık tema */
.dark-theme header {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--border-color) !important;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15) !important;
}

.dark-theme .logo h1 {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark-theme .header-text {
    color: var(--text-muted);
}

.dark-theme .icon-button {
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    animation: modernPulse 3s ease-in-out infinite;
}

@keyframes modernPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
        transform: scale(1.05);
    }
}

/* Kategoriler karanlık tema */
.dark-theme .categories {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid var(--border-color) !important;
}

.dark-theme .category-btn {
    background: rgba(30, 41, 59, 0.6);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.dark-theme .category-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.dark-theme .category-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    animation: modernActive 2s ease-in-out infinite;
}

@keyframes modernActive {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
        transform: scale(1.02);
    }
}

/* Ürün kartları karanlık tema */
.dark-theme .product-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(15px) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--text-color) !important;
}

.dark-theme .product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.25);
    border-color: var(--primary-color);
    background: var(--glass-bg);
}

.dark-theme .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dark-theme .product-card:hover::before {
    opacity: 1;
    animation: modernLine 2s ease-in-out infinite;
}

@keyframes modernLine {
    0%, 100% { 
        opacity: 0.8; 
        transform: scaleX(1);
        filter: brightness(1);
    }
    50% { 
        opacity: 1; 
        transform: scaleX(1.02);
        filter: brightness(1.2);
    }
}

.dark-theme .product-info h3 {
    color: var(--text-color);
    font-weight: 600;
}

.dark-theme .product-info p {
    color: var(--text-muted);
}

.dark-theme .product-price {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
    font-weight: 700;
}

/* Modal karanlık tema */
.dark-theme .modal-content {
    background: var(--modal-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.dark-theme .modal-header {
    background: var(--gradient-primary);
    color: white;
    border-bottom: 1px solid var(--border-color);
}

.dark-theme .modal-body {
    color: var(--text-color);
}

.dark-theme .close {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.dark-theme .close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Alev parçacıkları animasyonu */
.flame-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.flame-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    border-radius: 50%;
    animation: floatUp 6s linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Yeni güçlü alev efektleri */
.dark-theme .flame-particles {
    z-index: 1;
}

.dark-theme .flame-particle {
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ff6b35, #ff4500, transparent);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
    animation: flameFloat 4s ease-in-out infinite;
}

@keyframes flameFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0.5);
        opacity: 0;
        filter: blur(0px);
    }
    20% {
        opacity: 1;
        filter: blur(1px);
    }
    50% {
        transform: translateY(50vh) translateX(50px) scale(1.2);
        filter: blur(2px);
    }
    80% {
        opacity: 1;
        filter: blur(1px);
    }
    100% {
        transform: translateY(-50px) translateX(100px) scale(0.3);
        opacity: 0;
        filter: blur(0px);
    }
}

/* Alev patlamaları */
.flame-explosion {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #ff6b35, #ff4500, transparent);
    border-radius: 50%;
    animation: flameExplosion 0.8s ease-out;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
}

@keyframes flameExplosion {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
        box-shadow: 0 0 0px rgba(255, 107, 53, 0.8);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.8;
        box-shadow: 0 0 50px rgba(255, 107, 53, 0.6);
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
        box-shadow: 0 0 80px rgba(255, 107, 53, 0.2);
    }
}

/* Alev çizgisi efekti */
.flame-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff4500, #ff6b35);
    opacity: 0;
    animation: flameLine 2s ease-in-out infinite;
    z-index: 10;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

@keyframes flameLine {
    0%, 100% { 
        opacity: 0.7; 
        box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
    }
    50% { 
        opacity: 1; 
        box-shadow: 0 0 25px rgba(255, 107, 53, 0.9);
    }
}

/* Alev dalgaları */
.flame-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(180deg, transparent, rgba(255, 107, 53, 0.3));
    animation: flameWave 3s ease-in-out infinite;
    z-index: 5;
}

@keyframes flameWave {
    0%, 100% {
        transform: translateY(0) scaleY(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-10px) scaleY(1.5);
        opacity: 0.6;
    }
}

/* Alev köşeleri */
.flame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #ff6b35, transparent);
    border-radius: 50%;
    animation: flameCorner 2s ease-in-out infinite;
    z-index: 5;
}

.flame-corner.top-left {
    top: 10px;
    left: 10px;
    animation-delay: 0s;
}

.flame-corner.top-right {
    top: 10px;
    right: 10px;
    animation-delay: 0.5s;
}

.flame-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    animation-delay: 1s;
}

.flame-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    animation-delay: 1.5s;
}

@keyframes flameCorner {
    0%, 100% {
        transform: scale(0.5);
        opacity: 0.3;
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    }
}

/* Tema değiştirme butonu */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: modernPulse 3s ease-in-out infinite;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(180deg);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
}

/* Karanlık tema için özel animasyonlar */
.dark-theme .product-image {
    position: relative;
    overflow: hidden;
}

.dark-theme .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.5s ease;
}

.dark-theme .product-card:hover .product-image::after {
    left: 100%;
}

/* Responsive karanlık tema */
@media (max-width: 768px) {
    .dark-theme .theme-toggle {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
        bottom: 15px !important;
        right: 15px !important;
    }
    
    .dark-theme .flame-particles {
        display: none !important; /* Mobilde performans için kapat */
    }
    
    /* Mobilde hover efektlerini kapat */
    .dark-theme .product-card:hover {
        transform: none !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Mobilde daha küçük animasyonlar */
    .dark-theme .category-btn.active {
        animation: activeFlame 2s ease-in-out infinite;
    }
    
    /* Mobilde daha az parlak efektler */
    .dark-theme .icon-button {
        animation: flamePulse 3s ease-in-out infinite;
    }
    
    /* Mobilde daha basit arka plan */
    .dark-theme body::before {
        opacity: 0.2 !important;
        animation: flameBackground 10s ease-in-out infinite;
    }
}

/* Footer karanlık tema */
.dark-theme .footer {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
}

.dark-theme .footer-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.dark-theme .footer-card h3 {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
}

.dark-theme .footer-card h3 i {
    color: var(--accent-color);
}

.dark-theme .address-detail,
.dark-theme .working-hours-item,
.dark-theme .contact-item {
    color: var(--text-muted);
}

.dark-theme .address-detail i,
.dark-theme .working-hours-item i,
.dark-theme .contact-item i {
    color: var(--primary-color);
}

.dark-theme .social-link {
    background: var(--gradient-primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.dark-theme .social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
}

.dark-theme .footer-bottom {
    background: var(--light-gray);
    border-top: 1px solid var(--border-color);
}

.dark-theme .footer-bottom p {
    color: var(--text-muted);
}

/* Banner karanlık tema */
.dark-theme .banner-content {
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.dark-theme .banner-dot {
    background-color: rgba(255, 107, 53, 0.5);
}

.dark-theme .banner-dot.active {
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Ürün detay modal karanlık tema */
.dark-theme .product-detail-modal .modal-content {
    background: linear-gradient(135deg, var(--modal-bg) 0%, #2a2a2a 100%);
}

.dark-theme .product-detail-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.dark-theme .product-detail-modal .product-title {
    color: #ffffff;
}

.dark-theme .product-detail-modal .product-description {
    color: #cccccc;
}

.dark-theme .product-detail-modal .product-price {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
}

/* Loading animasyonu karanlık tema */
.dark-theme .loading {
    background: rgba(26, 26, 26, 0.9);
}

.dark-theme .loading-spinner {
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
}

/* Scroll bar karanlık tema */
.dark-theme ::-webkit-scrollbar {
    width: 8px;
}

.dark-theme ::-webkit-scrollbar-track {
    background: var(--card-bg);
}

.dark-theme ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
}

.dark-theme ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Scroll indicator karanlık tema */
.dark-theme .scroll-indicator {
    background: linear-gradient(135deg, var(--card-bg) 0%, #333333 100%) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.dark-theme .scroll-indicator i {
    color: var(--primary-color) !important;
    text-shadow: 0 0 5px rgba(255, 107, 53, 0.3) !important;
}

.dark-theme .scroll-indicator:hover {
    background: linear-gradient(135deg, #333333 0%, var(--card-bg) 100%) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2) !important;
}

.dark-theme .scroll-indicator:hover i {
    color: var(--accent-color) !important;
    text-shadow: 0 0 8px rgba(255, 69, 0, 0.5) !important;
}

/* ===== AI CHATBOT STİLLERİ ===== */
.ai-chatbot {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
    font-family: 'Poppins', sans-serif;
}

/* Chatbot toggle butonu */
.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.5rem;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.notification-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #ff4757;
    border-radius: 50%;
    display: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Chatbot container */
.chatbot-container {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid #667eea;
}

/* Chatbot header */
.chatbot-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px 18px 0 0;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.chatbot-title i {
    font-size: 1.3rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Chatbot messages */
.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.user-message {
    background: #e9ecef;
    color: #333;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 0.8rem;
    opacity: 0.8;
}

.message-time {
    margin-left: auto;
    font-size: 0.7rem;
}

.message-text {
    line-height: 1.4;
    word-wrap: break-word;
}

.message-text strong {
    font-weight: 600;
}

.message-text .emoji {
    font-size: 1.1em;
}

/* Chatbot input */
.chatbot-input {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chatbot-input input:focus {
    border-color: #667eea;
}

.send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Quick actions */
.quick-actions {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.quick-btn {
    background: white;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quick-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Karanlık tema chatbot */
.dark-theme .chatbot-container {
    background: var(--modal-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.dark-theme .chatbot-header {
    background: var(--gradient-primary);
}

.dark-theme .chatbot-messages {
    background: var(--light-gray);
}

.dark-theme .bot-message {
    background: var(--gradient-primary);
}

.dark-theme .user-message {
    background: var(--card-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.dark-theme .chatbot-input {
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.dark-theme .chatbot-input input {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.dark-theme .chatbot-input input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.dark-theme .send-btn {
    background: var(--gradient-primary);
}

.dark-theme .send-btn:hover {
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.6);
    transform: scale(1.1);
}

.dark-theme .quick-actions {
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
}

.dark-theme .quick-btn {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
}

.dark-theme .quick-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .ai-chatbot {
        bottom: 15px;
        left: 15px;
    }
    
    .chatbot-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .chatbot-container {
        width: 300px;
        height: 450px;
        bottom: 70px;
    }
    
    .quick-actions {
        padding: 10px 15px;
    }
    
    .quick-btn {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .chatbot-container {
        width: 280px;
        height: 400px;
        left: 10px;
        right: 10px;
        width: calc(100vw - 20px);
    }
}

/* --- Chatbot Stilleri --- */
/* --- Yapay Zeka Şefi Butonu Stilleri --- */
.ai-chef-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;

    /* Modern animasyon */
    animation: modernAiPulse 3s infinite;
}

.ai-chef-button:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
    animation-play-state: paused;
}

/* Modern AI buton animasyonu */
@keyframes modernAiPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5);
    }
}

/* Karanlık tema AI buton stilleri */
.dark-theme .ai-chef-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-theme .ai-chef-button:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
}

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 450px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none; /* Varsayılan olarak gizli */
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
}

.chatbot-container.active {
    display: flex;
}

.chatbot-header {
    background-color: #007bff;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.chat-display {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background-color: #f7f9fc;
}

.message {
    padding: 10px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
    max-width: 80%;
    word-wrap: break-word;
}

.message.user {
    background-color: #007bff;
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

.message.bot {
    background-color: #e9ecef;
    color: #333;
    align-self: flex-start;
    margin-right: auto;
}

.chat-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
    background-color: #fff;
}

.chat-input-area input {
    flex-grow: 1;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
}

.chat-input-area button {
    border: none;
    background-color: #007bff;
    color: white;
    padding: 0 15px;
    border-radius: 20px;
    cursor: pointer;
    margin-left: 10px;
}



* Chatbot penceresi için temel stiller */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 450px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    overflow: hidden;
    background-color: #fff;
    z-index: 1000;
}
.chatbot-container.active {
    display: flex;
}
.chat-display {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #f9f9f9;
}
.message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 15px;
    max-width: 80%;
    font-size: 14px;
}
.message.user {
    background-color: #007bff;
    color: #fff;
    align-self: flex-end;
    margin-left: auto;
}
.message.bot {
    background-color: #e9ecef;
    color: #333;
    align-self: flex-start;
    margin-right: auto;
}
.chat-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ccc;
}
.chat-input-area input {
    flex-grow: 1;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
}
.chat-input-area button {
    border: none;
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    margin-left: 10px;
}
/* Örnek mesajlar stilleri */
.suggested-messages {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 15px;
    background-color: #f1f1f1;
    border-bottom: 1px solid #ccc;
}
.suggested-message {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 13px;
    color: #4a4a4a;
    transition: background-color 0.2s ease;
}
.suggested-message:hover {
    background-color: #e2e8f0;
}