/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap'); */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden; /* Yatay kaydırmayı zorla kapatır */
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #f4f4f4;
    color: #333;
    
}

.navbar{
    background: black; 
    height: 150px;
    display: flex;/*yatay menü için*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    position: relative;
    
}

.logo{
    margin-right: auto;
    
}

.logo-img{
    width: 150px;
    height: 150px;
    display: block;
   
      
}

.navbar > ul{
    list-style: none;
    display: flex; /*yatay menü için*/
    align-items: center;
    justify-content: center;
    gap: 30px;    
    position: absolute;
    left: 50%; /*yatayda ortala*/
    transform: translateX(-50%);
}

.navbar li{
    position: relative; /*pozisyonlar için referans noktası*/
    list-style: none;
}

.navbar ul a{
    color:white;
    text-decoration: none;
    transition: color 0.6s;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px;
    position: relative;
    display: block;
    white-space: nowrap;  /*tek satır için*/
} 


.navbar a:hover{
 color: rgb(16, 126, 194);
}


/* Açılır Menü kısmi*/
.navbar ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: black;
    min-width: 200px;
    padding: 10px 0;
    flex-direction: column;
    gap: 0;
    z-index: 1000;
    border-radius: 10px; 
     /* İçeriklerin radius'u takip etmesi için */
}

.navbar ul ul ul{
    top: 0;
    left: 100%;
    border-radius: 10px; 
    
    
}

.navbar li:hover > ul{
    display: flex;  /*üstüne gelindiğinde menüyü göster*/

}

.navbar ul ul li{
    margin: 0;
    width: 100%;
}

.navbar ul ul a{
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
    white-space: nowrap;
    
}

.navbar ul ul ul a:hover{
    
    color: rgb(16, 26, 194);
    border-radius: 10px;
    margin-top: 2px;

}



.navbar ul ul ul a{
    border-bottom: none;
}


.navbar ul ul li:last-child a {
    border-bottom: none;
}

/*HERO*/
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/bruno-zorman-I0KYTrKSubQ-unsplash.jpg') no-repeat;
    background-size:cover;
    background-position:center top; 
    height: 100vh; /*ekranın tamamını kaplaması için (viewport height) biçimi kullanıldı*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-button {
    display: inline-block;
    background: #004aad;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px; /*harf araliği*/
}

.hero-button:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: black;
}

.stick2{
    background: #004aad;
    height: 30px;
    width: 100%;
    color:white;
    text-decoration: none;
    transition: color 0.6s;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    display: block;
    white-space: nowrap;
    text-align: center;
    text-transform: uppercase;
    z-index:-1 ;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    
}

.stick3{
    background: #000000;
    height: 10px;
    width: 100%;
    transition: color 0.6s;
    white-space: nowrap;
    z-index:-1 ;
}

.section{
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;

}

.product-item{
     display: flex;
    justify-content: center;
    gap: 90px;
    margin: auto;
    flex-wrap: wrap;
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 100px;
}

.section h2{
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 20px;
    color: #565656;
    margin-left: 120px; 
    margin-right: 120px;
    cursor:none;
   
}

.container h2 {
   
    margin-top: 50px;
    padding-bottom: 20px;
    color: #565656;
    margin-left: 120px; 
    margin-right: 120px;
    cursor:none;
    text-align: center;
}

/* #popular-products{
  
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    background-color: #ffffff;
    margin: 0 auto;
    gap: 50px;
    height: 1200px;
    
    
} */






.benzer-urunler-pr:hover .urun-aksiyonlar {
    bottom: 0;
    opacity: 1;
}



.aksiyon-buton {
    background: rgb(16, 126, 194);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.6s ease;
    font-size: 14px;
    text-decoration: none;
}

.aksiyon-buton:hover {
    background: #000000;
    transform: translateY(-2px);
}


.urun-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(10px);
    transition: all 0.3s ease;
    justify-content: center;
    padding:0 20px;
}

