@media screen and (max-width: 1240px){
    .product__content__img-wrapper {
        width: 50%;
    }
    
}
@media screen and (max-width: 1024px){
    .product__content__img-wrapper {
        width: 50%;
    }
    .product__tax-info {
        margin-bottom: 1.5rem;
    }
    .order-form {
        margin-bottom: 1.5rem;
    }
    .accordion{
        max-width: 100%;
    }
    .mobile-nav-button{
        display: flex;
    }
}

/************************************************/

@media screen and (max-width: 1024px){
    .header__nav{
        position: fixed;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, .2);
        z-index: 10;
        transition: all ease .4s;
    }
    .header__nav--active{
        left: 0;
    }
    .header__nav__list{
        width: max-content;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 5.5rem;
        background-color: #ffff;
    }
    
    .header__nav__list:last-child{
        padding-top: 0;
        height: 100vh;
        
    }
    
    .header__nav__link{
        display: inline-block;
        padding: 0.8rem 0 0.8rem 3rem ;
        width: 175px;      
    }
    .header__nav__item:not(:last-child){
        margin-right: 0;
    }
    .header-logo{
        left: 100%;
        top: 1.35rem;
        transform: translateX(-100%);
    }
}


@media screen and (max-width: 938px){
    .products__list{
        padding: 0 1.5rem;
    }
}
@media screen and (max-width: 925px){
    .product__content{
        flex-direction: column;
    }
    .product__content__img-wrapper {
        width: 100%;
        max-width: none;
    }
    .product-description{
        max-width: none;
    }
    .order-form__fieldset{
        margin-bottom: 0.75rem;
    }
    .label-size{
        margin-bottom: 0.75rem;
    }
    .label-color{
        margin-bottom: 0.75rem;
    }
    .form-button-wrapper{
        display: flex;
        justify-content: space-between;
    }
    .form-button {
        width: calc(50% - 1rem);  
    }
}
@media screen and (max-width: 650px){
    .products__list{
        padding: 0;
    }
    .accordion {
        margin-bottom: 4.25rem;
    }
    
}
@media screen and (max-width: 596px){
    .products__list{
        flex-direction: column;
        align-items: center;
        margin-bottom: 3rem;
    }
    .footer__content {
        margin: 3rem 0 3rem;
    }
    .footer__copyright {
        margin-bottom: 1.5rem;
    }
}
@media screen and (max-width: 478px){
    .form-button-wrapper{
        flex-direction: column;
    }
    .form-button{
        width: 100%;
    }
}
@media screen and (max-width: 416px){
    .footer__content{
        flex-direction: column;
        justify-content: center;
    }
    
}