/* ═══════════════════════════════════════════════════
   Zuloro Business Boost — Supplementary Stylesheet
   Extends style.css. Never redefines its variables.
   Mobile-first. Min supported width: 360px.
   ═══════════════════════════════════════════════════ */

/* ── PAGE LAYOUT ─────────────────────────────────── */
.boost-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 16px 72px;
}
@media (min-width: 640px) { .boost-page { padding: 32px 24px 80px; } }

/* ── BACK BUTTON ─────────────────────────────────── */
.boost-back {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .85rem; font-weight: 600; color: var(--muted);
  padding: 6px 0; margin-bottom: 20px;
  border: none; background: none; cursor: pointer;
  transition: color .18s;
}
.boost-back:hover { color: var(--orange); }

/* ── BOOST HERO (hub header) ─────────────────────── */
.boost-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1a3a6b 100%);
  border-radius: 16px;
  padding: 24px 20px 22px;
  margin-bottom: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.boost-hero::before {
  content: '⚡';
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 5rem; opacity: .07; pointer-events: none; line-height: 1;
}
@media (min-width: 480px) {
  .boost-hero { padding: 28px 28px 24px; }
  .boost-hero::before { font-size: 7rem; right: 24px; }
}
.bh-eyebrow {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; opacity: .5; margin-bottom: 8px;
}
.bh-title { font-size: 1.35rem; font-weight: 900; margin-bottom: 6px; line-height: 1.2; }
.bh-sub   { font-size: .82rem; opacity: .62; max-width: 460px; line-height: 1.5; }
@media (min-width: 480px) { .bh-title { font-size: 1.6rem; } }

/* ── SETTINGS INCOMPLETE BANNER ──────────────────── */
.boost-banner {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fffbeb; border: 1.5px solid #fde68a;
  border-radius: 12px; padding: 14px 16px; margin-bottom: 24px;
}
.boost-banner .bb-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.boost-banner .bb-body { flex: 1; min-width: 0; }
.boost-banner .bb-title { font-weight: 700; font-size: .875rem; color: #92400e; }
.boost-banner .bb-msg   { font-size: .78rem; color: #b45309; margin-top: 3px; line-height: 1.5; }
.boost-banner .bb-link  {
  display: inline-block; margin-top: 8px;
  font-size: .82rem; font-weight: 700; color: var(--orange);
  text-decoration: underline; cursor: pointer;
}

/* ── HUB SECTION LABEL ───────────────────────────── */
.hub-section { margin-top: 28px; margin-bottom: 0; }
.hub-section:first-of-type { margin-top: 0; }
.hub-section-label {
  font-size: .7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--muted); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.hub-section-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* ── TILE GRID ───────────────────────────────────── */
.boost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (min-width: 480px)  { .boost-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (min-width: 700px)  { .boost-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
@media (min-width: 860px)  { .boost-grid { grid-template-columns: repeat(5, 1fr); } }

/* ── INDIVIDUAL TILE ─────────────────────────────── */
.boost-tile {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 14px 12px 13px;
  background: var(--white); border-radius: 12px;
  border: 1.5px solid var(--border);
  text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .18s;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.boost-tile:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 22px rgba(240,92,34,.13);
  transform: translateY(-2px);
}
.boost-tile:active { transform: scale(.96); }
@media (min-width: 480px) { .boost-tile { padding: 18px 15px 16px; border-radius: 14px; } }
.bt-icon  { font-size: 1.5rem; margin-bottom: 9px; line-height: 1; }
.bt-title { font-size: .8rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; line-height: 1.3; }
.bt-desc  { font-size: .7rem; color: var(--muted); line-height: 1.5; }
@media (min-width: 480px) {
  .bt-icon  { font-size: 1.75rem; }
  .bt-title { font-size: .875rem; }
  .bt-desc  { font-size: .72rem; }
}
.bt-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--orange-pale); color: var(--orange);
  font-size: .65rem; font-weight: 800;
  padding: 2px 7px; border-radius: 99px;
  letter-spacing: .3px;
}
.bt-badge-alert { background: #fee2e2; color: var(--red); }

/* ── BOOST ENTRY CARD (in dashboard) ────────────── */
.boost-entry-card {
  background: linear-gradient(135deg, #0f172a 0%, #1a3a6b 100%);
  border-radius: 14px; padding: 18px 20px;
  margin-bottom: 20px; color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
}
.bec-left .bec-label {
  font-size: .68rem; font-weight: 700; opacity: .5;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px;
}
.bec-left .bec-title { font-size: 1rem; font-weight: 900; }
.bec-left .bec-sub   { font-size: .76rem; opacity: .58; margin-top: 3px; }
@media (min-width: 480px) { .bec-left .bec-title { font-size: 1.15rem; } }
.bec-btn {
  padding: 10px 20px; background: var(--orange); color: #fff;
  border: none; border-radius: 9px; font-weight: 700; font-size: .875rem;
  cursor: pointer; white-space: nowrap; transition: background .2s;
  text-decoration: none; display: inline-block; flex-shrink: 0;
}
.bec-btn:hover { background: var(--orange-h); }

/* ── SETTINGS SECTIONS ───────────────────────────── */
.settings-section {
  background: var(--white); border-radius: 14px;
  border: 1.5px solid var(--border);
  margin-bottom: 18px; overflow: hidden;
}
.settings-section-head {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  background: #fafbff;
  display: flex; align-items: center; gap: 10px;
}
.settings-section-head .ss-icon { font-size: 1.1rem; }
.settings-section-head h3 { font-size: .9rem; font-weight: 700; color: var(--dark); }
.settings-section-body { padding: 18px 18px 20px; }
@media (min-width: 480px) {
  .settings-section-head { padding: 16px 22px; }
  .settings-section-body { padding: 22px; }
}

/* ── SIGNATURE PREVIEW ───────────────────────────── */
.sig-preview {
  display: flex; align-items: center; gap: 14px; margin-top: 12px; flex-wrap: wrap;
}
.sig-preview img {
  max-width: 180px; max-height: 65px; object-fit: contain;
  border: 1.5px solid var(--border); border-radius: 8px;
  background: #fff; padding: 6px;
}

/* ── SAVE TOAST ──────────────────────────────────── */
.save-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: #0f172a; color: #fff;
  padding: 12px 24px; border-radius: 99px;
  font-size: .875rem; font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  z-index: 9999; white-space: nowrap;
  animation: toastIn .25s ease;
}
@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* ── REMINDER DOT (dashboard mini-stat) ─────────── */
.remind-dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--red); border-radius: 50; margin-left: 4px;
  vertical-align: middle;
}

/* ── PAGE TITLE ROW ──────────────────────────────── */
.page-title-row {
  margin-bottom: 24px;
}
.page-title-row h1 {
  font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 4px;
}
@media (min-width: 480px) { .page-title-row h1 { font-size: 1.4rem; } }
.page-title-row p { font-size: .84rem; color: var(--muted); }