.urun-kutusu:hover .urun-rating {
    opacity: 1;
    transform: translateY(0);
}

.yildizlar {
    display: flex;
    gap: 2px;
    
}

.yildiz {
    color: #ddd;
    font-size: 16px;
    
}

.yildiz.dolu {
    color: #ffc107;
}

.rating-sayisi {
    font-size: 12px;
    color: #666;
}

/*Ürün Sayfası için*/

.flex-box{
    display: flex;
    width: 1000px;
    margin: 20px auto;
}
.left{
    width: 40%;
}
.big-img{
    width: 250px;
}
.big-img img{
    width: inherit;
}
.images{
    display: flex;
    justify-content: space-between;
    width: 60%;
    margin-top: 15px;
}
.small-img{
    width: 50px;
    overflow: hidden;
    border: 1.5px solid black;
}
.small-img img{
    width: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}
.small-img:hover img{
    transform: scale(1.2);
}
.url{
    font-size: 16px;
    font-weight: 400;
    color: rgb(0, 102, 255);
}
.pname{
    font-size: 22px;
    font-weight: 600;
    margin-top: 50px;
}
.ratings i{
    color: rgb(255, 136, 0);
}
.price{
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0;
}
.size{
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.size p{
    font-size: 18px;
    font-weight: 500;
}
.psize{
    width: 60px;
    height: 30px;
    border: 1px solid #ff5e00;
    color: #000;
    text-align: center;
    margin: 0 10px;
    cursor: pointer;
}
.psize.active{
    border-width: 1.5px;
    color: #ff5e00;
    font-weight: 500;
}
.quantity{
    display: flex;
}
.quantity p{
    font-size: 18px;
    font-weight: 500;
}
.quantity input{
    width: 40px;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    margin-left: 15px;
}
.btn-box{
    display: flex;
    margin-top: 40px;
}
.btn-box button{
    font-size: 18px;
    padding: 8px 25px;
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    color: white;
}
.cart-btn{
    background-color: #ff5e00;
    margin-right: 20px;
}
.buy-btn{
    background-color: #00aeff;
}
.cart-btn:hover{
    background-color: #ff3c00;
}
.buy-btn:hover{
    background-color: #0066ff;
}


/* AVANTAJLAR */
.avantajlar {
    padding: 60px 0;
    background: white;
    
}

.avantaj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;

}

.avantaj {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: var(--light);
    transition: all 0.3s ease;
}

.avantaj:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.avantaj i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.avantaj h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

/* YORUMLAR */
.yorumlar {
    padding: 80px 0;
    background: white;
    text-align: center;
    color: #666;
}

.yorum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.yorum-kart {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.yorum-kart .yildizlar {
    justify-content: center;
    margin-bottom: 15px;
}

.yorum-kart p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.musteri-ad {
    color: var(--dark);
    font-weight: 600;
}

/* BLOG */
.blog {
    padding: 80px 0;
    background: rgb(255, 255, 255);
    text-align: center;
    color: #666;

    
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    background-color: #ffffff;
    height: 550px;
    margin: 0 auto;
}

.blog-kart {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 500px;
    width: 500px;
    /* margin-left:130px;
    margin-top: 20px; */
    margin: 0 auto;

}

.blog-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.blog-kart img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    
    
}

.blog-icerik {
    padding: 25px;
}

.blog-icerik h3 {
    margin-bottom: 10px;
    color: var(--dark);
    
}

.blog-icerik p {
    color: #666;
    margin-bottom: 15px;
}

.blog-icerik a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-icerik a:hover{
    color: #000;
    
}

.indirim-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Modern renk paleti */
:root {
    --primary: #2563eb;
    --secondary: #7c3aed;
    --accent: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
}

/* İSTATİSTİKLER */
.istatistikler {
    padding: 80px 0;
    background-image: linear-gradient(
            rgba(0, 0, 0, 0.5), /* Siyah %50 opak */
            rgba(0, 0, 0, 0.5)
        ), url('/images/krzysztof-kowalik-2pnozU26QBo-unsplash.jpg'); 
    color: white;
    text-align: center;
    
}

