.product-container {
   
    display: flex;
    flex-direction: column;
    padding-bottom: 4em;
    border-bottom: 1px solid var(--accent-color);
    margin-top: 8vh;
}

.images-header {
    display: flex;
    column-gap: 1em;
    padding: 1em;
    max-width: 90vw;
    overflow-x: scroll;
}

.images-header img {
    width: 50vw;
    height: 50vh;
    object-fit: cover;
}

.product-header {
    display: flex;
    padding: 0em 1em;
    justify-content: space-between;
}

.row {
    display: flex;
    flex-direction: column;
    max-width: 45vw;
}

.product-title {
    font-family: var(--header-font);
    text-transform: uppercase;
    font-weight: 200;
    color: #fff;
    font-size: 1.375em;
}

.row h4 {
    color: var(--accent-color-2);
    font-family: var(--body-font);
    text-transform: uppercase;
    font-weight: 600;
    font-size: .875em;
}

.product-price {
    color: #bdbdbd;
    font-family: var(--body-font);
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1.125em;
}

.product-desc {
    padding: 0em 1em;
    font-family: var(--body-font);
    line-height: 1.875em;
    color: #bdbdbd;
}

.product-container button {
    align-self: center;
    padding: .75em 1em;
    background: var(--accent-color-2);
    font-family: var(--body-font);
    color: var(--primary-green);
    border-radius: .25em;
    width: 88vw;
    font-size: 1.125em;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cta a {
    color: var(--primary-green);
    text-decoration: none;
}

.web-product-container {
    display: none;
}

.similar-bags {
    display: none;
}



.wishlist-btn {
    background: none  !important;
    border: none !important;
    width: 36px;
    height: 36px;
    padding: 0 !important;
    margin: 0 !important;
} 

.wishlist-btn img  {
    width: 36px;
    height: 36px;
}

.row-2 {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.row-2 button {
    background: none;
    margin: 0;
    padding: 0;
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

    body {

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .product-container {
        display: none;
    }

    .web-product-container {
        width: 100%;
        margin-top: 20vh;
        display: flex;
        padding: 0em 2em;
        justify-content: center;
    }
    
    #web-product-title {
        color: #fff;
    }

    .web-images-header {
        display: flex;
        column-gap: 1em;
        position:  relative;
    }

    #banner-main {
        height: 80vh;
        width: 30vw;
        object-fit: cover;
    }

    #web-images-list {
        max-height: 70vh;
        min-height: 70vh;
        row-gap: 1em;
        overflow-y: scroll;
        display: flex;
        flex-direction: column;

    }

    #web-images-list img {
        width: 8vw;
        object-fit: cover;
    }

    .web-product-details {
        display: flex;
        flex-direction: column;

        width: 45vw;
        margin-left: 2em;
        align-items: flex-start;
        justify-content: flex-start;
        
    }

    #web-product-title {
        font-size: 1.875em;
        color: #bdbdbd;
    }

    #web-product-price {
        color: #bdbdbd;
        font-family: var(--numbers-font);
        font-weight: bold;
        font-size: 1.5em;
    }

    #web-cta {
        padding: .75em 3em;
        background: var(--accent-color-2);
        text-decoration: none;
        align-items: center;
        color: var(--primary-green);
        border: 1px solid var(--accent-color-2);
        border-radius: .25em;
    }

    #web-cta a {
        color: var(--primary-green);
        font-size: 1.375em;
        display: flex;
        align-items: center;
        font-weight: bold;
    }

    #web-product-desc {
        margin-top: 1em;
        color: #bdbdbd;
        font-family: var(--body-font);
        width: 40vw;
        line-height: 1.5em;
        font-size: 1.125em;
        font-weight: 400;
    }

    #web-product-title {
        font-family: var(--header-font);
        font-size: 4em;
        text-transform: uppercase;
        font-weight: 100;
        letter-spacing: .0625em;
    }

    #web-product-subtitle {
        color: var(--accent-color-2);
        font-size: 1.125em;
        font-family: var(--body-font);
        text-transform: uppercase;
    }

    #banner-main-overlay {
        position: absolute;
        top: 2vh;
        left: 0;
        right: 0;
        background-image: url("../assets/frame_box_23.png");
        width: 30vw;
        height: 75vh;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
   } 

   .similar-bags {
        width: 100vw;
        padding-top: 2em;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 4em;

        background-image: url("../../assets/stroy_banner_web.png");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
   }

   .recmmd-title {
        font-family: var(--header-font);
        padding: 1em 0em;
        font-size: 2.5em;
        font-weight: 200;
        color: #bdbdbd;
        line-height: 3em;
   }

   #recommend-body {
    display: flex;
    column-gap: 2em;
   }

   .row-2 {
    display: flex;
    }

.row-2 button {
    background: none;
    margin: 0;
    padding: 0;
}

  .wishlist-btn {
    background: none;
    border: none;
   } 

}