.product_images .card-wrapper{
    max-width: 1100px;
    margin: 0 auto;
}
.product_images img{
    object-fit: cover;
}
.product_images .img-object-fit {
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_images .img-display{
    overflow: hidden;
    max-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.product_images .outstanding{
    position: absolute;
    bottom: 28px;
    left: 28px;
    display: flex;
}

.product_images .outstanding .item{
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_images .outstanding > .item:not(:last-child) {
    margin-right: 4px;
}

.product_images .img-showcase{
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}
.product_images .img-showcase img{
    min-width: 100%;
}
.box-item-select {
    height: 156px;
}
.product_images .img-select{
    display: flex;
    overflow-x: hidden;
    scrollbar-width: thin;
    margin-top: 1rem;
    padding-bottom: 4px;
}

.product_images .img-select:hover{
    overflow-x: auto;
}

.product_images .img-item{
    max-width: 150px;
    min-width: 140px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_images .img-select a:not(:first-child) .img-item {
    margin-left: 1rem;
}

.product_images .img-item:hover{
    opacity: 0.8;
}
.product_images .img-item.active {
    border: 1px var(--color-main_color_hex, #FF8A8A) solid;
}

.product_images .product-content{
    padding: 2rem 1rem;
}
.product_images .product-title{
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}
.product_images .product-title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 80px;
    background: #12263a;
}
.product_images .product-link{
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    background: #256eff;
    color: #fff;
    padding: 0 0.3rem;
    transition: all 0.5s ease;
}
.product_images .product-link:hover{
    opacity: 0.9;
}
.product_images .product-rating{
    color: #ffc107;
}
.product_images .product-rating span{
    font-weight: 600;
    color: #252525;
}
.product_images .product-price{
    margin: 1rem 0;
    font-size: 1rem;
    font-weight: 700;
}
.product_images .product-price span{
    font-weight: 400;
}
.product_images .last-price span{
    color: #f64749;
    text-decoration: line-through;
}
.product_images .new-price span{
    color: #256eff;
}
.product_images .product-detail h2{
    text-transform: capitalize;
    color: #12263a;
    padding-bottom: 0.6rem;
}
.product_images .product-detail p{
    font-size: 0.9rem;
    padding: 0.3rem;
    opacity: 0.8;
}
.product_images .product-detail ul{
    margin: 1rem 0;
    font-size: 0.9rem;
}
.product_images .product-detail ul li{
    margin: 0;
    list-style: none;
    background: url(https://fadzrinmadu.github.io/hosted-assets/product-detail-page-design-with-image-slider-html-css-and-javascript/checked.png) left center no-repeat;
    background-size: 18px;
    padding-left: 1.7rem;
    margin: 0.4rem 0;
    font-weight: 600;
    opacity: 0.9;
}
.product_images .product-detail ul li span{
    font-weight: 400;
}
.product_images .purchase-info{
    margin: 1.5rem 0;
}
.product_images .purchase-info input,
.product_images .purchase-info .btn{
    border: 1.5px solid #ddd;
    border-radius: 25px;
    text-align: center;
    padding: 0.45rem 0.8rem;
    outline: 0;
    margin-right: 0.2rem;
    margin-bottom: 1rem;
}
.product_images .purchase-info input{
    width: 60px;
}
.product_images .purchase-info .btn{
    cursor: pointer;
    color: #fff;
}
.product_images .purchase-info .btn:first-of-type{
    background: #256eff;
}
.product_images .purchase-info .btn:last-of-type{
    background: #f64749;
}
.product_images .purchase-info .btn:hover{
    opacity: 0.9;
}
.product_images .social-links{
    display: flex;
    align-items: center;
}
.product_images .social-links a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #000;
    border: 1px solid #000;
    margin: 0 0.2rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.5s ease;
}
.product_images .social-links a:hover{
    background: #000;
    border-color: transparent;
    color: #fff;
}

@media only screen and (max-width: 1200px) {
    .product_images .img-item {
        max-width: 120px;
        min-width: 120px;
    }
    .box-item-select {
        height: 136px;
    }
    .product_images .img-select {
        overflow-x: auto;
    }
}

@media screen and (min-width: 992px){
    .product_images .card-wrapper{
        height: 100vh;
        justify-content: center;
        align-items: center;
    }

    .product_images .product-content{
        padding-top: 0;
    }
}

@media only screen and (max-width: 500px) {
    .product_images .img-item {
        max-width: 100px;
        min-width: 100px;
    }
    .box-item-select {
        height: 116px;
    }
}
