.wvps-box {
    font-family: "Varela Round", sans-serif;
    max-width: 480px;
    padding: 26px;
    background: #ffffff;
    border: 2px solid rgba(28, 36, 75, 0.12);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(28, 36, 75, 0.10);
}

.wvps-box label {
    display: block;
    margin: 0 0 8px;
    color: #1C244B;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.wvps-box select.wvps-attribute {
    width: 100%;
    margin: 0 0 18px;
    padding: 14px 44px 14px 16px;
    font-family: "Varela Round", sans-serif;
    font-size: 16px;
    color: #1C244B;
    background-color: #ffffff;
    border: 2px solid rgba(28, 36, 75, 0.22);
    border-radius: 12px;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #1C244B 50%),
        linear-gradient(135deg, #1C244B 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.wvps-box select.wvps-attribute:hover {
    border-color: rgba(28, 36, 75, 0.45);
}

.wvps-box select.wvps-attribute:focus {
    border-color: #1C244B;
    box-shadow: 0 0 0 4px rgba(28, 36, 75, 0.12);
}

.wvps-price {
    margin-top: 10px;
    padding: 20px;
    background: #8cb600;
    color: #ffffff;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(28, 36, 75, 0.22);
}

.wvps-price::before {
    content: "Total Price (Inc. Delivery and Prescription)";
    display: block;
    margin-bottom: 8px;
    font-family: "Varela Round", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.5px;
}

.wvps-price strong,
.wvps-price-output,
.wvps-price-output .woocommerce-Price-amount {
    font-family: "Varela Round", sans-serif;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.wvps-price-output .woocommerce-Price-currencySymbol {
    color: #ffffff;
}

@media (max-width: 600px) {
    .wvps-box {
        padding: 20px;
        border-radius: 14px;
    }

    .wvps-price strong,
    .wvps-price-output,
    .wvps-price-output .woocommerce-Price-amount {
        font-size: 26px;
    }
}