/* Tablet ve mobil cihazlar için responsive stiller */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Mobilde 2'li ürün grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-info, .top-links {
        width: 100%;
        justify-content: center;
    }
    
    .banner-slider {
        height: 400px;
    }
    
    .slide-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .product-detail-container {
        flex-direction: column;
    }
    
    .product-info-detail h1 {
        font-size: 1.8rem;
    }
    
    .product-price-large {
        font-size: 1.6rem;
    }
    
    /* Özellikler mobilde tek sütun */
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .header .container {
        padding: 10px 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .banner-slider {
        height: 300px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Çok küçük ekranlarda tek sütun */
    @media (max-width: 400px) {
        .products-grid {
            grid-template-columns: 1fr;
        }
    }
}