:root {
  --accent: #0ea5e9;
  --accent-dark: #0284c7;
  --bg: #f0f9ff;
  --text: #0f172a;
  --muted: #64748b;
  --surface: #ffffff;
  --border: #e2e8f0;
  --ok: #16a34a;
  --warn: #d97706;
  --err: #dc2626;
  --header-h: 56px;
  --bottom-nav-h: 72px;
  --sidebar-w: 240px;
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.ls-body {
  font-family: var(--font-sans, 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

.ls-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: env(safe-area-inset-top) 1rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.ls-logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  font-weight: 800;
  font-size: 0.92rem;
}

.ls-logo-mark {
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
}

.ls-logo-text {
  color: var(--accent-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ls-header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.ls-btn-header {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  background: #fff !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.ls-btn-header:hover {
  border-color: #cbd5e1 !important;
  background: #f8fafc !important;
}

.ls-btn-google-ico {
  flex-shrink: 0;
}

.ls-header-user {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.5rem 0.25rem 0.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.ls-header-user:hover {
  border-color: #bae6fd;
}

.ls-header-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.ls-header-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.ls-header-user-name {
  max-width: 4.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .ls-header-user-name { max-width: 7rem; }
}

/* Auth pages */
.ls-auth-box {
  max-width: 400px;
  margin: 0 auto;
  padding: 1.25rem;
}

.ls-auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.15rem 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.ls-auth-divider::before,
.ls-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.ls-auth-divider span {
  flex-shrink: 0;
}

.ls-google-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.ls-google-wrap.is-compact {
  transform: scale(0.92);
  transform-origin: right center;
}

.ls-google-status {
  width: 100%;
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 8px;
}

.ls-header-links {
  display: flex;
  gap: 0.75rem;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.ls-header-links a { color: var(--muted); font-weight: 600; }
.ls-header-links a:hover { color: var(--accent); }

.ls-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 1rem calc(var(--bottom-nav-h) + 1.5rem);
  min-height: calc(100vh - var(--header-h));
}

.ls-main.ls-main-wide { max-width: 1200px; }

.ls-flash {
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}
.ls-flash-ok { background: #dcfce7; color: #166534; }
.ls-flash-err { background: #fee2e2; color: #991b1b; }

.ls-hero {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
.ls-hero h1 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.ls-hero p { opacity: 0.95; margin-bottom: 0.5rem; }
.ls-hero-tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; margin-bottom: 0.35rem; }
.ls-hero-contact { font-size: 0.82rem; opacity: 0.9; margin-bottom: 1rem !important; }
.ls-hero-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 0.75rem; }
.ls-btn-hero { background: rgba(255,255,255,0.15) !important; border: 2px solid rgba(255,255,255,0.85); color: #fff !important; }
.ls-btn-hero:hover { background: rgba(255,255,255,0.25) !important; }

.ls-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.ls-stat-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 0.5rem;
  text-align: center;
}
.ls-stat-num { display: block; font-size: 1.35rem; font-weight: 800; color: var(--accent-dark); }
.ls-stat-lbl { font-size: 0.68rem; color: var(--muted); font-weight: 600; }

.ls-promo { position: relative; }
.ls-promo-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

.ls-section { margin-bottom: 1.5rem; scroll-margin-top: calc(var(--header-h) + 0.75rem); }

#daftar-harga { scroll-margin-top: calc(var(--header-h) + 0.75rem); }
.ls-section-head { margin-bottom: 0.85rem; }
.ls-section-head h2 { font-size: 1.15rem; margin-bottom: 0.25rem; }

.ls-price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .ls-price-grid { grid-template-columns: repeat(3, 1fr); }
}
.ls-price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 130px;
}
.ls-price-card.is-featured {
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.15);
}
.ls-price-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  background: #fef3c7;
  color: #92400e;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}
.ls-price-card h3 { font-size: 0.92rem; margin-bottom: 0.25rem; padding-right: 3rem; }
.ls-price-desc { font-size: 0.78rem; color: var(--muted); flex: 1; margin-bottom: 0.5rem; }
.ls-price-amount { font-size: 1.1rem; font-weight: 800; color: var(--accent-dark); }
.ls-price-unit { font-size: 0.72rem; color: var(--muted); }

.ls-tier-card { text-align: center; }
.ls-tier-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--muted); }
.ls-tier-disc { font-size: 1.1rem; margin: 0.35rem 0; }
.ls-tier-gold { border-color: #fcd34d; background: linear-gradient(180deg, #fffbeb 0%, #fff 100%); }

.ls-steps {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.ls-steps li { margin-bottom: 0.5rem; }
.ls-steps strong { color: var(--text); }

.ls-track-cta { text-align: center; margin-top: 1rem; }
.ls-track-cta h3 { margin-bottom: 0.35rem; }
.ls-track-cta code { background: #e0f2fe; padding: 0.1rem 0.35rem; border-radius: 4px; font-size: 0.85rem; }
.ls-track-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.ls-track-form input {
  flex: 1;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}

.ls-footer {
  text-align: center;
  padding: 1.25rem 0 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}
.ls-footer p { margin-bottom: 0.25rem; }


.ls-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
}
.ls-btn:hover { background: var(--accent-dark); }
.ls-btn-ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.ls-btn-block { width: 100%; }

.ls-btn-wa {
  background: #25d366 !important;
  color: #fff !important;
}
.ls-btn-wa:hover { background: #1da851 !important; }

.ls-btn-hero-wa {
  background: rgba(37, 211, 102, 0.95) !important;
  border: 2px solid rgba(255, 255, 255, 0.85) !important;
  color: #fff !important;
}

.ls-header-wa {
  color: #16a34a !important;
  font-weight: 800;
}

.ls-bottom-nav a.ls-nav-wa { color: #16a34a; }
.ls-bottom-nav a.ls-nav-wa.is-active { color: #15803d; }

.ls-wa-fab {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom) + 0.75rem);
  z-index: 99;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}
.ls-wa-fab:active { transform: scale(0.95); }

@media (min-width: 900px) {
  .ls-wa-fab { bottom: 1.5rem; }
}

/* Member page */
.ls-member-hero { text-align: center; padding: 1.5rem 1rem; }
.ls-member-hero-icon { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.ls-member-cta { display: block; transition: transform 0.2s, box-shadow 0.2s; }
.ls-member-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(14, 165, 233, 0.12); }
.ls-member-cta h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.ls-wa-block { border-left: 4px solid #25d366; }

.ls-tier-card-pro { position: relative; overflow: hidden; }
.ls-tier-card-pro::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #94a3b8, #cbd5e1);
}
.ls-tier-gold.ls-tier-card-pro::before {
  background: linear-gradient(90deg, #f59e0b, #fcd34d);
}
.ls-tier-emoji { font-size: 1.75rem; display: block; margin-bottom: 0.35rem; }

.ls-promo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.ls-promo h2 { font-size: 1.05rem; margin-bottom: 0.35rem; color: var(--accent-dark); }

.ls-grid { display: grid; gap: 1rem; }
.ls-grid-2 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .ls-grid-2 { grid-template-columns: 1fr 1fr; } }

.ls-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}
.ls-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }

.ls-stat-value { font-size: 1.5rem; font-weight: 800; color: var(--accent-dark); }

.ls-form label {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.ls-form input, .ls-form select, .ls-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  background: #fff;
}
.ls-form textarea { min-height: 80px; resize: vertical; }

.ls-table-wrap { overflow-x: auto; }
.ls-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.ls-table th, .ls-table td {
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.ls-table th { color: var(--muted); font-weight: 600; }

.ls-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #e0f2fe;
  color: #0369a1;
}
.ls-badge-selesai { background: #dcfce7; color: #166534; }
.ls-badge-masuk { background: #fef3c7; color: #92400e; }

.ls-status-track-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 0.75rem;
  padding-bottom: 0.25rem;
}
.ls-status-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  min-width: min-content;
}
.ls-status-step {
  flex: 0 0 auto;
  min-width: 58px;
  text-align: center;
  padding: 0.5rem 0.25rem;
  border-radius: 8px;
  font-size: 0.72rem;
  background: #f1f5f9;
  color: var(--muted);
}
.ls-status-step.is-done { background: #bae6fd; color: #0c4a6e; font-weight: 700; }
.ls-status-step.is-current { background: var(--accent); color: #fff; font-weight: 700; }

.ls-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  min-height: var(--bottom-nav-h);
  height: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom));
  padding: 0.4rem 0.25rem env(safe-area-inset-bottom);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(14, 165, 233, 0.1);
}

.ls-bottom-nav a {
  flex: 1;
  min-width: 0;
  max-width: 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.35rem 0.2rem;
  font-size: 0.6875rem;
  line-height: 1.1;
  color: var(--muted);
  font-weight: 600;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s ease;
}

.ls-bottom-nav a.is-active {
  color: var(--accent-dark);
  font-weight: 700;
}

.ls-bottom-nav a.is-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 22%;
  right: 22%;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--accent);
}

