section {
    flex: 1;
    justify-content: space-around;
    display: flex;
    align-items: center;
    gap: 2rem;
}

#products img {
    border-radius: 5px;
    width: 150px;      /* adjust to desired size */
    height: auto;      /* keeps aspect ratio */
    object-fit: cover; /* crops if necessary */
    display: block;    /* remove inline spacing */
    margin: 0 auto;    /* center if needed */
}

#products .small img {
    width: 150px;             /* initial size */
    height: auto;
    object-fit: cover;
    display: block; 
    margin: 0 auto;
    transition: transform 0.3s ease; /* smooth animation */
}

#products .small img:hover {
    transform: scale(1.2);    /* expand 20% on hover */
    cursor: pointer;          /* optional: indicate it's interactive */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

#products .small p {
    align-content: center;
    text-align: center;
    font-size: 20px;
}

@media (max-width: 600px) {
    #products .small p {
        font-size: 18px;
    }
}

#products .small strong {
    align-content: center;
    font-size: large;
    text-align: center;
    font-size: 22px;

}
#product-1, #product-2, #product-3, #product-4 {
    transition: 0.2s ease;
}

#product-1:hover, #product-2:hover, #product-3:hover, #product-4:hover {
    transform: scale(1.2)
}