.gradient-category {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    aspect-ratio: 1;
}

.gradient-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
}

.gradient-category:hover .gradient-image {
    transform: scale(1.1);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6)); 
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: all 0.3s ease;
}

.category-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.category-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .category-title {
        font-size: 1.2rem;
    }
}