        body {
                      font-family: 'Arial', sans-serif;
            background-color: #e8f0fe;
            margin: 0;
            padding: 0;
        }
        .card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .card-title {
            color: #333;
            font-size: 1.2rem;
        }
        .card-text {
            font-size: 0.9rem;
            color: #666;
        }
        .btn-primary {
            background-color: #007bff;
            border: none;
        }
        .btn-primary:hover {
            background-color: #0056b3;
        }
        .category-badge {
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        .price-tag {
            font-size: 1.1rem;
            font-weight: 700;
            color: #28a745;
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .card-body {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .card-footer {
            text-align: center;
        }
        .category-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .category-container .category-badge {
            margin-bottom: 10px;
        }
        .no-image {
            background-color: #f39c12;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
            font-size: 1.5rem;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 5px;
            object-fit: cover;
        }
.header-container {
    text-align: center;
    margin-top: -40px; /* Başlığı yukarı taşımak için */
    padding: 5px;
    position: relative;
}

.header-container h2 {
    font-size: 2rem; /* Başlık boyutu */
	font-family: 'Poppins', sans-serif; /* Yazı tipini Poppins olarak ayarladık */
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #333;
    display: inline-block;
    position: relative;
    padding: 10px 20px;
    background-color: #F0FFFF; /* Başlık arka planı */
    border-radius: 8px; /* Köşeleri yuvarlamak */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Hafif gölge ekleyelim */
    white-space: normal; /* Yazının tek satırda olmaması için normalde bırakıyoruz */
    word-wrap: break-word; /* Kelimeler taşarsa düzgün kırılır */
    max-width: 100%; /* Başlık genişliği %100 olacak şekilde ayarlanır */
    box-sizing: border-box; /* Padding'in kutu boyutuna dahil edilmesini sağlar */
}

.header-container h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px; /* Alt çizgi */
    background-color: #f4d03f;
    border-radius: 8px;
    transform: scaleX(0);
    transform-origin: bottom right;
    animation: underline 0.6s ease-in-out forwards;
}

@keyframes underline {
    0% {
        transform: scaleX(0);
        transform-origin: bottom right;
    }
    100% {
        transform: scaleX(1);
        transform-origin: bottom left;
    }
}

.header-container h2:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Alt başlık ekleyelim */
.subheading {
    font-size: 1rem; /* Küçük alt başlık */
    color: #666;
    margin-top: 5px;
}

/* Mobil cihazlar için başlık boyutunu küçültme */
@media (max-width: 768px) {
    .header-container h2 {
        font-size: 1.5rem; /* Mobilde başlık boyutunu küçült */
        padding: 8px 15px; /* Başlık içindeki boşluğu ayarla */
    }
}

@media (max-width: 480px) {
    .header-container h2 {
        font-size: 1.2rem; /* Daha küçük ekranlarda başlık boyutunu daha da küçült */
    }
}

/* Kategori filtreleme formunun stilini özelleştir */
.kategori-form {
    text-align: center; /* İçeriği ortala */
    background-color: #f4d03f; /* Form arka planı */
    padding: 15px; /* İç boşluklar */
    border: 1px solid #ddd; /* Çerçeve */
    border-radius: 5px; /* Köşeleri yuvarla */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    max-width: 400px; /* Formun genişliğini sınırla */
    width: 100%; /* Formun genişliği %100 olacak şekilde */
    box-sizing: border-box; /* Padding'in kutu boyutuna dahil edilmesini sağlar */
    margin: 0 auto; /* Ortalamayı sağlar */
}

/* Form öğelerinin düzeni */
.kategori-form .form-label {
    font-size: 1rem; /* Etiket yazı boyutu */
    margin-bottom: 8px; /* Etiket ile input arasındaki boşluk */
    display: block; /* Etiketi yukarıda göster */
    font-weight: bold;
    color: #333; /* Etiket rengi */
}

/* Select kutusunun stilini düzenleyelim */
.kategori-form .form-select {
    font-size: 0.9rem; /* Select kutusu yazı boyutu */
    padding: 8px; /* İç boşluklar */
    border-radius: 4px; /* Köşeleri yuvarla */
    border: 1px solid #ccc; /* Çerçeve rengi */
    width: 100%; /* Select kutusunun genişliği %100 */
    box-sizing: border-box; /* Padding'in kutu boyutuna dahil edilmesini sağlar */
}

/* Focus durumunda tasarım */
.kategori-form .form-select:focus {
    outline: none; /* Focus durumunda dış çizgiyi kaldır */
    border-color: #007bff; /* Odaklanınca çerçeve rengi */
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.5); /* Hafif mavi bir gölge */
}


