.sp6-swiper {
    overflow: visible !important;
    padding-top: 10px !important;
    padding-bottom: 60px !important;
    height: auto !important;
}

.sp6-swiper .swiper-slide {
    width: 260px;
    /* Default for mobile */
    opacity: 0.65;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(0);
}

@media (min-width: 768px) {
    .sp6-swiper .swiper-slide {
        width: 240px;
    }
}

@media (min-width: 1024px) {
    .sp6-swiper .swiper-slide {
        width: 252px;
    }
}

.sp6-swiper .swiper-slide-active {
    opacity: 1;
    transform: translateY(40px);
}

.sp6-media-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 290px;
    transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    background: #e5e7eb;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .sp6-media-wrap {
        height: 320px;
    }
}

@media (min-width: 1024px) {
    .sp6-media-wrap {
        height: 360px;
    }
}

@media (min-width: 1280px) {
    .sp6-media-wrap {
        height: 390px;
    }
}

.sp6-thumb,
.sp6-vid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.sp6-vid {
    display: none;
}

.sp6-media-wrap.is-playing .sp6-thumb {
    display: none;
}

.sp6-media-wrap.is-playing .sp6-vid {
    display: block;
}

.sp6-media-wrap:hover .sp6-thumb {
    transform: scale(1.04);
}

.sp6-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #C53771;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
    z-index: 5;
}

.sp6-media-wrap:hover .sp6-play {
    background: #C53771;
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.swiper-slide-active .sp6-play {
    width: 48px;
    height: 48px;
}

.sp6-product-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.09);
    padding: 12px;
    margin-top: 12px;
    transition: all 0.4s ease;
}

.sp6-product-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin: 4px 0;
}

.sp6-product-price {
    font-size: 16px;
    font-weight: 900;
    color: #C53771;
}

.sp6-buy-btn {
    display: block;
    width: 100%;
    padding: 8px 0;
    border-radius: 9999px;
    background: #F9A8C9;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sp6-buy-btn:hover {
    background: #C53771;
}

.sp6-product-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.swiper-slide-active .sp6-buy-btn:hover {
    background: #C53771;
    color: #fff;
    border-color: #C53771;
}