#section-product{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 90%;
    margin: auto;
    padding: 95px 0;
    margin-bottom: 50px;
}

.product-gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 450px;
    margin-right: 50px;
    margin-top: 10px;
}

.product-gallery-img{
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    margin-right: 10px; 
}

.product-gallery-img img{
    width: 100%;
    height: 100%;
    display: block;
}

.product-gallery-img:first-of-type{
    width: 450px;
    height: 450px;
}

.product-gallery-img:first-of-type img{
    object-fit: contain;
}

.product-info{
    text-align: right;
    margin-left: 60px;
}

.product-attr-header{
    font-family: 'spectral-semibold-italic';
}

.product-attr{
    margin-bottom: 10px;
}

#quantity{
    display: block;
    text-align: right;
    font-family: 'spectral-regular';
    width: 40px;
    padding: 0;
}

#size{
    display: block;
    font-family: 'spectral-regular';
}

#option-box{
    display: flex;  
    justify-content: flex-end;
    margin-top: 50px;
}

#option-box-stretcher{
    display: flex;  
    justify-content: flex-end;
    margin-top: 20px;
    margin-right: 10px;
}

#option-stretcher{
    margin-left: 10px;
}

label{
    font-family: 'spectral-regular';
    display: block;
}
#quantity-label{
    margin-left: 30px;
}

.mobile-header{
    display: none;
}

@media only screen and (max-width: 900px) {
    #section-product{
    display: flex;
    align-items: center;
    justify-content: center;
        flex-wrap: wrap;
    width: 90%;
    margin: auto;
    padding: 95px 0;
    margin-bottom: 100px;
}
    
    .product-gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 400px;
    margin-right: 0px;
    margin-top: 10px;
        margin-bottom: 30px;
}

.product-gallery-img{
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    margin-right: 10px; 
}

.product-gallery-img img{
    width: 100%;
    height: 100%;
    display: block;
}

.product-gallery-img:first-of-type{
    width: 350px;
    height: 350px;
}
    
   

.product-gallery-img:first-of-type img{
    object-fit: contain;
}

.product-info{
    text-align: center;
    margin-left: 0px;
}
    
    .mobile-header{
        display: block;
        width: 100%;
        margin: auto;
    }
    
    .h1-black-right{
        text-align: center;
    }
    .h1-black-right:after {
    left: 50%;
        transform: translateX(-50%);
}
    .product-info h1{
        display: none;
    }
#option-box{
    display: flex;  
    justify-content: center;
    margin-top: 50px;
}


}