/* ============================================================
   SPARK FASHION BOUTIQUE — Mobile-First UI
   Fonts: Cormorant Garamond (brand) + Nunito (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Nunito:wght@400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --pink:        #D81B60;
  --pink-dark:   #880E4F;
  --pink-mid:    #E91E8C;
  --pink-light:  #FCE4EC;
  --pink-soft:   #FFF5F9;
  --amber:       #F57C00;
  --green:       #2E7D32;
  --red:         #C62828;
  --blue:        #1565C0;
  --bg:          #FFF6FA;
  --surface:     #FFFFFF;
  --border:      #F0DCE8;
  --text:        #1A1025;
  --muted:       #8A7690;
  --shadow-sm:   0 1px 6px rgba(216,27,96,.07);
  --shadow:      0 3px 16px rgba(216,27,96,.10);
  --shadow-md:   0 6px 28px rgba(216,27,96,.14);
  --r:           14px;
  --r-sm:        9px;
  --nav-h:       60px;
  --bot-h:       66px;
  --font:        'Nunito', sans-serif;
  --font-d:      'Cormorant Garamond', serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-tap-highlight-color: transparent; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--pink); text-decoration: none; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: var(--font); }

/* ======================================================
   TOP NAVIGATION
   ====================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--surface);
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  z-index: 200;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.site-brand {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pink-dark);
  letter-spacing: .03em;
  flex: 1;
  white-space: nowrap;
}
.site-brand span { color: var(--pink-mid); }
.site-nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}
.site-nav-links a {
  color: var(--muted);
  font-size: .87rem;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: var(--r-sm);
  transition: all .18s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 38px;
}
.site-nav-links a:hover  { color: var(--pink); background: var(--pink-soft); }
.site-nav-links a.active { color: var(--pink); background: var(--pink-light); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-user-name {
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  display: none;
}
.btn-logout {
  font-size: .8rem;
  font-weight: 800;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  transition: all .18s;
  display: flex; align-items: center; gap: 4px;
  min-height: 38px;
}
.btn-logout:hover { color: var(--red); border-color: #FFCDD2; background: #FFF5F5; }
@media (min-width: 768px) {
  .site-nav { padding: 0 24px; }
  .nav-user-name { display: block; }
}
@media (max-width: 767px) {
  .site-nav-links { display: none; }
}

/* ======================================================
   PAGE WRAPPER
   ====================================================== */
.page-wrap {
  padding-top: calc(var(--nav-h) + 14px);
  padding-bottom: calc(var(--bot-h) + 14px);
  padding-left: 12px;
  padding-right: 12px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 600px)  { .page-wrap { padding-left: 20px; padding-right: 20px; } }
@media (min-width: 768px)  { .page-wrap { padding-bottom: 32px; padding-left: 24px; padding-right: 24px; } }
@media (min-width: 1024px) { .page-wrap { padding-left: 36px; padding-right: 36px; } }

/* ======================================================
   BOTTOM NAV — mobile only
   ====================================================== */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--bot-h);
  background: var(--surface);
  border-top: 1.5px solid var(--border);
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,.09);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.bottom-nav-items {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.bnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 2px 8px;
  border: none;
  background: none;
  cursor: pointer;
  transition: color .18s;
  position: relative;
}
.bnav-item svg { width: 24px; height: 24px; flex-shrink: 0; }
.bnav-item.active { color: var(--pink); }
.bnav-item.active::after {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2.5px;
  background: var(--pink);
  border-radius: 0 0 4px 4px;
}
@media (max-width: 767px) {
  .bottom-nav { display: block; }
}

/* ======================================================
   FLOATING ACTION BUTTON — mobile only
   ====================================================== */
