.item-title {
    text-align: center;
    padding: 15px;
}

.main-window {
    margin: 0 auto;     /* centering */
    max-width: 1400px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 15px;
    background-color: white;
}

.side-column {
    width: 30%;
    padding: 35px 10px 10px 10px;
    background-color: none;
    flex-grow: 1;
}

.item-image-container {
    
}

.item-image-thumbnails {
    display: flex;
    gap: 3px;
    background-color: none;
}

.item-image-thumbnails a img {
    width: 70px;
    min-width: 70px;
    padding-top: 15px;
    flex-wrap: wrap;
    flex-grow: 1;
    background-color: none;
}

.item-details-container {
    width: 53%;
    min-width: 430px;
    padding: 15px;
    background-color: none;
}

.add-to-cart-container {
    width: 17%;
    margin-top: 30px;
    padding: 15px 15px 15px 0;
}

.right-bar1 {
    padding: 10px;
    background-color: none;
    flex-grow: 1;
    border: 1px solid lightgray;
    border-radius: 5px;
}

.item-image-container a img {
    width: 100%;
    border-radius: 10px;
    /* border: 1px solid lightgray; */
}

.item-name {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 1px solid darkgray;
}

.item-price {
    font-size: 20px;
    color: #d23311;
    padding: 15px;
    border-bottom: 1px solid darkgray;
}

.item-specs {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid darkgray;
    line-height: 1.6;
}

.item-label {
    width: 40%;
    font-weight: bold;
    background-color: none;
    font-family: var(--fonts2);
}

.item-text {
    width: 60%;
    background-color: none;
    font-family: var(--fonts2);
}

.item-about {
    padding: 15px;
    border-bottom: 1px solid darkgray;
    font-family: var(--fonts2);
}

.item-about li {
    padding: 5px;
    line-height: 1.5;
    font-family: var(--fonts2);
}

.cart-options {
    padding: 15px 0;    
}

.cart-options button {
    border: none;
    border-radius: 15px;
    padding: 5px 30px;
    background-color: orange;
    font-size: 15px;
}

.cart-options button:hover, .item-image-container a img:hover, .item-image-thumbnails a img:hover {
    opacity: 0.7;
    cursor: pointer;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    div.add-to-car-container { 
        display: none;
    }
    div.item-image-container {
        padding-top: 10px;
    }

}