/* Container */
#product-detail {
    background: #ffffff;
    border-radius: 12px;
    margin-top: 30px !important;
    margin-bottom: 80px !important;
   
}

/* Product Images */
.product-images {
    position: relative;
}

.product-images img {
    width: 100%;
    height: 500px;  /* Main image height */
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
}

/* Thumbnail Images */
.thumb-img {
    height:90px !important;
    width:auto !important;
    background: #fff;;
    border: 1px solid #ddd !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}
tr{
    text-transform: uppercase;
}

.thumb-img:hover {
 
    box-shadow: 0 0 10px rgba(111, 66, 193, 0.3);
}

/* Slick Navigation */
.slider-nav .slick-slide {
    margin: 0 6px;
}

/* Slick Arrows */
button.slick-prev, button.slick-next {

    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: background 0.3s;
}

button.slick-prev:hover, button.slick-next:hover {

}
th 
{
    display:none !important;
}

/* Product Details */
.product-details {
    padding: 20px;
}

.product-details h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.product-details p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .product-images img {
        height: 300px;
    }
    .thumb-img {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .product-images img {
        height: 250px;
    }
    .thumb-img {
        height: 60px;
    }
    a#product-free
    {

        font-size: 13px !important;
    }
    
}