/* ═══════════════════════════════════════════════════════
   BistroPro — Mi Cuenta (cliente) CSS — mobile-first
════════════════════════════════════════════════════════ */

.bp-cliente-auth {
    padding: 3rem 0;
}
@media (min-width: 640px) {
    .bp-cliente-auth { padding: 4.5rem 0; }
}
.bp-cliente-auth .bp-section-title { margin-bottom: .5rem; }

.bp-cliente-dashboard {
    background: var(--bp-gray-50);
    padding: 2rem 0 3rem;
}
@media (min-width: 640px) {
    .bp-cliente-dashboard { padding: 2.5rem 0 4rem; }
}

.bp-cliente-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
    .bp-cliente-header { flex-direction: row; align-items: center; justify-content: space-between; }
}

.bp-cliente-plan-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 480px) {
    .bp-cliente-plan-row { flex-direction: row; align-items: center; justify-content: space-between; }
    .bp-cliente-plan-row > div:last-child { text-align: right; }
}

.bp-cliente-otros-planes {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.bp-cliente-otro-plan {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    padding: 1rem;
    border: 1px solid var(--bp-gray-200);
    border-radius: var(--radius-sm);
}
@media (min-width: 480px) {
    .bp-cliente-otro-plan { flex-direction: row; align-items: center; justify-content: space-between; }
}
.bp-cliente-otro-plan button { white-space: nowrap; }

.bp-cliente-danger { border-color: #fecaca; }

.btn-bp-ghost.danger {
    border-color: var(--bp-red);
    color: var(--bp-red);
}
.btn-bp-ghost.danger:hover {
    background: #fef2f2;
}
