/* GENEL AYARLAR */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* KEDİ BANNER (HERO) TASARIMI */
/* DAHA KISA KEDİ BANNER TASARIMI */
.kedi-hero {
    height: 45vh; /* Yüksekliği %70'ten %45'e indirdik */
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center 30%; /* Kedinin yüzüne odaklanması için konumu ayarladık */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0; /* Header ile birleşmesi için */
}

.kedi-hero-content h1 {
    font-size: 3rem; /* Yazı boyutunu biraz küçülttük */
    font-weight: 800;
    margin-bottom: 5px;
}

.kedi-hero-content h1 span {
    color: #ff8c00;
    display: inline; /* Yan yana durması için inline yaptık */
    font-size: 3rem;
}

.kedi-hero-content p {
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.9;
}

/* Mobilde daha da kısa olması için */
@media (max-width: 768px) {
    .kedi-hero {
        height: 35vh;
    }
    .kedi-hero-content h1, .kedi-hero-content h1 span {
        font-size: 2rem;
    }
}

.kedi-hero-content {
    max-width: 800px;
}

.kedi-hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.kedi-hero-content h1 span {
    color: #ff8c00;
    display: block; /* Alt satıra indirerek vurgula */
    font-size: 5rem;
}

.kedi-hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ÜRÜN KARTLARI DÜZENLEMESİ */
.kedi-products-section {
    padding: 100px 8%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-item {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.product-item:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-color: #ff8c00;
}

.product-item img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: 0.5s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.product-item p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    height: 40px; /* Hizalamak için */
}

.product-item .price {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 20px;
}

/* SEPETE EKLE BUTONU */
.add-to-cart {
    width: 100%;
    background: #222;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.add-to-cart:hover {
    background: #ff8c00;
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

/* MOBİL AYAR */
@media (max-width: 768px) {
    .kedi-hero-content h1 { font-size: 2.5rem; }
    .kedi-hero-content h1 span { font-size: 3rem; }
    .kedi-hero { height: 50vh; }
}
/* ÜRÜNLERİ YAN YANA 5'Lİ SIRALAMA */
.products-grid {
    display: grid;
    /* Masaüstü ekranlarda tam 5 sütun yapar */
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px; /* 5'li sırada kutular küçüleceği için boşluğu biraz azalttık */
}

/* TABLET VE MOBİL İÇİN UYARLAMA (ÖNEMLİ) */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr); /* Orta boy ekranlarda 3'lü */
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobilde 2'li */
    }
}
