.pvcs-wrapper {
    display: flex;
    gap: 30px;
}

.pvcs-image img {
    width: 420px;
    border-radius: 22px!important;
    height: 100%;
    object-fit: cover;
}

.pvcs-colors {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pvcs-color {
    width: 20px;
    height: 60px;
    border-radius: 6px;
    cursor: pointer;
    opacity: .5;
}

.pvcs-color.active {
    opacity: 1;
    transform: scale(1.1);
}

.pvcs-products {
    width:500px;
}

.pvcs-item {
   display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 8px #00000017;
    padding: 20px;
    justify-content: space-between;
}
.pvcs-item img {
    background: #f3efec;
    border-radius: 22px!important;
    width: 100px;
    height: 100px !important;
    object-fit: cover;
    max-width: 100px !important;
}
.pvcs-content {
    display: flex;
    justify-content: space-between;
    width: 400px;
    align-items: center;
}
.pvcs-info h4 {
    font-size: 16px;
    font-weight: 500;
}
/* 整体遮罩 */
.pv-quickview-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}

/* 半透明背景 */
.pv-qv-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.pv-qv-content {
    position: relative;
    width: 500px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 20px;
    overflow-y: auto;
    border-radius: 12px;
}

.pv-quickview-modal.active {
    pointer-events: auto;
}

.pv-quickview-modal.active .pv-qv-overlay {
    opacity: 1;
}

.pv-quickview-modal.active .pv-qv-content {
    transform: translateX(0); 
}

.pv-quickview-modal.closing .pv-qv-content {
    transform: translateX(100%);
}

.pv-quickview-modal.closing .pv-qv-overlay {
    opacity: 0;
}


.pv-qv-close {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1);
    width: 34px;
    height: 34px;
    border-radius: 25PX;
    TEXT-ALIGN: center;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;

}
.pv-qv-inner {
    display: flex;
    gap: 20px;
    flex-flow: column;
    margin-top: 25px;
}


.pv-qv-main img {
    width: 100%;
}

.pv-qv-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.pv-qv-thumbs img {
    width: 60px;
    cursor: pointer;
    opacity: .6;
}

.pv-qv-thumbs img.active {
    opacity: 1;
    border: 2px solid #000;
}
.pv-qv-info h2 {
    font-size:20px;
}
.pvcs-info h4 {
    font-size: 14px;
}
.qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    background: #eee;
    border-radius: 40px;
    width: 160px;
    position: relative;
}
.qty button {
    width: 35px;
    cursor: pointer;
    background: transparent;
    font-size: 30px;
    position: absolute;
}
.qty button.minus {
    left: 5px;
}
.qty button.plus {
    right: 5px;
}
.qty input[type="number"] {
    border: 0;
    text-align: center;
}
.pv-quick-view{
    font-size: 12px;
    background: #000;
    color: #fff;
    padding: 7px 0;
    border-radius: 30px;
    width: 120px;
    cursor: pointer;
}
button.pv-qv-add, .added_to_cart {
    background: #000;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
}
.added_to_cart {
    margin-left: 10px;
}
body.pv-qv-open {
    overflow: hidden;
}

@media(max-width:767px) {
    .pvcs-wrapper,.pvcs-content {
        flex-direction: column;
    }
    .pvcs-colors {
        flex-direction: row;
        justify-content: space-between;
    }
    .pvcs-color {
        width: 100px;
        height: 20px;
        }
    .pvcs-products {
        width: 330px;
    }
    .pvcs-content {
        width: 100%;
        
    }
}