
.products-section {
    background: #f8f9fa;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform .3s;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-img {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .3s;
}

.product-img:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-info h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.product-info span {
    font-size: 14px;
    color: #6c757d;
}

/* MODAL */
.product-modal {
    border-radius: 10px;
}

.modal-img {
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
}

.modal-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-specs {
    list-style: none;
    padding: 0;
}

.modal-specs li {
    font-size: 14px;
    margin-bottom: 6px;
}

.carousel-inner {
    height: 280px;
}

.carousel-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Carousel next & prev button */
.carousel-control-prev,
.carousel-control-next {
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    /* white background */
    border-radius: 50%;
    border: 1px solid #ddd;
    /* visibility ke liye */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

/* Arrow icon color = white */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    /* arrow white */
}

/* Hover effect (optional but recommended) */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #f8f9fa;
}
/* =========================
   FORCE FULL IMAGE DISPLAY
   ========================= */

/* PRODUCT CARD IMAGE */
.product-img {
    height: auto !important;
    min-height: 350px;
    overflow: visible !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.product-img img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 350px !important;
    object-fit: contain !important;
}


/* MODAL + CAROUSEL */
.carousel-inner {
    height: auto !important;
    min-height: 280px;
    background: #f8f9fa;
}

.carousel-item {
    height: auto !important;
    text-align: center;
}

.carousel-item img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 280px !important;
    object-fit: contain !important;
    margin: auto;
}
