.curated-marquee-wrapper-c29b8031 {
    overflow: hidden;
    width: 100%;
    --marquee-speed: 30s;
}
.curated-heading-c29b8031 {
    text-align: center;
    margin-bottom: 2rem;
}
.curated-marquee-container-c29b8031 {
    display: flex;
    overflow: hidden;
}
.curated-marquee-track-c29b8031 {
    display: flex;
    gap: 20px;
    animation: marquee-scroll-c29b8031 var(--marquee-speed) linear infinite;
    padding: 20px 0;
}
.curated-marquee-track-c29b8031:hover {
    animation-play-state: paused;
}
@keyframes marquee-scroll-c29b8031 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.curated-card-c29b8031 {
    position: relative;
    width: 300px;
    height: 533px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    background: #000;
}
.curated-card-c29b8031:hover {
    transform: scale(1.03);
}

.curated-media-wrapper-c29b8031 {
    position: relative;
    width: 100%;
    height: 100%;
}

.curated-poster-c29b8031 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.5s ease;
}

.curated-poster-c29b8031.video-ready {
    opacity: 0;
    pointer-events: none;
}

.curated-video-c29b8031 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.curated-info-c29b8031 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(18px);
    border-radius: 16px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}
.curated-thumb-c29b8031 {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}
.curated-text-c29b8031 {
    flex: 1;
}
.curated-title-c29b8031 {
    margin: 0 0 5px;
    font-size: 14px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.curated-price-c29b8031 {
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
@media (max-width: 1024px) {
    .curated-card-c29b8031 { width: 250px; height: 444px; }
}
@media (max-width: 767px) {
    .curated-card-c29b8031 { width: 200px; height: 355px; }
}