.wm-wrapper-a8b5a1f0 {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.wm-track-a8b5a1f0 {
    display: flex;
    width: max-content;
    animation: wm-marquee-a8b5a1f0 linear infinite;
}

.wm-track-a8b5a1f0.dir-right {
    animation-direction: reverse;
}

.wm-track-a8b5a1f0.pause-hover:hover {
    animation-play-state: paused;
}

@keyframes wm-marquee-a8b5a1f0 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.wm-item-a8b5a1f0 {
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.wm-image-a8b5a1f0 img {
    width: 100%;
    height: auto;
    display: block;
}

.wm-overlay-a8b5a1f0 {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 20px;
}

.wm-item-a8b5a1f0:hover .wm-overlay-a8b5a1f0 {
    opacity: 1;
}

.wm-title-a8b5a1f0 {
    margin: 0 0 10px;
    font-size: 18px;
    color: inherit;
}

.wm-price-a8b5a1f0 {
    margin-bottom: 15px;
    font-weight: bold;
}

.wm-btn-a8b5a1f0 {
    background: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.wm-btn-a8b5a1f0:hover {
    background: #eee;
}