.fab {
  display: none;
  position: fixed;
  bottom: calc(var(--bot-h) + 14px);
  right: 16px;
  width: 54px; height: 54px;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(216,27,96,.45);
  z-index: 150;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.fab:active { transform: scale(.94); }
@media (max-width: 767px) { .fab { display: flex; } }

/* ======================================================
   CARDS
   ====================================================== */
.card {
  background: var(--surface);
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  padding: 14px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 10px;
  flex-wrap: wrap;
}
.card-head h3 {
  font-size: .95rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: .01em;
}
@media (min-width: 600px) { .card { padding: 20px; } }
@media (min-width: 768px) { .card { padding: 22px; margin-bottom: 18px; } }

/* ======================================================
   STATS GRID
   ====================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.stat-card {
  background: var(--surface);
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.stat-card:hover { box-shadow: var(--shadow); }
.stat-card span {
  display: block;
  font-size: .7rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 5px;
}
.stat-card strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--pink-dark);
  line-height: 1.15;
}
@media (min-width: 540px)  { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .stats-grid { grid-template-columns: repeat(6, 1fr); gap: 12px; } }

/* ======================================================
   PAGE GRID
   ====================================================== */
.page-grid { display: grid; gap: 14px; }
.page-grid.two-col,
.page-grid.detail-grid { grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .page-grid.two-col    { grid-template-columns: 1fr 1fr; gap: 18px; }
  .page-grid.detail-grid{ grid-template-columns: 1fr 340px; gap: 18px; }
}

/* ======================================================
   TOOLBAR
   ====================================================== */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.toolbar.wrap { flex-wrap: wrap; }
.search-row {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}
.search-row input  { flex: 1; min-width: 120px; }
.search-row select { min-width: 130px; flex-shrink: 0; }

/* ======================================================
   BUTTONS
   ====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .18s;
  white-space: nowrap;
  text-decoration: none;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
}
.btn-primary  { background: var(--pink); color: #fff; border-color: var(--pink); }
.btn-primary:hover  { background: var(--pink-dark); border-color: var(--pink-dark); }
.btn-outline  { background: transparent; color: var(--pink); border-color: var(--pink-light); }
.btn-outline:hover  { background: var(--pink-soft); border-color: var(--pink); }
.btn-full     { width: 100%; }
.btn-sm       { padding: 6px 12px; font-size: .8rem; min-height: 36px; }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #128C7E; border-color: #128C7E; }

/* ======================================================
   FORM FIELDS
   ====================================================== */
.form-grid { display: grid; gap: 14px; }
.form-grid.two-up { grid-template-columns: 1fr; }
@media (min-width: 560px) { .form-grid.two-up { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: .76rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.field input,
.field select,
.field textarea {
  padding: 11px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(216,27,96,.12);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A7690' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
.field textarea { min-height: 90px; resize: vertical; line-height: 1.5; }
.field .muted    { font-size: .75rem; }

/* ======================================================
   TABLES — horizontal scroll on small screens, card view on mobile
   ====================================================== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-sm);
}
table { width: 100%; border-collapse: collapse; min-width: 480px; }
th {
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  padding: 9px 12px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  background: var(--pink-soft);
  white-space: nowrap;
}
td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tbody tr { transition: background .15s; }
tbody tr:hover td { background: var(--pink-soft); }

/* ---- Card-view tables on very small screens ---- */
@media (max-width: 540px) {
  .table-wrap { overflow: visible; }
  table        { min-width: unset; }
  table, thead, tbody, tr, th, td { display: block; }
  thead tr { display: none; }
  tbody tr {
    background: var(--surface);
    border-radius: var(--r-sm);
    border: 1.5px solid var(--border);
    margin-bottom: 10px;
    padding: 10px 12px;
    box-shadow: var(--shadow-sm);
  }
  tbody tr:hover td { background: transparent; }
  td {
    padding: 5px 0;
    border: none;
    font-size: .9rem;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 6px;
    align-items: start;
  }
  td::before {
    content: attr(data-label);
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    padding-top: 2px;
  }
  td.action-cell {
    grid-template-columns: 1fr;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px dashed var(--border) !important;
    border: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  td.action-cell::before { display: none; }
}

/* ======================================================
   ACTION LINKS (table row actions)
   ====================================================== */
.action-cell { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.action-link {
  font-size: .78rem;
  font-weight: 800;
  color: var(--pink);
  padding: 5px 11px;
  border-radius: 30px;
  background: var(--pink-soft);
  border: 1.5px solid var(--pink-light);
  white-space: nowrap;
  transition: all .15s;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  text-decoration: none;
}
.action-link:hover    { background: var(--pink-light); }
.action-link.danger   { color: var(--red);  background: #FFF5F5; border-color: #FFCDD2; }
.action-link.danger:hover   { background: #FFCDD2; }
.action-link.whatsapp { color: #128C7E; background: #E8F5E9; border-color: #A5D6A7; }
.action-link.whatsapp:hover { background: #C8E6C9; }

/* ======================================================
   ALERTS
   ====================================================== */
.alert {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  margin-bottom: 14px;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: #E8F5E9; color: #1B5E20; border-left: 4px solid #2E7D32; }
.alert-error   { background: #FFEBEE; color: #B71C1C; border-left: 4px solid #C62828; }

/* ======================================================
   STATUS BADGES
   ====================================================== */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge-received   { background: #E3F2FD; color: #0D47A1; }
.badge-inprogress { background: #FFF3E0; color: #E65100; }
.badge-ready      { background: #E8F5E9; color: #1B5E20; }
.badge-delivered  { background: #EDE7F6; color: #311B92; }
.badge-cancelled  { background: #FFEBEE; color: #B71C1C; }

/* ======================================================
   MUTED TEXT
   ====================================================== */
.muted { font-size: .8rem; color: var(--muted); margin-top: 2px; }

/* ======================================================
   DETAIL LIST (order view)
   ====================================================== */
.detail-list { display: flex; flex-direction: column; }
.detail-list > div {
  display: flex;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.detail-list > div:last-child { border-bottom: none; }
.detail-list span {
  font-size: .73rem;
  font-weight: 900;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  min-width: 110px;
  flex-shrink: 0;
  padding-top: 2px;
}
.detail-list strong { font-weight: 700; color: var(--text); }
.detail-list.compact span { min-width: 80px; }

/* ======================================================
   NOTE BOX
   ====================================================== */
.note-box {
  background: var(--bg);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: .9rem;
  color: var(--text);
  border: 1.5px solid var(--border);
  min-height: 48px;
  line-height: 1.6;
}

/* ======================================================
   SUBSECTION
   ====================================================== */
.subsection { margin-top: 20px; }
.subsection h4 {
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin-bottom: 10px;
}

/* ======================================================
   PHOTO GRID
   ====================================================== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}
.photo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--bg);
  padding-bottom: 8px;
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
.photo-card:hover { border-color: var(--pink); box-shadow: var(--shadow-sm); }
.photo-card img { width: 100%; height: 90px; object-fit: cover; }
.photo-card span { font-size: .7rem; color: var(--muted); text-align: center; padding: 0 6px; }
.photo-card small { font-size: .7rem; color: var(--muted); padding: 0 6px; display: flex; align-items: center; gap: 4px; }
.compact-top { margin-top: 12px; }

/* ======================================================
   ORDER PAGE LAYOUT
   ====================================================== */
.order-page { }
.order-layout {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .order-layout { grid-template-columns: 1fr 260px; align-items: start; gap: 18px; }
}
.summary-box {
  background: var(--bg);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  margin-bottom: 12px;
  border: 1.5px solid var(--border);
  font-size: .85rem;
}
.summary-box p  { font-weight: 800; margin-bottom: 8px; color: var(--text); }
.summary-box ul, .summary-box ol { padding-left: 18px; }
.summary-box li { margin-bottom: 4px; color: var(--muted); }

/* ---- Item Rows ---- */
.item-row {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  margin-bottom: 10px;
  padding: 12px;
  background: var(--bg);
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
}
@media (min-width: 560px) {
  .item-row { grid-template-columns: 2fr 2fr 60px 100px auto; align-items: center; }
}
.item-row input {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 9px 12px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text);
  width: 100%;
  min-height: 44px;
  transition: border-color .2s;
}
.item-row input:focus { outline: none; border-color: var(--pink); }
.item-row input::placeholder { color: var(--muted); font-size: .85rem; }

/* ======================================================
   LIST STACK (today's deliveries)
   ====================================================== */
.list-stack    { display: flex; flex-direction: column; }
.list-item     { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); gap: 10px; flex-wrap: wrap; }
.list-item:last-child { border-bottom: none; }
.list-actions  { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.amount        { font-weight: 900; font-size: 1rem; color: var(--pink-dark); }

/* ======================================================
   EMPTY STATE
   ====================================================== */
.empty-state {
  text-align: center;
  padding: 36px 16px;
  color: var(--muted);
  font-size: .9rem;
  font-style: italic;
}

/* ======================================================
   INVOICE (print-focused page)
   ====================================================== */
.invoice-body { background: #f4f4f6; }
.invoice-sheet {
  background: #fff;
  max-width: 820px;
  margin: 24px auto;
  padding: 36px;
  border-radius: 8px;
  box-shadow: 0 2px 24px rgba(0,0,0,.1);
}
@media (max-width: 599px) {
  .invoice-sheet { margin: 0; border-radius: 0; padding: 20px 16px; box-shadow: none; }
}
.invoice-head  {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--pink-light);
}
.invoice-head h1 {
  font-family: var(--font-d);
  font-size: 1.7rem;
  color: var(--pink-dark);
  margin-bottom: 5px;
  line-height: 1.2;
}
.invoice-head p { font-size: .85rem; color: #555; margin: 2px 0; }
.invoice-meta   { text-align: right; }
.invoice-meta h2 { font-size: 1rem; color: #333; margin-bottom: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.invoice-meta p  { font-size: .85rem; color: #555; margin: 3px 0; }
.invoice-customer {
  background: var(--pink-soft);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 22px;
  border: 1px solid var(--pink-light);
}
.invoice-customer h3  { font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 8px; }
.invoice-customer p   { font-size: .9rem; margin: 2px 0; }
.invoice-table        { width: 100%; border-collapse: collapse; margin-bottom: 22px; }
.invoice-table th     { background: var(--pink-soft); font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); padding: 9px 10px; text-align: left; border-bottom: 2px solid var(--pink-light); }
.invoice-table td     { padding: 10px; border-bottom: 1px solid #f0eaf3; font-size: .88rem; }
.invoice-table tr:last-child td { border-bottom: none; }
.invoice-totals       { max-width: 300px; margin-left: auto; border: 1.5px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.invoice-totals > div { display: flex; justify-content: space-between; padding: 8px 14px; border-bottom: 1px solid var(--border); font-size: .88rem; }
.invoice-totals > div:last-child { font-size: 1rem; font-weight: 900; border-bottom: none; background: var(--pink-soft); color: var(--pink-dark); padding: 10px 14px; }
.invoice-actions { margin-top: 28px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ======================================================
   LOGIN PAGE
   ====================================================== */
.login-body {
  background: linear-gradient(135deg, #FCE4EC 0%, #FFF5F9 45%, #EDE7F6 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-wrap  { width: 100%; max-width: 420px; }
.login-card  {
  background: #fff;
  border-radius: var(--r);
  padding: 36px 28px;
  box-shadow: 0 10px 48px rgba(216,27,96,.18);
  border: 1.5px solid var(--border);
}
.login-brand {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink-dark);
  text-align: center;
  margin-bottom: 3px;
  letter-spacing: .02em;
}
.login-card h1 { text-align: center; font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.login-card  p { text-align: center; font-size: .85rem; color: var(--muted); margin-bottom: 22px; line-height: 1.5; }
.login-help    { text-align: center; margin-top: 18px; font-size: .78rem; color: var(--muted); }
.login-help strong { color: var(--text); }

/* ======================================================
   SETTINGS
   ====================================================== */
.settings-card-wide { max-width: 860px; }
.form-card          { max-width: 700px; }

/* ======================================================
   PRINT
   ====================================================== */
@media print {
  .no-print, .site-nav, .bottom-nav, .fab { display: none !important; }
  .invoice-sheet { box-shadow: none; margin: 0; padding: 20px; border-radius: 0; }
  body { background: #fff; }
  .page-wrap { padding: 0; }
}
