.fridolin-wpc-controls {
    margin-top: 15px;
    width: 100%;
}

/* CONTROLES DE CANTIDAD */

.fridolin-wpc-quantity {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.fridolin-wpc-quantity button,
.fridolin-wpc-qty {
    height: 38px;
    box-sizing: border-box;
}

/* Botones - y + */

.fridolin-wpc-quantity button {
    width: 25%;
    padding: 0;
    border: 1px solid #ddd;
    background: #fff;
    color: #9d1830;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

/* Botón - */

.fridolin-wpc-minus {
    border-radius: 90px 0 0 90px;
}

/* Botón + */

.fridolin-wpc-plus {
    border-radius: 0 90px 90px 0;
}

/* Campo de cantidad */

.fridolin-wpc-qty {
    width: 50%;
    padding: 0 5px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: 0;
    border-right: 0;
    background: #fff;
    color: #9d1830;
    text-align: center;
    font-size: 16px;
}

/* Quitar flechas del input number */

.fridolin-wpc-qty::-webkit-outer-spin-button,
.fridolin-wpc-qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.fridolin-wpc-qty {
    -moz-appearance: textfield;
}


/* BOTÓN AÑADIR AL CARRITO */

.fridolin-wpc-add {
    display: block;
    width: 100%;
    min-height: 42px;
    padding: 10px 5px;
    border: 0;
    border-radius: 90px;

    background: #9d1830;
    color: #fbf2ee;

    font-family: "Apollo", sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;

    cursor: pointer;
    transition: opacity 0.2s ease;
}

.fridolin-wpc-add:hover {
    opacity: 0.85;
}

.fridolin-wpc-add.loading,
.fridolin-wpc-add:disabled {
    opacity: 0.6;
    cursor: wait;
}

/* BOTÓN VER OPCIONES - PRODUCTOS VARIABLES */

.fridolin-wpc-options {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 10px 5px;
    box-sizing: border-box;

    border: 0;
    border-radius: 90px;

    background: #9d1830;
    color: #fbf2ee !important;

    font-family: "Apollo", sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;

    cursor: pointer;
    transition: opacity 0.2s ease;
}

.fridolin-wpc-options:hover {
    opacity: 0.85;
    color: #fbf2ee !important;
}