.category-box {
    cursor: pointer;
    text-align: center;
}

#zoomContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

#zoomImage {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 5px;
}

@media (min-width: 992px) {
    .category-image {
        height: 300px;
        border-radius: 10px;
    }
}



.thumbnail-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    cursor: pointer;
}
