.wcpvc-wrapper {
    margin-top: 25px;
}

.wcpvc-card {
    position: relative;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    background: #fff;
    cursor: pointer;
    transition: all .3s ease;
}

.wcpvc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.wcpvc-card.active {
    border-color: #d08a47;
    background: #fffaf5;
}

.wcpvc-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #d08a47;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 10px;
}

.wcpvc-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wcpvc-radio {
    width: 24px;
}

.wcpvc-radio-circle {
    width: 18px;
    height: 18px;
    border: 2px solid #d08a47;
    border-radius: 50%;
    display: block;
    position: relative;
}

.wcpvc-card.active .wcpvc-radio-circle::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #d08a47;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
}

.wcpvc-image img {
    width: 70px;
    height: auto;
}

.wcpvc-content {
    flex: 1;
}

.wcpvc-title {
    font-size: 26px;
    margin: 0;
    font-weight: 700;
}

.wcpvc-description {
    margin-top: 6px;
    color: #666;
    font-size: 15px;
}

.wcpvc-saving {
    margin-top: 10px;
    color: #2f8f4e;
    font-weight: 700;
}

.wcpvc-gift {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f7f7f7;
    padding: 10px;
    border-radius: 10px;
}

.wcpvc-gift-image img {
    width: 45px;
    height: auto;
}

.wcpvc-gift-name {
    font-size: 14px;
    font-weight: 600;
}

.wcpvc-price {
    font-size: 28px;
    font-weight: 700;
    white-space: nowrap;
}

.wcpvc-price del {
    display: block;
    font-size: 16px;
    opacity: .5;
}

@media(max-width:768px){

    .wcpvc-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .wcpvc-price {
        font-size: 24px;
    }

    .wcpvc-title {
        font-size: 22px;
    }
}