/* ==========================================================================
   PoolPro - Estilos globais (mobile-first) - Tema Dark + Âmbar
   Inspirado no modelo de dashboard "RotaGestor" (Figma)
   ========================================================================== */

:root {
  /* Fundo e superfícies (dark) */
  --blue-900: #0a0e14;   /* fundo mais escuro da página */
  --blue-700: #12161f;   /* superfície secundária / header */
  --blue-600: #f5a623;   /* ACCENT primário (âmbar) - CTAs, links, nav ativo */
  --blue-500: #ffb84d;   /* ACCENT secundário (âmbar claro) - ícones, bordas destaque */
  --cyan-400: #ff8a3d;   /* ACCENT gradiente (laranja) - usado em gradientes com âmbar */
  --teal-100: rgba(245, 166, 35, 0.12); /* fundo suave âmbar (preview boxes) */
  --green-500: #22c55e;  /* sucesso */
  --yellow-500: #f5a623; /* alerta/âmbar */
  --red-500: #f0525c;    /* erro/pendência */
  --gray-900: #eef1f6;   /* texto principal (claro sobre fundo escuro) */
  --gray-700: #a8b0bd;   /* texto secundário */
  --gray-500: #7c8697;   /* texto terciário / muted */
  --gray-300: #262c38;   /* bordas / divisores (escuros) */
  --gray-100: #0a0e14;   /* fundo da página */
  --white: #151a24;      /* superfície de cards / header / sheets */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--gray-100);
  color: var(--gray-900);
  -webkit-tap-highlight-color: transparent;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
input, select, textarea { font-family: inherit; }

.app-shell {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--gray-100);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* ---------- Auth pages ---------- */
.auth-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: calc(32px + var(--safe-top)) 24px calc(32px + var(--safe-bottom));
  background: radial-gradient(circle at 20% 0%, #1b2130 0%, var(--blue-900) 55%);
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 22px;
  padding: 32px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #241300;
  font-size: 20px;
}

.brand h1 {
  font-size: 22px;
  margin: 0;
  color: var(--gray-900);
  font-weight: 800;
}

.auth-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
  margin: 4px 0 24px;
}

.tabs-switch {
  display: flex;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 20px;
}

.tabs-switch button {
  flex: 1;
  padding: 10px 0;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-500);
  cursor: pointer;
  transition: all .2s;
}

.tabs-switch button.active {
  background: var(--blue-600);
  color: #241300;
  box-shadow: var(--shadow-sm);
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 15px;
  outline: none;
  background: var(--gray-100);
  color: var(--gray-900);
  transition: border-color .15s;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--gray-500); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-600);
}

.field small.hint {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--gray-500);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform .1s, opacity .15s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  color: #241300;
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
}

.btn-secondary {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  color: var(--gray-900);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--blue-600);
  color: var(--blue-600);
}

.btn-danger {
  background: rgba(240, 82, 92, 0.15);
  border: 1px solid rgba(240, 82, 92, 0.4);
  color: var(--red-500);
}

.btn-success {
  background: linear-gradient(135deg, #22c55e, #4ecdc4);
  color: #06251a;
}

.btn-sm {
  width: auto;
  padding: 8px 14px;
  font-size: 13px;
}

.btn-block-group {
  display: flex;
  gap: 10px;
}

.error-msg {
  background: rgba(240, 82, 92, 0.12);
  border: 1px solid rgba(240, 82, 92, 0.35);
  color: var(--red-500);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  margin-bottom: 14px;
  display: none;
}

.error-msg.show { display: block; }

.auth-footer-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 18px;
}

/* ---------- App layout ---------- */
.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  color: var(--gray-900);
  padding: calc(14px + var(--safe-top)) 18px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.app-header .header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.app-header .header-logo {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #241300;
  font-size: 16px;
}

.app-header .greeting {
  font-size: 12px;
  color: var(--gray-500);
  margin: 0;
}

.app-header .page-title {
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
}

.plan-badge {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.plan-badge.free {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
}

.plan-badge.pro {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  color: #241300;
}

.main-content {
  flex: 1;
  padding: 16px 16px calc(90px + var(--safe-bottom));
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  display: flex;
  justify-content: space-around;
  padding: 8px 4px calc(8px + var(--safe-bottom));
  z-index: 30;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.35);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 10.5px;
  color: var(--gray-500);
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  background: none;
  flex: 1;
}

