/* Layoutinställningar för produktsektionen (flexbaserad struktur) */
section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-left: 20px;
    margin-right: 20px;
}

/* Grundavstånd kring varje produkt (figure) */
figure {
    margin: 15px;
}

/* Bildstorlek specifikt för produktbilder */
section figure img {
    width: 450px;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.508);
}
section figure:hover {
    transform: scale(1.05);
}
section figure {
    transition: 0.2s;
}


