.item {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr auto;
    gap: 40px;
}

.itemDescription {
    float: left;
}

.itemDescription p {
    line-height: 1.5em;
}

.itemPrice {
    font-size: 25px;
}

.itemCarousel {
    float: left;
    width: 100%;
    min-width: 540px;
    max-width: 600px;
}

.itemCarouselElement {
    display: none;
}

.itemCarouselElement img {
    width: 100%;
    min-width: 540px;
    max-width: 600px;
}

.itemCarouselElement--selected {
    display: block;
}

.itemCarouselNav {
    width: 100%;
    padding: 20px 0;
    position: relative;
    bottom: 60px;
    left: 0;
    text-align: center;
}

.itemCarouselButton {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: white;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.itemCarouselButton--selected {
    background: black;
}


@media only screen and (max-width: 1300px) {
    .item {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .itemCarousel {
        width: 100%;
        min-width: 450px;
        max-width: 540px;
    }

    .itemCarouselElement img {
        width: 100%;
        min-width: 450px;
        max-width: 540px;
    }
}
