/**
 * io Comunico - Pulsante Prezzo Ingrosso
 * @author io Comunico Web Agency
 */

/* ---- Pulsante accanto al carrello ---- */
.col-iocw {
    display: flex;
    align-items: stretch;
}
.iocw-wholesale-btn {
    background-color: #2fb457;
    border: 1px solid #2fb457;
    color: #fff;
    font-weight: 600;
    line-height: 1.05;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
}
.iocw-wholesale-btn:hover,
.iocw-wholesale-btn:focus {
    filter: brightness(0.92);
    color: #fff;
}
.iocw-wholesale-btn[disabled] {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none;
}
.iocw-wholesale-btn .fa {
    opacity: .9;
}
.iocw-wholesale-btn .iocw-label {
    display: inline-flex;
    align-items: baseline;
    gap: .3rem;
}
.iocw-wholesale-btn .iocw-q {
    font-size: 1.05em;
    opacity: .95;
}
.iocw-wholesale-btn .iocw-p {
    font-size: 1.45em;
    font-weight: 800;
    letter-spacing: .2px;
}
@media (max-width: 575px) {
    .col-iocw { margin-top: .5rem; }
    .iocw-wholesale-btn { width: 100%; }
}

/* ---- Blocco prezzo ingrosso sotto al prezzo ---- */
.iocw-underprice {
    margin: .1rem 0 .4rem;
    line-height: 1.2;
}
.iocw-up-price {
    font-size: 2.05rem;
    font-weight: 800;
    color: #2fb457;
}
/* Le due frasi "se ne acquisti fino a / almeno" IDENTICHE (font, grandezza, colore) */
.iocw-up-text,
.iocw-uptobuy {
    font-family: inherit;
    font-size: .95rem;
    font-weight: 400;
    color: #666;
    letter-spacing: normal;
    text-transform: none;
    margin-left: .4rem;
}
.iocw-uptobuy {
    white-space: nowrap;
}

/* ---- Tabella sconti quantita': piu' stretta su desktop ---- */
.table-product-discounts {
    width: 50%;
    min-width: 340px;
    max-width: 100%;
}
@media (max-width: 767px) {
    .table-product-discounts {
        width: 100%;
        min-width: 0;
    }
}

/* ---- Messaggio rate Stripe/Klarna: staccato dai bottoni + look a pillola ---- */
#payment-method-messaging-element {
    display: inline-block;
    max-width: 100%;
    margin: .9rem 0 1.1rem;
    padding: .45rem .8rem;
    background: #f6f7f9;
    border: 1px solid #e7e9ec;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}
