.pvs-home-section{
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.pvs-home-swiper{
    width: 100%;
    overflow: visible;
    padding: 18px 40px 24px;
    box-sizing: border-box;
}

.pvs-home-slide{
    width: 220px;
    transition: transform .35s ease, opacity .35s ease;
    transform: scale(.90);
    opacity: .58;
    will-change: transform;
}

.pvs-home-slide.swiper-slide-active{
    transform: scale(1);
    opacity: 1;
    z-index: 5;
}

.pvs-home-slide.swiper-slide-prev,
.pvs-home-slide.swiper-slide-next{
    transform: scale(.94);
    opacity: .82;
    z-index: 4;
}

.pvs-home-video-wrap{
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
}

.pvs-home-video{
    width: 100%;
    aspect-ratio: 9 / 16;
    display: block;
    object-fit: cover;
    background: #000;
}

.pvs-home-mute-btn{
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: #005f63;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0,0,0,.14);
}

.pvs-home-mute-btn.is-unmuted{
    background: #111;
}

.pvs-home-product-card{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 12px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 10px;
    text-decoration: none;
    color: #111;
    min-height: 74px;
    box-sizing: border-box;
}

.pvs-home-product-thumb{
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.pvs-home-product-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.pvs-home-product-info{
    flex: 1;
    min-width: 0;
}

.pvs-home-product-title{
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pvs-home-product-price{
    margin-top: 6px;
    font-size: 13px;
    color: #111;
    font-weight: 600;
}

.pvs-home-product-arrow{
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pvs-home-section .swiper-button-prev,
.pvs-home-section .swiper-button-next{
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #fff;
    color: #777;
    border: 1px solid rgba(0,0,0,.14);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    top: 42%;
    z-index: 10;
}

.pvs-home-section .swiper-button-prev{
    left: 8px;
}

.pvs-home-section .swiper-button-next{
    right: 8px;
}

.pvs-home-section .swiper-button-prev::after,
.pvs-home-section .swiper-button-next::after{
    font-size: 16px;
    font-weight: 700;
}

@media (min-width: 1600px){
    .pvs-home-slide{
        width: 230px;
    }
}

@media (max-width: 1366px){
    .pvs-home-swiper{
        padding: 16px 34px 22px;
    }

    .pvs-home-slide{
        width: 205px;
    }
}

@media (max-width: 1024px){
    .pvs-home-swiper{
        padding: 14px 26px 20px;
    }

    .pvs-home-slide{
        width: 185px;
    }

    .pvs-home-section .swiper-button-prev,
    .pvs-home-section .swiper-button-next{
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 767px){
    .pvs-home-swiper{
        padding: 10px 14px 18px;
    }

    .pvs-home-slide{
        width: 165px;
        transform: scale(.94);
        opacity: .74;
    }

    .pvs-home-slide.swiper-slide-active{
        transform: scale(1);
        opacity: 1;
    }

    .pvs-home-product-card{
        min-height: 62px;
        padding: 8px 10px;
        margin-top: 10px;
    }

    .pvs-home-product-thumb{
        width: 34px;
        height: 34px;
    }

    .pvs-home-product-title{
        font-size: 12px;
    }

    .pvs-home-product-price{
        font-size: 11px;
    }

    .pvs-home-mute-btn{
        width: 34px;
        height: 34px;
        right: 10px;
        bottom: 10px;
    }

    .pvs-home-section .swiper-button-prev,
    .pvs-home-section .swiper-button-next{
        width: 40px;
        height: 40px;
        top: 40%;
    }
}