.kategori-slider-section {
    width: 100%;
    margin: 80px auto;
    text-align: center;
}

.kategori-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #c73fff94;
}

.kategori-slider {
    display: flex;
    gap: 35px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 20px;
}

.kategori-slider::-webkit-scrollbar {
    display: none;
}

.kategori-card {
    min-width: 380px;
    height: 280px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: .3s;
}

.kategori-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kategori-card:hover {
    transform: scale(1.03);
}

.kategori-card h3 {
    position: absolute;
    bottom: 60px;
    left: 25px;
    color: #c73fff94;
    font-size: 26px;
    font-weight: 800;
   
}

.btn-kat {
    position: absolute;
    bottom: 18px;
    left: 25px;
    padding: 8px 22px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.btn-kat:hover {
    background: #c555ffc9;
    color: #fffff;
}

/* Slider Buttons */

.slider-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.slider-buttons button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #000;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: .3s;
}

.slider-buttons button:hover {
    background: white;
}

/* MOBILE */
@media (max-width: 768px) {
    .kategori-card {
        min-width: 300px;
        height: 240px;
    }

    .kategori-card h3 {
        font-size: 20px;
    }
}
.slider-buttons button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #000;   /* siyah çerçeve */
    background: #fff;         /* BEYAZ arka plan */
    color: #000;              /* OKLAR SİYAH */
    font-size: 24px;
    cursor: pointer;
    transition: .3s;
}

.slider-buttons button:hover {
    background: #f0f0f0; /* hover için hafif gri */
}
