/* Checkout - Estilos */

.card {
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.card-header {
    background: white;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    padding: 1rem 1.25rem;
}

.resumen-pedido .card-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.nav-tabs {
    border-bottom: 2px solid #eee;
}

.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
}

.nav-tabs .nav-link.active {
    color: var(--color-primario);
    border-bottom: 2px solid var(--color-primario);
    margin-bottom: -2px;
}

.metodo-pago .form-check {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.metodo-pago .form-check:hover {
    background: #f0f0f0;
}

.metodo-pago .form-check-input:checked+.form-check-label {
    font-weight: 600;
}

/* Resumen items */
.resumen-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.resumen-item:last-child {
    border-bottom: none;
}

.resumen-item-nombre {
    flex: 1;
    font-size: 0.9rem;
}

.resumen-item-cantidad {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0 0.5rem;
}

.resumen-item-precio {
    font-weight: 600;
    white-space: nowrap;
}

/* Botón confirmar */
.btn-tienda.btn-lg {
    padding: 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 991px) {
    .resumen-pedido {
        margin-top: 1.5rem;
    }
}