@media screen and (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .logo-img {
        height: 70px;
    }

    .navbar {
        width: 100%;
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 120px;
        height: calc(100vh - 120px);
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transition: right 0.5s ease;
        padding: 20px 0;
        gap: 0;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        opacity: 1;
        animation: slideInFromRight 0.3s ease forwards;
    }
    
    @keyframes slideInFromRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-links li a {
        font-size: 1.2rem;
        padding: 15px 20px;
        width: 100%;
        justify-content: center;
        border-radius: 0;
        margin: 0;
    }

    .nav-links .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(52, 152, 219, 0.05);
        margin-top: 5px;
        border-radius: 0;
    }

    .nav-links .submenu a {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .header-contact {
        justify-content: center;
        margin-top: 10px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 0;
    }

    .product-card {
        height: 200px;
    }
    
    .product-card img {
        height: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 300px;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-filter {
        flex-wrap: wrap;
    }

    .filter-btn {
        font-size: 0.9rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 350px;
    }

    .breadcrumb {
        margin-top: 100px;
        padding: 15px 0;
    }

    .breadcrumb-item {
        font-size: 0.85rem;
    }

    .about-section {
        padding: 80px 0 40px;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .about-section p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        height: 60px;
    }

    .nav-links {
        top: 100px;
        height: calc(100vh - 100px);
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }

    .product-card {
        height: 220px;
    }
    
    .product-card img {
        height: 100%;
    }

    .swiper {
        height: 400px;
    }

    .about-image img {
        height: 200px;
    }

    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .gallery-item {
        height: 250px;
    }

    .contact-form {
        padding: 20px;
    }

    .submit-btn {
        width: 100%;
    }

    .map-container iframe {
        height: 250px;
    }

    .about-section {
        padding: 60px 0 30px;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-section p {
        font-size: 0.9rem;
    }

    .breadcrumb {
        margin-top: 90px;
        padding: 12px 0;
    }

    .breadcrumb-item {
        font-size: 0.8rem;
    }

    .breadcrumb-icon {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* Ana sayfa product grid responsive */
@media screen and (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 30px 0;
    }
    
    .product-card {
        height: 200px;
    }
    
    .product-card img {
        height: 100%;
    }
    
    .products h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .products-link-section {
        margin-top: 40px;
        padding: 40px 20px;
    }
    
    .products-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .products-description {
        font-size: 1rem;
        margin-top: 20px;
    }
    
    .gallery-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .gallery-link-section {
        margin-top: 40px;
        padding: 40px 20px;
    }
    
    .gallery-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }
}

@media screen and (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        height: 250px;
    }
    
    .product-card img {
        height: 100%;
    }
    
    .products {
        padding: 60px 0;
    }
    
    .products h2 {
        font-size: 1.8rem;
    }
    
    .products-link-section {
        margin-top: 30px;
        padding: 30px 15px;
    }
    
    .products-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .products-description {
        font-size: 0.95rem;
        margin-top: 15px;
    }
    
    .about-section {
        padding: 60px 0 40px;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }
    
    .about-section p {
        font-size: 1rem;
    }
    
    .gallery-btn {
        padding: 14px 28px;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .gallery-btn i {
        font-size: 1.2rem;
    }
    
    .gallery-link-section {
        padding: 35px 15px;
        margin-top: 35px;
    }
    
    .gallery-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Responsive hero description section */
@media screen and (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text p {
        text-align: left;
        font-size: 1rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 80%;
    }
}

/* Responsive products section */
@media screen and (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-grid .product-card {
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .products-grid .product-card {
        height: 250px;
    }
}

@media screen and (max-width: 480px) {
    .hero-description-section {
        padding: 60px 0 40px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .hero-image img {
        max-width: 90%;
    }
    
    /* Görseller için ortalama */
    .product-grid {
        justify-content: center;
    }
    
    .product-card {
        margin: 0 auto;
    }
    
    /* Galeri grid mobil düzeltmeleri */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-items: center;
    }
    
    .gallery-item {
        width: 100%;
        max-width: 200px;
    }
    
    /* Footer öğelerini ortalama */
    .footer-content {
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-section h3 {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
        list-style: none;
        padding-left: 0;
    }
    
    .footer-links li {
        list-style: none;
    }
    
    .footer-links li::before {
        display: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* İletişim bilgileri ikonlarını gizle ve ortalama */
    .contact-info i {
        display: none;
    }
    
    .contact-info {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .contact-info a {
        text-align: center;
    }
}

/* Çok küçük ekranlar için galeri düzeltmeleri */
@media screen and (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .gallery-item {
        max-width: 100%;
        margin: 0 auto;
    }
}