.nav-item i { font-size: 17px; }

.nav-item.active {
  color: var(--blue-600);
  background: var(--teal-100);
  border-color: rgba(245, 166, 35, 0.35);
}

/* ---------- Cards & lists ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}

.card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.stat-card .stat-label {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.stat-icon-box {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--teal-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.stat-card .stat-value {
  font-size: 21px;
  font-weight: 800;
  color: var(--gray-900);
}

.stat-card .stat-trend {
  font-size: 11px;
  font-weight: 700;
  margin-top: 6px;
  display: block;
}

.stat-trend.up { color: var(--green-500); }
.stat-trend.down { color: var(--red-500); }

.stat-card.accent-green .stat-value { color: var(--green-500); }
.stat-card.accent-red .stat-value { color: var(--red-500); }
.stat-card.accent-yellow .stat-value { color: var(--blue-600); }

.list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-300);
}

.list-item:last-child { border-bottom: none; }

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  color: #241300;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--teal-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.list-item-body { flex: 1; min-width: 0; }
.list-item-title { font-weight: 700; font-size: 14.5px; color: var(--gray-900); }
.list-item-sub { font-size: 12.5px; color: var(--gray-500); margin-top: 2px; }
.list-item-end { text-align: right; flex-shrink: 0; }

.badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.badge-green { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.badge-red { background: rgba(240, 82, 92, 0.15); color: #f87171; }
.badge-yellow { background: rgba(245, 166, 35, 0.18); color: #fbbf24; }
.badge-gray { background: var(--gray-100); border: 1px solid var(--gray-300); color: var(--gray-500); }
.badge-blue { background: rgba(245, 166, 35, 0.15); color: var(--blue-600); }

/* ---------- Barra de busca + botão de adicionar (inline, estilo referência) ---------- */
.search-add-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: 12px 14px;
  flex: 1;
  min-width: 0;
}

.search-bar input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  background: transparent;
  color: var(--gray-900);
  min-width: 0;
}

.search-bar input::placeholder { color: var(--gray-500); }
.search-bar i { color: var(--gray-500); }

.btn-square-add {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  color: #241300;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(245, 166, 35, 0.35);
}

/* Fallback: fab flutuante ainda suportado (não usado nas páginas principais) */
.fab {
  position: fixed;
  bottom: calc(78px + var(--safe-bottom));
  right: calc(50% - 240px + 20px);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  color: #241300;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: none;
  box-shadow: 0 10px 24px rgba(245, 166, 35, 0.45);
  z-index: 25;
  cursor: pointer;
}

@media (max-width: 480px) {
  .fab { right: 20px; }
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-500);
}

.empty-state i { font-size: 40px; margin-bottom: 12px; color: var(--gray-300); }
.empty-state p { font-size: 14px; margin: 0; }

/* ---------- Modal / Sheet ---------- */
.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 50;
  display: none;
  align-items: flex-end;
  justify-content: center;
}

.sheet-overlay.open { display: flex; }

.sheet {
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  width: 100%;
  max-width: 480px;
  border-radius: 22px 22px 0 0;
  max-height: 92vh;
  overflow-y: auto;
  padding: 20px 18px calc(24px + var(--safe-bottom));
  animation: slideUp .25s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.sheet-handle {
  width: 40px;
  height: 5px;
  background: var(--gray-300);
  border-radius: 999px;
  margin: 0 auto 14px;
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sheet-header h2 {
  font-size: 18px;
  margin: 0;
  color: var(--gray-900);
  font-weight: 800;
}

.sheet-close {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--gray-700);
  font-size: 16px;
  cursor: pointer;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 18px 0 8px;
}

.locked-banner {
  background: linear-gradient(135deg, rgba(245,166,35,0.14), rgba(255,138,61,0.10));
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  margin-bottom: 14px;
}

.locked-banner i { font-size: 28px; color: var(--blue-600); margin-bottom: 8px; }
.locked-banner h3 { margin: 0 0 4px; font-size: 15px; color: var(--gray-900); }
.locked-banner p { margin: 0 0 12px; font-size: 13px; color: var(--gray-700); }

.usage-bar-wrap {
  background: var(--gray-300);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
  margin-top: 6px;
}

.usage-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-400));
  border-radius: 999px;
  transition: width .3s;
}

