.image-lightbox-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.image-lightbox-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.image-lightbox-wrapper.has-zoom-effect:hover img {
    transform: scale(1.05);
}

.lightbox-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
}

.lightbox-icon.always-visible {
    opacity: 1;
}

.image-lightbox-wrapper:hover .lightbox-icon {
    opacity: 1;
}

.lightbox-icon.icon-position-top-left {
    top: 20px;
    left: 20px;
}

.lightbox-icon.icon-position-top-right {
    top: 20px;
    right: 20px;
}

.lightbox-icon.icon-position-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-icon.icon-position-bottom-left {
    bottom: 20px;
    left: 20px;
}

.lightbox-icon.icon-position-bottom-right {
    bottom: 20px;
    right: 20px;
}

.lightbox-icon:hover {
    transform: scale(1.1);
}

.lightbox-icon.icon-position-center:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.lightbox-icon i,
.lightbox-icon svg {
    transition: all 0.3s ease;
}