/* Responsive Design İyileştirmeleri */

/* Tablet ve Mobil - 992px ve altı */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.8rem 1rem !important;
        margin: 0.2rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* Mobil - 768px ve altı */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-box .form-control {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .search-box .btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .product-image {
        height: 220px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
    
    .category-card .card-body {
        padding: 1.5rem 1rem;
    }
    
    .category-image-wrapper {
        height: 150px;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
    }
    
    .btn-lg {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
    
    /* Footer mobilde daha kompakt */
    footer .col-lg-4,
    footer .col-lg-3,
    footer .col-lg-2 {
        margin-bottom: 2rem;
    }
    
    /* Cart items mobilde daha iyi görünüm */
    .cart-item {
        padding: 1rem 0;
    }
    
    .cart-item .row {
        text-align: center;
    }
    
    .cart-item .col-md-2,
    .cart-item .col-md-4,
    .cart-item .col-md-3 {
        margin-bottom: 1rem;
    }
}

/* Küçük Mobil - 576px ve altı */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .search-box .input-group {
        border-radius: 25px;
    }
    
    .search-box .form-control {
        border-radius: 25px 0 0 25px;
        font-size: 0.9rem;
    }
    
    .search-box .btn {
        border-radius: 0 25px 25px 0;
        padding: 1rem;
    }
    
    .search-box .btn i {
        margin-right: 0;
    }
    
    .search-box .btn .d-none {
        display: none !important;
    }
    
    .product-card .card-body {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    /* Features bar mobilde daha kompakt */
    .features-bar .col-md-3 {
        margin-bottom: 1.5rem;
    }
    
    .features-bar i {
        font-size: 2rem !important;
    }
    
    /* Navbar brand küçült */
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-brand img {
        height: 35px !important;
    }
}

/* Çok Küçük Ekranlar - 400px ve altı */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* Geniş Ekranlar - 1400px ve üstü */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

/* Print Stilleri */
@media print {
    .navbar,
    footer,
    .btn,
    .search-box {
        display: none !important;
    }
    
    .product-card {
        break-inside: avoid;
    }
}

