/* Product Dynamic Page Styles */

/* Apply Poppins font to all elements */
.bag-heading *,
.product-slider *,
.container *,
.product-detail-extended *,
.tab-content-custome *,
.ads-on-section *,
.ifm-vide * {
    font-family: 'Poppins', sans-serif;
}

/* Product Type Label */
.product-type-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

/* Specification Table Label Styling */
.table-contet-tabs .table tbody tr td:first-child {
    color: #061844;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* Specification Table Value Styling (optional, for consistency) */
.table-contet-tabs .table tbody tr td:last-child {
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* More Product Details Button */
.btn-more-details {
    display: inline-block;
    padding: 12px 30px;
    /* margin-top: 20px; */
    /* margin-bottom: 30px; */
    background-color: #E6F2FF;
    color: #007BFF;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-more-details:hover {
    background-color: #007BFF;
    color: #FFFFFF;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Two Images Layout - Owl Carousel */
.product-slider .two-images-carousel {
    padding-left: 250px;
    padding-right: 250px;
}

.product-slider .two-images-carousel .item {
    margin-bottom: 0;
    height: 100%;
}

.product-slider .two-images-carousel .card.product-show-top {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

.product-slider .two-images-carousel .card.product-show-top img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Owl Carousel Dots Styling for Two Images Carousel */
.product-slider .two-images-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.product-slider .two-images-carousel .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D9D9D9;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-slider .two-images-carousel .owl-dot.active {
    background: #007BFF;
    width: 12px;
    height: 12px;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
    .product-slider .two-images-carousel {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    .product-slider .two-images-carousel {
        padding-left: 0;
        padding-right: 0;
    }
    
    .product-slider .two-images-carousel .card.product-show-top {
        min-height: 250px;
    }
}

/* Single Image Layout (fallback for products without second image) */
.product-slider .row {
    display: flex;
    align-items: center;
}

.product-slider .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.product-slider .item {
    margin-bottom: 0;
    height: 100%;
}

.product-slider .card.product-show-top {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

.product-slider .card.product-show-top img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
