/* 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 */
}
/* Language Selector Styles */
.language-selector {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

.language-toggle {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 8px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    min-width: 80px;
    justify-content: space-between;
}

.language-toggle:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.current-flag {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
}

.current-lang {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.language-arrow {
    font-size: 12px;
    color: #666;
    transition: transform 0.3s ease;
}

.language-arrow.rotate {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    min-width: 180px;
    margin-bottom: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    max-height: 300px;
    overflow-y: auto;
}

.language-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.language-item:last-child {
    border-bottom: none;
}

.language-item:hover {
    background: #f8f9fa;
}

.language-item.active {
    background: #e3f2fd;
    color: #1976d2;
    font-weight: 500;
}

.language-item img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
}

.language-item span {
    font-size: 14px;
    font-weight: 400;
}

/* Google Translate gizle */
.goog-te-banner-frame {
    display: none !important;
}

.goog-te-menu-value:hover {
    text-decoration: none !important;
}

body {
    top: 0 !important;
}

#google_translate_element {
    display: none !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
}

.goog-te-combo {
    display: none !important;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .language-selector {
        bottom: 15px;
        left: 15px;
    }
    
    .language-toggle {
        padding: 6px 12px;
        min-width: 70px;
    }
    
    .current-lang {
        font-size: 12px;
    }
    
    .language-menu {
        min-width: 160px;
    }
    
    .language-item {
        padding: 10px 14px;
    }
    
    .language-item span {
        font-size: 13px;
    }
}
* {
    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;
    }
}