/**
 * iBattery Core
 * Buy Now Module
 */

/* Container dos botões */
.ibattery-actions{
    margin-top:15px;
}

/* Botão padrão do WooCommerce */
.ibattery-actions .single_add_to_cart_button{

    width:100%;
    min-height:60px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:12px;

    border-radius:999px !important;

    font-size:18px;
    font-weight:700;

}

/* Botão Comprar Agora */
.ibattery-buy-now{

    width:100%;
    min-height:60px;

    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;

    margin-top:12px;

    background:#ff7a00 !important;
    border:1px solid #ff7a00 !important;

    color:#ffffff !important;

    border-radius:999px !important;

    text-decoration:none;

    transition:all .25s ease;

}

/* Grupo Ícone + Texto */
.ibattery-label{

    display:flex !important;

    flex-direction:row !important;

    align-items:center !important;

    justify-content:center !important;

    gap:10px !important;

}

.ibattery-icon{

    width:18px !important;
    height:18px !important;

    display:block !important;

    margin:0 !important;

    padding:0 !important;

    flex:0 0 18px !important;

}

/* Hover */
.ibattery-buy-now:hover{

    background:#e66c00 !important;
    border-color:#e66c00 !important;
    color:#ffffff !important;

    transform:translateY(-2px);

    box-shadow:0 8px 18px rgba(255,122,0,.25);

}
.ibattery-buy-now.loading{

    opacity:.7;

    cursor:not-allowed;

    pointer-events:none;

}