.istatistik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.istatistik h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.istatistik p {
    font-size: 18px;
    opacity: 0.9;
}

/* NEWSLETTER */
.newsletter {
    padding: 80px 0;
    background-image: linear-gradient(
            rgba(0, 0, 0, 0.5), /* Siyah %50 opak */
            rgba(0, 0, 0, 0.5)
        ), url('images/krzysztof-kowalik-2pnozU26QBo-unsplash.jpg');
     background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    color: white;
    text-align: center;
    filter:opacity(5px);
    
}




.newsletter-icerik h2 {
    margin-bottom: 15px;
    color: white;
}

.newsletter-icerik p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.abonelik-formu {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.abonelik-formu input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
}

.abonelik-formu button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.6s ease;
}

.abonelik-formu button:hover {
    background: white;
    color: #000;
}

/* SSS */
.sss {
    padding: 80px 0;
    background: white;
  
}

.sss h2{
    text-align: center;
}

.sss-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.sss-item {
    background: var(--light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.sss-item h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

/* FOOTER */
 .footer {
            background: #000000;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            padding: 0 20px;
        }

        .footer-bolum {
            color: white;
        }

        .footer-bolum h4 {
            margin-bottom: 20px;
            color: white;
            font-size: 18px;
            font-weight: 600;
        }

        .footer-bolum p {
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .footer-bolum ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-bolum ul li {
            margin-bottom: 12px;
        }

        .footer-bolum ul li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
            display: block;
            padding: 3px 0;
        }

        .footer-bolum ul li a:hover {
            color: #007bff;
            
        }

        .footer-logo {
            width: 120px;
            margin-bottom: 20px;
            
        }

        /* İletişim bilgileri için özel stil */
        .footer-bolum:nth-child(4) p {
            color: #e0e0e0;
            font-size: 14px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .copyrg {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            margin-top: 30px;
        }

        .copyrg p {
            color: #aaa;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }


.benzer{
    
    text-align: center;
    background-color: #ffffff;
}

.alan {
    background-color: rgb(255, 255, 255);
    max-width: 800px; 
    width: 90%; 
    height: auto; 
    min-height: 1080px; 
    border-radius: 20px;
    margin: 0 auto; /* Ortalamak için */
    padding: 20px; 
    box-sizing: border-box; /* Padding'i width'e dahil et */
}

.icerik {
    margin-left: 20px; 
    margin-right: 20px; 
}

.icerik p {
    color: #666;
    line-height: 1.6; 
    text-align: justify; /* Metni iki yana yasla */
       margin: 0 auto;
}

.icerik font {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: italic;
    color: #2563eb;
    font-weight: 500;
    margin-left: 0; /* Küçük ekranlar için sıfırlıyoruz */
    text-align: center; /* Ortala */
    display: block; /* Block element yap */
    width: 100%; /* Tam genişlik */
    margin-top: 20px;
    margin-bottom: 20px;
}

.hakkimizda {
    margin-left: auto; /* Ortalamak için */
    margin-right: auto; /* Ortalamak için */
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0 20px; /* Yanlarda boşluk */
    box-sizing: border-box;
}


.menu-toggle {
    display: none;
}

@media screen and (max-width: 768px) {
    .alan {
        width: 95%; 
        min-height: auto; 
        padding: 15px; 
        margin: 0 auto;
    }
    
    .icerik {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .hakkimizda {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .icerik h2 {
        font-size: 1.5em; 
    }
    
    .icerik h3 {
        font-size: 1.2em; 
    }
    
    .icerik p, .icerik li {
        font-size: 0.95em; 
    }
}

/* Mobil boyutları için (480px ve altı) */

@media screen and (max-width: 480px) {
    .alan {
        width: 100%; 
        border-radius: 10px; 
        padding: 10px;
    }
    
    .icerik {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .hakkimizda {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .icerik h2 {
        font-size: 1.3em;
        text-align: center; 
    }
    
    .icerik h3 {
        font-size: 1.1em;
    }
    
    .icerik p, .icerik li {
        font-size: 0.9em;
        text-align: left; /* Mobilde sola yasla */
    }
    
    .icerik ul {
        padding-left: 20px; /* Liste girintisini azalt */
    }
    
    .icerik font {
        font-size: 0.9em; 
    }
}

/* Çok küçük mobil ekranlar için (360px ve altı) */
@media screen and (max-width: 360px) {
    .icerik h2 {
        font-size: 1.2em;
    }
    
    .icerik h3 {
        font-size: 1em;
    }
    
    .icerik p, .icerik li {
        font-size: 0.85em;
    }
    
    .icerik font {
        font-size: 0.85em;
    }
}


   /* RESPONSIVE MEDIA QUERIES */
        @media (max-width: 1200px) {
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 992px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 0 15px;
            }
            
            .product-card {
                min-height: 380px;
            }
            
            .navbar > ul {
                gap: 10px;
                
            }
            
            .navbar ul a {
                font-size: 13px;
                padding: 6px 10px;
            }
            
            .logo-img {
                width: 100px;
                height: 100px;
            }
            
            .hero {
                height: 50vh;
                min-height: 400px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .blog-kart {
                width: 95%;
            }
        }

        @media (max-width: 768px) {
           
            
            .newsletter{
                background-size: cover;
                
            }
            .menu-toggle {
                display: block;
                background: none;
                color: white;
                font-size: 28px;
                border: none;
                cursor: pointer;
                padding: 10px;
                margin: 10px auto;
            }

            .product-grid {
                display: grid !important;
                grid-template-columns: 1fr !important; /* Tek sütun */
                gap: 20px !important;
                padding: 15px !important;
                height: auto !important; /* Sabit yükseklik varsa iptal et */
                width: 100% !important;
                box-sizing: border-box;
            }

            .yorum-grid{
                grid-template-columns: 1fr;
                gap: 20px;
                /* margin-top: 300px; */
            }

            .container{
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 300px; 
            }
            
            .product-card {
                width: 100% !important;
                max-width: 100% !important;
                min-height: auto !important; /* Kartın boyu içeriğe göre uzasın */
                margin: 0 auto !important;
                position: relative !important;
                left: 0 !important;
                display: block !important;
          }
            
            .product-card img {
                width: 100% !important;
                height: auto !important;
                object-fit: cover;
            }
            
            .product-name {
                font-size: 1em;
            }
            
            .product-price {
                font-size: 1.1em;
            }
            
            .add-to-cart {
                padding: 10px 15px;
                font-size: 13px;
            }
            
            .navbar ul a {
                padding: 8px !important;
                font-size: 14px !important;
                text-align: center !important;
                width: 100% !important;
                display: block !important;
                padding: 15px 0 !important; /* Tıklama alanını dikeyde genişletir */
                width: 100% !important;
                text-align: center !important; /* Yazıları merkeze alır */
                box-sizing: border-box;
            } 
            
            .logo {
                margin: 0 auto 10px auto !important;
                display: block !important;
                text-align: center;
            }
            
            
            
            .navbar li {
                width: 100%;
                text-align: center;
            }
            
          
            
            .navbar li:hover > ul {
                display: block;
            }
            
        
           

            .navbar {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                justify-content: center !important;
                width: 100% !important;
                left: 0 !important; 
                right: 0 !important;
                margin: 0 auto !important;
                transform: none !important; 
                height: auto !important;
                padding: 10px 0 !important;
                }

   
            .navbar > ul {
                display: none !important; 
                width: 100% !important;
                padding-left: 0 !important; 
                margin-left: 0 !important;
                margin-right: 0 !important;
                left: 0 !important;
                position: static !important;
                transform: none !important;
                list-style: none !important;
                }

    /* 3. Menü açıldığında */
            .navbar.active > ul {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                }

    /* 4. Menü elemanlarını tam merkezle */
            .navbar ul li {
                width: 100% !important;
                margin: 0 !important;
                padding: 0 !important;
                text-align: center !important;
            }

            .navbar ul li a {
                display: block !important;
                width: 100% !important;
                text-align: center !important;
                padding: 15px 0 !important;
                margin: 0 !important;
             }
           

    /* İÇ İÇE MENÜLER (Alt Menüler) */
                    .navbar ul ul {
                        display: none; /* İlk başta kapalı */
                        position: static !important; /* Yana açılmayı iptal et */
                        width: 100% !important;
                        background: #111 !important; /* Bir tık farklı renk belirgin yapar */
                        padding-left: 20px !important; /* İçeride olduğu belli olsun */
                        border-radius: 0 !important;
                    }

    /* Alt menü açıldığında */
                    .navbar li.submenu-open > ul {
                        display: block !important;
                    }

                    .navbar ul a {
                        border-bottom: 1px solid #222;
                        width: 100%;
                    }

                    .hero {
                        height: 80vh;
                        min-height: 300px;
                        padding: 20px;
                    }
            
                    .hero h1 {
                        font-size: 1.8rem;
                    }
            
                    .hero p {
                        font-size: 0.9rem;
                    }
            
                    .cta-button {
                        padding: 10px 20px;
                        font-size: 0.9rem;
                    }
            
                    .container h2 {
                        font-size: 1.5rem;
                        margin-left: 15px;
                        margin-right: 15px;
                    }
            
                    .istatistik-grid {
                    grid-template-columns: 1fr;
                    }
            
                    .istatistik h3 {
                        font-size: 32px;
                    }
            
                    .footer-grid {
                        grid-template-columns: 1fr;
                        text-align: center;
               
                    }
                }

        @media (max-width: 576px) {
            .product-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .product-card {
                max-width: 300px;
                margin: 0 auto;
            }
            
            .product-card img {
                height: 200px;
            }
            
            .hero h1 {
                font-size: 1.5rem;
            }
            
            .hero p {
                font-size: 0.8rem;
            }
            
            .blog-kart {
                width: 100%;
                margin-left: 0;
                
            }
            
            .blog-kart img {
                height: 200px;
            }
            
            .stick2 p {
                font-size: 14px;
                padding: 5px;
            }
            
            .avantaj-grid,
            .indirim-grid {
                grid-template-columns: 1fr;
            }
            
            .sss-grid {
                padding: 0 15px;
            }
            
            .copyrg p {
                font-size: 14px;
                padding: 0 10px;
            }
        }

        @media (max-width: 400px) {
            .product-grid {
                padding: 0 10px;
            }
            
            .product-card {
                min-height: 320px;
            }
            
            .product-card img {
                height: 160px;
            }
            
            .product-name {
                font-size: 0.9em;
            }
            
            .product-price {
                font-size: 1em;
            }
            
            .add-to-cart {
                padding: 8px 12px;
                font-size: 12px;
            }
            
            .hero h1 {
                font-size: 1.3rem;
            }
            
            .cta-button {
                padding: 8px 16px;
                font-size: 0.8rem;
            }
        }

         @media (max-width: 768px) {
            .footer{
         
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
               
            }

            .footer-bolum {
                padding: 0 15px;
            }

            .footer-logo {
                margin: 0 auto 20px;
            }

            .footer-bolum ul li a:hover {
                padding-left: 0;
            }
        }

        @media (max-width: 576px) {
            .footer {
                padding: 40px 0 20px;
            }

            .footer-bolum h4 {
                font-size: 16px;
            }

            .footer-bolum p,
            .footer-bolum ul li a {
                font-size: 13px;
            }

            .footer-bolum p {
                line-height: 1.5;
            }
        }


    }