.image-hover-wrapper {
    position: relative;
    display: inline-block;
    max-width: 180px;
}

.image-hover-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-hover-wrapper:hover img {
    transform: scale(1.1);
    filter: brightness(0.85);
}

.hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 8px;
}

.image-hover-wrapper:hover .hover-overlay {
    opacity: 1;
}

.hover-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

.carousel-image {
    max-height: 75vh;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

img {
    -webkit-user-drag: none;

    /* Disable drag */
    user-select: none;

    /* Prevent selection */
    -webkit-touch-callout: none;

    /* iOS */
    pointer-events: none;

    /* Optional - disables right-click on images */
}

/* Disable right-click context menu on images */
img {
    pointer-events: auto;
}

img::-moz-selection {
    background: transparent;
}

img::selection {
    background: transparent;
}
