/**
 * Gallery Click Fix
 * Ensures gallery items are clickable
 */

/* Ensure gallery items are clickable */
.gallery-item {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Ensure gallery images are clickable */
.gallery-item img {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Ensure swiper slides allow clicks */
.gallerySwiper .swiper-slide {
    pointer-events: auto !important;
}

/* Ensure swiper wrapper allows clicks */
.gallerySwiper .swiper-wrapper {
    pointer-events: auto !important;
}

/* Ensure gallery swiper container allows clicks */
.gallerySwiper {
    pointer-events: auto !important;
}

/* Override any overlay that might block clicks */
.gallery-item > div {
    pointer-events: auto !important;
}

/* Ensure hover overlay doesn't block clicks */
.gallery-item .group-hover\:opacity-100 {
    pointer-events: none !important;
}

/* Debug: Add visual feedback on hover */
.gallery-item:hover {
    outline: 2px solid #ffcb30;
    outline-offset: -2px;
}