.ls-nav-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ls-nav-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.ls-bottom-nav a.is-active .ls-nav-icon {
  transform: scale(1.05);
}

.ls-nav-label {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

/* Staff nav — 5 item, sedikit rapat */
.ls-bottom-nav.is-staff a {
  max-width: none;
  font-size: 0.625rem;
  gap: 0.25rem;
  padding: 0.3rem 0.1rem;
}

.ls-bottom-nav.is-staff .ls-nav-icon svg {
  width: 22px;
  height: 22px;
}

.ls-admin-shell {
  display: flex;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 calc(var(--bottom-nav-h) + 1rem);
}
.ls-sidebar {
  display: none;
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 1rem 0.75rem;
  min-height: calc(100vh - var(--header-h));
}
.ls-sidebar-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 0 0.5rem 0.75rem;
}
.ls-sidebar a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
  color: var(--muted);
  font-weight: 600;
}
.ls-sidebar a.is-active, .ls-sidebar a:hover {
  background: #e0f2fe;
  color: var(--accent-dark);
}
.ls-admin-content { flex: 1; padding: 1rem; min-width: 0; }

.ls-admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.ls-admin-img-preview {
  margin-bottom: 0.75rem;
}

.ls-admin-img-preview img {
  width: 100%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: block;
}

