.products-home {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Başlık */
.products-home-title {
    font-size: 3rem;
    margin-bottom: 60px;
    color: #222;
    text-align: center;
}

/* Kategori container */
.products-home-categories {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Kategori kartı */
.category-card {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.4s, box-shadow 0.4s;
}

.category-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Görsel */
.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s;
}

.category-card:hover .category-overlay {
    background: rgba(0,0,0,0.15);
}

/* Kategori adı */
.category-name {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .category-card {
        width: 80%;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .category-card {
        width: 100%;
        height: 250px;
    }

    .products-home-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .category-name {
        font-size: 1.4rem;
    }
}