#Qty {
    font-weight: bold;
    background: #f8f9fa;
}
#previewBox img {
    max-width: 100px;
    margin-top: 10px;
    border-radius: 5px;
}
.table th, .table td {
    vertical-align: middle;
}
.product-gallery{
    width:100%;
}

#productCarousel{
    background:#f8f9fa;
    border-radius:12px;
    overflow:hidden;
}

.main-product-img{
    width:100%;
    height:500px;
    object-fit:contain;
    background:white;
}

.thumbnail-row{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.thumbnail-row .thumb{
    width:80px;
    height:80px;
    object-fit:contain;
    border:2px solid #ddd;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.thumbnail-row .thumb:hover{
    border-color:#0d6efd;
    transform:scale(1.05);
}

.thumbnail-row .active-thumb{
    border-color:#0d6efd;
}