.wpm-container-a2e77a27 {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.wpm-container-a2e77a27 .marquee-content {
    display: flex;
    animation: marquee-scroll-a2e77a27 20s linear infinite;
    gap: 20px;
}

.wpm-container-a2e77a27:hover .marquee-content {
    animation-play-state: paused;
}

.wpm-container-a2e77a27 .marquee-item {
    flex-shrink: 0;
    width: 250px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.wpm-container-a2e77a27 .marquee-image {
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    position: relative;
}

.wpm-container-a2e77a27 .marquee-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 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;
    padding: 20px;
    text-align: center;
}

.wpm-container-a2e77a27 .marquee-item:hover .marquee-overlay {
    opacity: 1;
}

.marquee-title {
    color: #fff;
    margin-bottom: 5px;
    font-size: 16px;
}

.marquee-price {
    margin-bottom: 15px;
    font-size: 14px;
}

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

@keyframes marquee-scroll-a2e77a27 {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}

.editor-preview .marquee-content {
    animation: none;
}