.ls-product-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.ls-product-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: #f1f5f9;
}

.ls-inline-form {
  margin: 0;
}

.ls-admin-search input[type="search"] {
  min-width: 0;
}

@media (min-width: 900px) {
  .ls-bottom-nav { display: none; }
  .ls-main { padding-bottom: 2rem; }
  .ls-sidebar { display: block; }
  .ls-admin-shell { padding-bottom: 1rem; }
}

.ls-page-title { font-size: 1.25rem; margin-bottom: 1rem; }
.ls-muted { color: var(--muted); font-size: 0.88rem; }
.ls-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }

/* Kasir POS */
.ls-kasir-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ls-kasir-layout { grid-template-columns: 1.2fr 1fr; }
}
.ls-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}
@media (min-width: 480px) {
  .ls-product-grid { grid-template-columns: repeat(3, 1fr); }
}
.ls-product-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
}
.ls-product-btn:hover, .ls-product-btn:active {
  border-color: var(--accent);
  background: #e0f2fe;
}
.ls-product-btn strong { font-size: 0.88rem; }
.ls-product-btn span { font-size: 0.82rem; color: var(--accent-dark); font-weight: 700; }
.ls-cart-list { list-style: none; margin: 0.75rem 0; min-height: 2rem; }
.ls-cart-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.88rem;
}
.ls-cart-list button {
  border: none;
  background: #fee2e2;
  color: #991b1b;
  border-radius: 6px;
  padding: 0.15rem 0.5rem;
  cursor: pointer;
  font-weight: 700;
}
.ls-cart-total { font-size: 1.1rem; margin-bottom: 0.75rem; }

