#container {
    display: flex;
}

#image-gallery {
    flex: 1;
    min-width: 0;
}

#image-gallery img {
    max-width: 100%;
}

#main-image {
    display: block;
    margin: auto;
    width: 80%;
    padding-bottom: 10px;
}

.thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.thumbnail {
    width: 20%;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
}

#product-info {
    flex: 1;
    min-width: 0;
}

#price-row {
    
}

#cart-addition {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#view-cart a {
    color: #222;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-family: inherit;
    font-size: inherit;
}

#view-cart a:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    #container {
        flex-direction: column;
    }
    #main-image {
        width: 100%;
    }
    .thumbnail {
        width: 30%;
    }
    #cart-addition {
        display: none;
    }
}
