article { 
    max-width: 1400px;
}

.product-layout {
    padding: 1rem;
}

@media (min-width: 768px) {
    .product-layout {
        display: grid;
        grid-template-columns: 3fr 5fr;
        grid-gap: 2rem;
        padding-bottom: 0;
    }
}

.selected-color {
    padding-bottom: 1rem;
    border-bottom: 3px solid #646464;
}

.product-gallery .img-container {
    display: flex;
    justify-content: center;
}

.product-gallery img {
    max-width: 400px;
    border-radius: 10px;
}

.product-info{
    line-height: 3em;
}

.product-info dt{
    font-weight: bold;
}

.product-infos{
    border: 1px solid lightgray;
    font-size: 1.2rem;
    border-radius: 10px;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.product-infos dl{
    margin: 0.8rem;
}

.product-info-price{
    font-size: 2rem;
}

.product-info-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}

.product-description {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    background-color: #d3d3d399;
    padding: .5rem 0;
    border-radius: 10px;
}

.product-gallery {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.product-gallery ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    grid-gap: 1rem;
}

.product-gallery li {
    border: 3px solid #646464;
}

.product-gallery li:hover{
    border: 3px solid gold;
}

.product-gallery img {
    width: 100%;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.product-info-cart{
    display: flex;
    justify-content: center;
    padding: 2em;
}

.product-info-cart a{
    background-color: #646464!important;
    color: gold!important;
    font-size: 1.5rem;
}

.product-info-cart a:hover{
    background-color: gold!important;
    color: #646464!important;
}

.product-carousel {
    background: white;    
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.product-carousel-cell {
    width: 33%;
    height: 200px;
    background: #646464;
    border-radius: 5px;
    margin-right: 10px;
}

.product-carousel-cell-image{
    display: block;
    height: 100%;
    width: 100%;
    padding: 3px;
    object-fit: cover;
}