/* Struk cetak */
.ls-struk-wrap { max-width: 380px; margin: 0 auto; padding: 1rem; }
.ls-struk {
  background: #fff;
  border: 1px dashed var(--border);
  padding: 1.25rem;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  font-size: 0.88rem;
  text-align: center;
}
.ls-struk-logo-wrap {
  background: #000;
  margin: -1.25rem -1.25rem 0.75rem;
  padding: 0.85rem 0.75rem 0.65rem;
  text-align: center;
  border-radius: 6px 6px 0 0;
}
.ls-struk-logo {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.ls-struk-head h1 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.ls-struk-head p { font-size: 0.78rem; color: var(--muted); }
.ls-struk hr { border: none; border-top: 1px dashed #ccc; margin: 0.75rem 0; }
.ls-struk-total { font-size: 1.35rem; font-weight: 800; color: var(--accent-dark); margin: 0.5rem 0; }
.ls-struk-qr { margin: 0.75rem 0; }
.ls-struk-footer { font-size: 0.75rem; color: var(--muted); margin-top: 0.5rem; }
.ls-struk-actions { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.ls-btn-wa {
  background: #25d366 !important;
  color: #fff !important;
  border: none !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}
.ls-btn-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 600;
  background: #0ea5e9 !important;
  color: #fff !important;
  border: none !important;
}
.ls-btn-share, .ls-btn-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 600;
}
.ls-struk-share-hint {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin: 0.25rem 0 0;
  min-height: 1rem;
}
.ls-struk-share-hint.is-ok { color: #15803d; }
.ls-struk-share-hint.is-error { color: #b91c1c; }

@media print {
  .ls-header, .ls-bottom-nav, .ls-flash, .no-print, .ls-sidebar { display: none !important; }
  .ls-main { padding: 0 !important; max-width: none !important; }
  .ls-struk-wrap { max-width: 80mm; margin: 0; padding: 0; }
  .ls-struk { border: none; }
  body.ls-body { background: #fff; }
}

/* ── Mobile (<900px) — bottom nav aktif ── */
@media (max-width: 899px) {
  .ls-header {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .ls-logo-text { max-width: 11rem; }
  .ls-main { padding-left: 0.75rem; padding-right: 0.75rem; }
}

@media (max-width: 380px) {
  .ls-bottom-nav:not(.is-staff) .ls-nav-label { font-size: 0.625rem; }
  .ls-bottom-nav.is-staff .ls-nav-label { font-size: 0.58rem; }
}

@media (max-width: 480px) {
  .ls-hero { padding: 1.5rem 1rem; }
  .ls-hero h1 { font-size: 1.3rem; line-height: 1.25; }
  .ls-hero p { font-size: 0.88rem; }
  .ls-hero-contact {
    font-size: 0.74rem;
    line-height: 1.45;
    word-break: break-word;
  }
  .ls-hero-actions { flex-direction: column; width: 100%; }
  .ls-hero-actions .ls-btn { width: 100%; }

  .ls-stat-strip { gap: 0.35rem; }
  .ls-stat-item { padding: 0.6rem 0.35rem; }
  .ls-stat-num { font-size: 1.1rem; }
  .ls-stat-lbl { font-size: 0.6rem; line-height: 1.25; }

  .ls-price-grid { grid-template-columns: 1fr; }
  .ls-price-card { min-height: auto; }
  .ls-price-card h3 { padding-right: 0; }
  .ls-price-badge { position: static; display: inline-block; margin-bottom: 0.35rem; }

  .ls-track-form {
    flex-direction: column;
    max-width: none;
  }
  .ls-track-form .ls-btn { width: 100%; }

  .ls-page-title { font-size: 1.1rem; }
  .ls-actions .ls-btn { flex: 1 1 100%; }
}

