.wishlist-gallery {
    width: 200px;
    max-width: 45% !important;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.wishlist-gallery-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.wishlist-gallery-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    will-change: transform;
}

.wishlist-gallery-slide.active {
    transform: translateX(0);
    z-index: 2;
}

.wishlist-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.wishlist-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgb(169 176 187 / 90%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wishlist-gallery-nav.prev {
    left: 5px;
    right: auto;
}

.wishlist-gallery-nav.next {
    right: 5px;
    left: auto;
}

/* Updated arrow directions for correct display in English (LTR) */
.wishlist-gallery-nav.prev:after {
    content: '❮';
    display: block;
}

.wishlist-gallery-nav.next:after {
    content: '❯';
    display: block;
}

.wishlist-gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 4px;
    z-index: 3;
}

.wishlist-gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6A90A5;
    cursor: pointer;
    transition: all 0.8s ease;
}

.wishlist-gallery-dot.active {
    background: #a8bdca;
    transform: scale(1.4);
}

.wishlist-gallery-dot.disabled {
    opacity: 0.8;
    cursor: not-allowed;
}