/* =============================================================================
   Food Delicious CRM - Estilos base (mobile-first)
   ============================================================================= */

:root {
  --fd-primary: #0d6efd;
  --fd-primary-dark: #0a58ca;
  --fd-success: #198754;
  --fd-warning: #fd7e14;
  --fd-danger:  #dc3545;
  --fd-bg-soft: #f5f7fa;
  --fd-text:    #1f2d3d;
  --fd-radius:  14px;
  --fd-shadow:  0 8px 24px rgba(0, 0, 0, .08);
}

html, body {
  font-size: 16px;
  color: var(--fd-text);
  background: var(--fd-bg-soft);
  -webkit-tap-highlight-color: transparent;
}

/* Tipografia mas grande en pantallas operativas */
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                    "Helvetica Neue", Arial, sans-serif; }

/* =============================================================================
   LOGIN
   ============================================================================= */
.bg-login {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.login-wrap {
  width: 100%;
  max-width: 420px;
}

.login-card {
  background: #fff;
  border-radius: var(--fd-radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--fd-shadow);
}

@media (min-width: 480px) {
  .login-card { padding: 2.5rem 2rem; }
}

.login-logo {
  width: 76px;
  height: 76px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--fd-primary), #6610f2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.25rem;
  box-shadow: 0 6px 16px rgba(13, 110, 253, .35);
}

/* Inputs grandes y comodos en movil */
.form-control-lg, .input-group-lg .form-control,
.input-group-lg .input-group-text, .input-group-lg .btn {
  font-size: 1.05rem;
  min-height: 52px;
}

.btn-lg {
  font-size: 1.1rem;
  min-height: 52px;
  font-weight: 600;
}

/* =============================================================================
   PANTALLA OPERATIVA (cocina) - botones gigantes (preview Fase 2)
   ============================================================================= */
.btn-cocina {
  min-height: 110px;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: var(--fd-radius);
}

.btn-cocina i { font-size: 2rem; display: block; margin-bottom: .25rem; }

/* =============================================================================
   UTIL
   ============================================================================= */
.text-balance { text-wrap: balance; }

/* Badge para conteo de notificaciones */
.badge-notif {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--fd-danger);
  color: #fff;
  border-radius: 999px;
  min-width: 20px;
  height: 20px;
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
