/* ========================================
   CHECKOUT E PEDIDOS - Orders App
   ======================================== */

/* ========================================
   FORMULÁRIOS DE CHECKOUT
   ======================================== */
.form-check:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}

.form-check.border-primary {
    background-color: #e7f1ff;
}

.sticky-top {
    position: sticky;
}

/* Destaque ao selecionar forma de pagamento */
input[name="payment_method"]:checked + label .border {
    border-color: #0d6efd !important;
    border-width: 2px !important;
}

input[name="payment_method"]:checked + label {
    background-color: #e7f1ff;
}

/* ========================================
   TABELAS DE PEDIDOS
   ======================================== */
.table td, .table th {
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}

.table-responsive {
    border-radius: 0.375rem;
}

/* ========================================
   DETALHES DO PEDIDO
   ======================================== */
address {
    line-height: 1.8;
}

/* Timeline de Rastreamento */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #dee2e6;
}

.timeline-item {
    position: relative;
    margin-bottom: 1rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -23px;
    top: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0d6efd;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #dee2e6;
}

.timeline-item.active::before {
    background: #198754;
    box-shadow: 0 0 0 2px #198754;
}

/* ========================================
   BADGES DE STATUS
   ======================================== */
.badge {
    font-size: 0.85rem;
    padding: 0.35em 0.65em;
}

/* ========================================
   STEPPER / INDICADOR DE PROGRESSO
   ======================================== */
.stepper-badge {
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 50%;
}

/* ========================================
   OPÇÕES DE FRETE NO CHECKOUT
   ======================================== */
.shipping-option-item-checkout {
    transition: all 0.2s ease;
}

.shipping-option-item-checkout:hover {
    background-color: #f8f9fa !important;
    border-color: #0d6efd !important;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.shipping-option-item-checkout.border-primary {
    border-width: 2px !important;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.2);
    background-color: #e7f1ff !important;
}

/* ========================================
   OPÇÕES DE PAGAMENTO NA REVISÃO
   ======================================== */
.payment-option {
    transition: all 0.2s ease;
    cursor: pointer;
}

.payment-option:hover {
    background-color: #f8f9fa !important;
    border-color: #0d6efd !important;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-option.border-primary {
    border-width: 2px !important;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.2);
    background-color: #e7f1ff !important;
}