.fixed-height-img {
    height: 420px;         /* fixed height */
    width: 100%;
    object-fit: cover;     /* ensures cropping, not stretching */
    border-radius: 12px;
    display: block;
}

.thumb-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
    border-radius: 0.5rem;
}

.thumb-image:hover {
    border-color: var(--primary);
}

.active-thumb {
    border: 2px solid var(--primary);
}

/*Product Description*/
.section-title p.fs-5 {
    margin-bottom: 0.5rem;
}

ul.list-unstyled li i {
    font-size: 1rem;
    color: var(--primary);
}

/*Simple Zoom on Hover*/
.zoom-container {
    overflow: hidden;
    border-radius: 8px;
}

.zoom-image {
    transition: transform 0.4s ease;
    display: block;
}

.zoom-container:hover .zoom-image {
    transform: scale(1.1);
}


/* Lightbox Overlay */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    text-align: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    background: #fff;
    color: #000;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Arrows */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0 20px;
    user-select: none;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #0d6efd;
}
