

.products {
    display : grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.product {
    width: 100%;
    height: 7em;
    object-fit: cover;
}

#product-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #00000069;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

#product-overlay.hidden {
    display: none;
}

#product {
    width: 50%;
    height: auto;
}