﻿.product-view-container {
    margin-top: 200px;
    margin-bottom: 200px;
}

.product-view-img-container img {
    width: 200px;
}

.product-view-info-container .product-info {

    width: 50%;
}

.product-btn {
    width: 50%
}
/* Mobile Portrait */
@media (max-width: 768px) and (orientation: portrait) {
    .product-view-container {
        margin-top: 150px;
        margin-bottom: 150px;
    }

    .product-view-img-container img {
        width: 150px;
    }

    .product-view-info-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }


        .product-view-info-container .product-info {

            width: 80%;
        }



    .product-btn {
        width: 100%
    }
}



/* Mobile Landscape */

@media (max-width: 846px) and (orientation: landscape) {
    .product-view-container {
        margin-top: 150px;
        margin-bottom: 150px;
    }

    .product-view-info-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product-view-img-container img {
        width: 150px;
    }

    .product-view-info-container .product-info {
        width: 80%;
    }



    .product-btn {
        width: 100%
    }

}




/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: portrait) {
    .product-view-container {
        margin-top: 150px;
        margin-bottom: 150px;
    }

    .product-view-info-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .product-btn {
        width: 100%
    }
}


/* Tablet Landscape */
@media only screen and (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
    .product-view-container {
        margin-top: 150px;
        margin-bottom: 150px;
    }

    .product-view-info-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .product-btn {
        width: 100%
    }
}