/* Infinite Marquee Layout */
.marquee-wrapper-8397e9a2 {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 30px 0;
}

.marquee-container-8397e9a2 {
    display: flex;
    width: max-content;
}

.marquee-content-8397e9a2 {
    display: flex;
    animation: marqueeScroll_8397e9a2 40s linear infinite;
    gap: 24px;
    padding-right: 24px;
}

.marquee-wrapper-8397e9a2:hover .marquee-content-8397e9a2 {
    animation-play-state: paused;
}

@keyframes marqueeScroll_8397e9a2 {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Premium Product Card */
.product-card-8397e9a2 {
    position: relative;
    width: 320px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    cursor: pointer;
    background-color: #f5f5f5;
    flex-shrink: 0;
    text-decoration: none;
    display: block;
}

.product-card-8397e9a2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-card-bg-8397e9a2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card-8397e9a2:hover .product-card-bg-8397e9a2 {
    transform: scale(1.08);
}

.product-card-overlay-8397e9a2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.product-card-content-8397e9a2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.product-card-title-8397e9a2 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.product-card-arrow-8397e9a2 {
    color: #ffffff;
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card-8397e9a2:hover .product-card-arrow-8397e9a2 {
    transform: translateX(6px);
}

/* Responsiveness */
@media (max-width: 768px) {
    .product-card-8397e9a2 {
        width: 260px;
        height: 340px;
    }
    .product-card-title-8397e9a2 {
        font-size: 0.95rem;
    }
}
