.dz-category-widget {
    text-align: center;
    padding-bottom: 2rem;
}

.dz-category-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.dz-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    overflow-x: auto;
    padding: 0 10px;
}

.dz-category-card {
    position: relative;
    width: 140px;
    height: 180px;
    border-radius: 20px 20px 0 0;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    overflow: hidden;
    flex-shrink: 0;
}

.dz-category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 40%;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.dz-category-name {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    z-index: 2;
}

@media (max-width: 768px) {
    .dz-categories {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .dz-category-card {
        width: 45%;
        margin-bottom: 16px;
    }
}
