/*
 * LRV Transfer Direct Checkout - Estilos
 * Botão estilizado para combinar com o "Adicionar ao Carrinho" do wte-transfer
 */

/* Container dos botões de ação do transfer */
.lrv-transfer-buttons-wrap {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    align-items: stretch !important;
    width: 100% !important;
}

/* Botão Ir Direto ao Checkout — mesma aparência do .add-to-cart-btn */
.lrv-transfer-direct-checkout-btn {
    background: linear-gradient(135deg, #0d7f3f 0%, #0a5c2e 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(13, 127, 63, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    line-height: 1.4 !important;
    font-family: inherit !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
}

.lrv-transfer-direct-checkout-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(13, 127, 63, 0.5) !important;
    background: linear-gradient(135deg, #0a5c2e 0%, #0d7f3f 100%) !important;
}

.lrv-transfer-direct-checkout-btn:active {
    transform: translateY(0) !important;
}

.lrv-transfer-direct-checkout-btn:disabled {
    background: #90a4ae !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.7 !important;
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
    .lrv-transfer-buttons-wrap {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .lrv-transfer-direct-checkout-btn {
        width: 100% !important;
        padding: 16px 24px !important;
        font-size: 16px !important;
        white-space: normal !important;
        min-height: 56px !important;
        line-height: 1.4 !important;
        border-radius: 8px !important;
    }

    /* Também ajusta o botão original no mobile quando dentro do wrapper */
    .lrv-transfer-buttons-wrap .add-to-cart-btn,
    .lrv-transfer-buttons-wrap .add-package-btn {
        width: 100% !important;
        border-radius: 8px !important;
    }
}