.usage-bar.danger { background: linear-gradient(90deg, #f0525c, #ff8fa3); }

.product-item-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  margin-bottom: 8px;
}

.product-item-row select,
.product-item-row input {
  background: var(--white);
  color: var(--gray-900);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 8px 10px;
}

.product-item-row select { flex: 2; }
.product-item-row input { flex: 1; }

.remove-item-btn {
  background: rgba(240, 82, 92, 0.15);
  color: var(--red-500);
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  cursor: pointer;
}

.toast {
  position: fixed;
  bottom: calc(90px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--gray-900);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transition: all .25s;
  z-index: 100;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-error { background: rgba(240, 82, 92, 0.95); border-color: transparent; color: #fff; }
.toast-success { background: rgba(34, 197, 94, 0.95); border-color: transparent; color: #06251a; }

.tab-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow-x: auto;
}

.tab-pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.tab-pill.active {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  border-color: transparent;
  color: #241300;
}

.history-item {
  border-left: 3px solid var(--blue-600);
  padding: 4px 0 4px 14px;
  margin-bottom: 16px;
  position: relative;
}

.history-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-600);
}

.history-date { font-size: 12px; font-weight: 700; color: var(--blue-600); margin-bottom: 4px; }
.history-desc { font-size: 13.5px; color: var(--gray-900); margin-bottom: 6px; }
.history-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 6px; align-items: center; }
.history-meta span {
  font-size: 11.5px;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--gray-700);
  font-weight: 600;
}
.history-products { font-size: 12px; color: var(--gray-500); }

.progress-ring-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.plan-price {
  font-size: 34px;
  font-weight: 800;
  color: var(--gray-900);
}
.plan-price span { font-size: 14px; font-weight: 600; color: var(--gray-500); }

.feature-list { list-style: none; padding: 0; margin: 14px 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--gray-700);
  margin-bottom: 10px;
}
.feature-list li i { color: var(--green-500); margin-top: 2px; }

.loader {
  border: 3px solid var(--gray-300);
  border-top: 3px solid var(--blue-600);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 0.8s linear infinite;
  margin: 20px auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Grid de informações (estilo referência: label pequeno + valor) ---------- */
.info-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-300);
}

.info-grid-2col .info-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 3px;
}

.info-grid-2col .info-value {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gray-900);
}

.chip-total {
  background: var(--teal-100);
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---------- Status de atendimento (agendado / finalizado) ---------- */
.status-toggle-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
}

.status-toggle-row input { margin-top: 3px; flex-shrink: 0; }
.status-toggle-row span { display: block; }
.status-toggle-row strong { display: block; font-size: 13.5px; color: var(--gray-900); margin-bottom: 3px; }
.status-toggle-row small { display: block; font-size: 11.5px; color: var(--gray-500); line-height: 1.5; }

.badge-scheduled { background: rgba(124, 134, 151, 0.18); color: var(--gray-700); }
.badge-completed { background: rgba(34, 197, 94, 0.15); color: #4ade80; }

/* ---------- Banner "Instalar app" (install.js) ---------- */
.install-banner {
  position: fixed;
  left: 50%;
  bottom: calc(14px + var(--safe-bottom));
  transform: translateX(-50%) translateY(140%);
  width: calc(100% - 24px);
  max-width: 456px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 80;
  transition: transform .3s ease-out;
}

.install-banner.has-bottom-nav {
  bottom: calc(78px + var(--safe-bottom));
}

.install-banner.show {
  transform: translateX(-50%) translateY(0);
}

.install-banner-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  overflow: hidden;
}

.install-banner-icon img { width: 100%; height: 100%; display: block; }

.install-banner-body { flex: 1; min-width: 0; }

.install-banner-title {
  margin: 0 0 2px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--gray-900);
}

.install-banner-text {
  margin: 0;
  font-size: 12px;
  color: var(--gray-700);
  line-height: 1.5;
}

.install-banner-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.install-banner-btn {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  color: #241300;
  border: none;
  font-size: 12.5px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
}

.install-banner-close {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  color: var(--gray-500);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 12px;
}

@media (max-width: 380px) {
  .install-banner-text { display: none; }
}
