/* =====================================
        PRODUCT DETAIL
===================================== */

.product-page{

    padding:80px 0;

}


.product-gallery{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.product-gallery img{

    width:100%;

    height:550px;

    object-fit:cover;

    transition:.45s;

}

.product-gallery:hover img{

    transform:scale(1.04);

}

.product-info{

    padding:10px 20px;

}

.product-brand{

    color:#18C7B8;

    font-weight:700;

    margin-bottom:15px;

    display:block;

}

.product-name{

    font-size:2rem;

    font-weight:800;

    line-height:1.8;

    margin-bottom:20px;

}

.product-price{

    margin:30px 0;

}

.product-old-price{

    display:block;

    color:#999;

    text-decoration:line-through;

    font-size:1rem;

}

.product-new-price{

    color:#E53935;

    font-size:2rem;

    font-weight:800;

}

.stock-box{

    margin:25px 0;

    padding:15px;

    border-radius:14px;

    background:#F7FAFC;

}

.stock-box span{

    font-weight:700;

}

.buy-btn{

    width:100%;

    height:58px;

    border-radius:16px;

    font-size:1.1rem;

    font-weight:700;

}

.product-description{

    margin-top:70px;

    background:#fff;

    border-radius:22px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.product-description h3{

    margin-bottom:25px;

    font-weight:800;

}

.related-products{

    margin-top:80px;

}

/* ===============================
        PRODUCT IMAGE FIX
================================ */


#mainImage{

    width:500px;

    height:500px;

    object-fit:contain;
    object-position:center;


    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    display:block;

    background:var(--white);
}



/* thumbnails container */

.d-flex.gap-3.mt-3{

    margin-top:20px !important;

    flex-wrap:wrap;

}



/* thumbnails */

.thumbnail{


    width:100px !important;

    height:100px !important;

    object-fit:cover;

    border-radius:14px;

    cursor:pointer;

    transition:.3s ease;

    border:2px solid transparent;


}



.thumbnail:hover{


    border-color:var(--primary);

    transform:translateY(-5px);


}

.cart-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    width:100%;

    height:60px;

    background:var(--primary);

    color:var(--white);

    border-radius:var(--radius-lg);

    font-size:1.1rem;

    font-weight:700;

    text-decoration:none;

    box-shadow:var(--shadow-md);

    transition:var(--transition);

    margin-top:25px;

}



.cart-btn:hover{

    background:var(--primary-dark);

    color:var(--white);

    transform:translateY(-3px);

    box-shadow:var(--shadow-lg);

}