﻿.category-section {
    padding: 100px 0;
    background: #f9faf7;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #3b3b3b;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.category-card {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    transition: .5s;
}

    .category-card:hover {
        transform: translateY(-10px);
    }

    .category-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

.category-name {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,.5);
    color: white;
    font-size: 24px;
    text-align: center;
    padding: 20px;
}
