.lh-d195f53a-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.lh-d195f53a-container {
    height: 80vh;
    overflow-y: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch; /* Crucial for iOS momentum scroll */
}
.lh-d195f53a-container::-webkit-scrollbar {
    display: none;
}

.lh-d195f53a-item {
    height: 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Horizontal Image Swipe */
.lh-d195f53a-images {
    flex: 1;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.lh-d195f53a-images::-webkit-scrollbar {
    display: none;
}

.lh-d195f53a-img-wrap {
    min-width: 100%;
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
}

.lh-d195f53a-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* Info Overlay */
.lh-d195f53a-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    box-sizing: border-box;
    pointer-events: none; /* Let clicks pass through to image swiper if needed */
}

/* Re-enable pointer events for interactive elements */
.lh-d195f53a-add-to-cart {
    pointer-events: auto;
}

.lh-d195f53a-title {
    color: #fff;
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.lh-d195f53a-price {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #e0e0e0;
}
.lh-d195f53a-price ins { text-decoration: none; color: #fff; }
.lh-d195f53a-price del { opacity: 0.7; font-size: 0.9em; margin-right: 5px; }

.lh-d195f53a-add-to-cart {
    background: #eb9023; /* Orange based on primary color */
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    transition: background 0.3s;
    margin-bottom: 10px;
}
.lh-d195f53a-add-to-cart:hover {
    background: #d8801b; /* Darker orange for hover */
}
.lh-d195f53a-add-to-cart.added {
    background: #4caf50;
}

/* Animated Arrows */
.lh-d195f53a-arrow-up,
.lh-d195f53a-arrow-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s;
    pointer-events: auto;
}

.lh-d195f53a-arrow-up {
    top: 15px;
    animation: bounce-up 2s infinite;
}

.lh-d195f53a-arrow-down {
    bottom: 5px;
    animation: bounce-down 2s infinite;
}

@keyframes bounce-up {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

@keyframes bounce-down {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, 10px); }
    60% { transform: translate(-50%, 5px); }
}