/* Estilización del contenedor */
.pbv-calculator {
    max-width: 450px;
    margin: 30px auto;
    padding: 35px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Estilos para los labels */
.pbv-calculator label {
    font-size: 2rem; /* Tamaño grande para destacar */
    font-weight: 700;
    color: #222;
    text-align: center;
    display: block;
    margin-bottom: 15px;
}

/* Input del número de unidades */
.pbv-calculator input[type="number"] {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.pbv-calculator input[type="number"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

/* Estilización de los valores de precio y total */
.pbv-price,
.pbv-total {
    font-size: 22px;
    font-weight: 600;
    display: block;
    margin-bottom: 0;
    color: #222;
}

/* Total tiene estilo más destacado */
.pbv-total {
    font-size: 26px;
    font-weight: 700;
    color: #007bff;
}

/* Descripción de los campos centrada */
#pbv-price-label, #pbv-total-label {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    text-align: center;
    margin-bottom: 0;
    display: block;
}

/* Descripción oculta */
.pbv-hidden-description {
    font-size: 16px;
    color: #777;
    margin-bottom: 12px;
}

/* Estilo del botón "Contact Us" */
.pbv-contact-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff!important;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.pbv-contact-button:hover {
    background-color: #0056b3;
}

/* Nota informativa */
.pbv-total-note {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
}

/* Mensaje de error */
.pbv-error {
    font-size: 14px;
    color: red;
}
