/**
 * Hupacha Reviews - Product Page Styles
 */

/* Review photos in product reviews */
.hupacha-review-photos-display {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.hupacha-review-photo-link {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.hupacha-review-photo-link:hover {
    transform: scale(1.05);
}

.hupacha-review-photo-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox for review photos */
.hupacha-review-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    cursor: pointer;
}

.hupacha-review-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}
