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

:root {
  --brand: #7c3aed;
  --brand-dark: #4338ca;
  --brand-light: #f3e8ff;
  --brand-glow: rgba(124, 58, 237, 0.35);
  --brand-gradient: linear-gradient(135deg, #7c3aed 0%, #4f46e5 50%, #2563eb 100%);
  --brand-gradient-hover: linear-gradient(135deg, #6d28d9 0%, #4338ca 50%, #1d4ed8 100%);
  --ink: #0f172a;
  --muted: #64748b;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 40px -15px rgba(124, 58, 237, 0.22);
  --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.35);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo, .nav-actions, .btn {
  font-family: 'Outfit', sans-serif;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 250, 252, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  transition: transform 0.2s ease;
}
.logo:hover { transform: scale(1.02); }
.logo-mark {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 10px rgba(124, 58, 237, 0.3));
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-actions { display: flex; gap: 12px; align-items: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.01em;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active { transform: translateY(0) scale(0.97); }
.btn-primary {
  background: var(--brand-gradient);
  color: white;
  box-shadow: 0 8px 20px -4px rgba(124, 58, 237, 0.4);
}
.btn-primary:hover {
  background: var(--brand-gradient-hover);
  box-shadow: 0 12px 28px -4px rgba(124, 58, 237, 0.55);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: white;
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}
.btn-block { width: 100%; }
.btn-danger { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }
.btn-danger:hover { background: #fecaca; }
.btn-success { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.btn-success:hover { background: #bbf7d0; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-xl {
  padding: 20px 44px;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 16px 36px -8px rgba(124, 58, 237, 0.5);
}
.btn-xl:hover {
  box-shadow: 0 22px 44px -8px rgba(124, 58, 237, 0.65);
}
.final-cta {
  text-align: center;
  background: radial-gradient(circle at 50% 0%, #312e81 0%, #1e1b4b 50%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 72px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}
.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #34d399;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.final-cta h2 { font-size: 2.5rem; letter-spacing: -0.03em; margin-bottom: 14px; color: #fff; }
.final-cta p { color: rgba(255, 255, 255, 0.75); font-size: 1.1rem; max-width: 520px; margin: 0 auto 32px; line-height: 1.6; }
.final-cta .btn-xl { display: inline-flex; align-items: center; gap: 10px; }
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.final-cta h2 { font-size: 2.1rem; letter-spacing: -0.02em; margin-bottom: 12px; color: #fff; }
.final-cta p { color: rgba(255, 255, 255, 0.75); font-size: 1.05rem; max-width: 480px; margin: 0 auto 28px; }
.final-cta .btn-xl { display: inline-flex; align-items: center; gap: 10px; }

/* ---------- Hero ---------- */
.hero {
  padding: 88px 0 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-phone-photo {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 28px 56px -18px rgba(30, 27, 46, 0.4);
  justify-self: center;
}
.hero-tagline {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 14px;
  text-align: center;
}
.hero-tagline-accent { color: var(--brand); }
.hero h1 {
  font-size: 3.1rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 0 30px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

/* ---------- Live demo section ---------- */
.demo-section { background: var(--brand-light); border-radius: 24px; padding: 56px 24px; }
.demo-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.demo-qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.demo-qr-illustration { width: 100%; max-width: 340px; display: block; }
.qr-scan-hint {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 700;
  font-size: 1.17rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 21px;
  border-radius: 999px;
}

/* Countertop QR stand mockup — real product photo */
/* phone mockup */
.phone {
  justify-self: center;
  width: 260px;
  border-radius: 34px;
  background: linear-gradient(160deg, var(--brand), var(--brand-dark));
  padding: 12px;
  box-shadow: 0 30px 60px rgba(76, 29, 149, 0.28);
}
.phone-screen {
  background: white;
  border-radius: 24px;
  padding: 20px 14px;
  text-align: center;
  min-height: auto;
}
.phone-avatar {
  width: 56px;
  height: 56px;
  margin: 0 auto 8px;
  border-radius: 20% !important;
  background: linear-gradient(160deg, var(--brand), var(--brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.phone-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 20% !important; }
.phone-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 2px; }
.phone-bio { font-size: 0.75rem; color: var(--muted); margin-bottom: 10px; line-height: 1.3; }
.phone-link {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.phone-offers { margin-bottom: 6px; }
.phone-offer {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 10px;
  padding: 7px 9px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.phone-action-btn {
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 12px;
  padding: 11px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ---------- Features ---------- */
.section { padding: 64px 0; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 44px; }
.section-head h2 { font-size: 2.1rem; letter-spacing: -0.02em; margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-6px);
}
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Themed Card Variants */
.feature-card-purple {
  background: linear-gradient(145deg, #ffffff 0%, #faf5ff 100%);
  border: 1px solid rgba(124, 58, 237, 0.18);
}
.feature-card-purple:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 20px 40px -12px rgba(124, 58, 237, 0.2);
}

.feature-card-orange {
  background: linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
  border: 1px solid rgba(249, 115, 22, 0.18);
}
.feature-card-orange:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 40px -12px rgba(249, 115, 22, 0.2);
}

.feature-card-blue {
  background: linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
  border: 1px solid rgba(37, 99, 235, 0.18);
}
.feature-card-blue:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 20px 40px -12px rgba(37, 99, 235, 0.2);
}

.feature-card-green {
  background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
  border: 1px solid rgba(16, 185, 129, 0.18);
}
.feature-card-green:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 40px -12px rgba(16, 185, 129, 0.2);
}

/* Feature Badges */
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.badge-purple { background: #f3e8ff; color: #7c3aed; border: 1px solid rgba(124, 58, 237, 0.2); }
.badge-orange { background: #ffedd5; color: #ea580c; border: 1px solid rgba(234, 88, 12, 0.2); }
.badge-blue { background: #dbeafe; color: #2563eb; border: 1px solid rgba(37, 99, 235, 0.2); }
.badge-green { background: #dcfce7; color: #059669; border: 1px solid rgba(5, 150, 105, 0.2); }

.feature-card-photo { padding: 0; overflow: hidden; }
.feature-photo { width: 100%; display: block; margin-bottom: 16px; }
.feature-card-photo h3, .feature-card-photo p { padding: 0 22px; }
.feature-card-photo p { padding-bottom: 22px; }

.use-case-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.use-case-category {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.use-case-category:hover {
  transform: translateY(-4px);
}
.use-case-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.use-case-icon {
  font-size: 1.8rem;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.use-case-card-popular .use-case-icon { background: #ffedd5; }
.use-case-card-ideas .use-case-icon { background: #dbeafe; }
.use-case-card-creative .use-case-icon { background: #f3e8ff; }

.use-case-header h4 {
  margin: 0 0 2px;
  font-size: 1.15rem;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
}
.use-case-sub {
  font-size: 0.8rem;
  color: var(--muted);
}
.use-case-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.use-case-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}
.use-case-item:hover {
  background: #ffffff;
  border-color: var(--brand);
  transform: translateX(6px);
  box-shadow: 0 8px 20px -4px rgba(124, 58, 237, 0.18);
}
.use-case-item-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(241, 245, 249, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.use-case-item-text {
  flex: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.use-case-card-popular {
  background: linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-top: 4px solid #f97316;
}
.use-case-card-popular:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 40px -12px rgba(249, 115, 22, 0.2);
}

.use-case-card-ideas {
  background: linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-top: 4px solid #2563eb;
}
.use-case-card-ideas:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 20px 40px -12px rgba(37, 99, 235, 0.2);
}

.use-case-card-creative {
  background: linear-gradient(145deg, #ffffff 0%, #faf5ff 100%);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-top: 4px solid #7c3aed;
}
.use-case-card-creative:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 20px 40px -12px rgba(124, 58, 237, 0.2);
}

.steps-showcase {
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1;
  min-width: 260px;
  max-width: 420px;
}
.step-row { display: flex; gap: 16px; align-items: flex-start; text-align: left; }
.step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--brand), var(--brand-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.step-row h3 { margin: 0 0 6px; font-size: 1rem; }
.step-row p { margin: 0; color: var(--muted); font-size: 0.9rem; }

footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 22px;
}
.footer-inner a { color: var(--muted); }
.footer-inner a:hover { color: var(--brand); }

/* ---------- Modal ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 27, 46, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 16px;
}
.overlay.open { display: flex; }
.modal {
  background: var(--card);
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  padding: 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  position: relative;
}
.modal h2 { margin: 0 0 6px; font-size: 1.4rem; }
.modal .sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; }
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--muted);
}
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand); }
/* Denser variant for forms with many fields packed into one modal (e.g.
   store.html's shipping step) — same look, smaller footprint so more of
   the form fits on screen without scrolling. */
.field-compact { margin-bottom: 10px; }
.field-compact label { margin-bottom: 4px; font-size: 0.8rem; }
.field-compact input, .field-compact select { padding: 8px 10px; font-size: 0.85rem; }
.error-msg {
  background: #fee2e2;
  color: #b91c1c;
  font-size: 0.85rem;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 14px;
  display: none;
}
.error-msg.show { display: block; }
.switch-link { text-align: center; margin-top: 16px; font-size: 0.88rem; color: var(--muted); }
.switch-link button { background: none; border: none; color: var(--brand); font-weight: 600; font-size: inherit; padding: 0; }

/* ---------- Dashboard ---------- */
/* justify-content: center matters specifically for dashboard.html's 3-column
   layout (sidebar + main-panel + preview-panel): main-panel's flex:1 stops
   growing once it hits its own max-width, so on a wide viewport the three
   columns' combined width can be less than the viewport — without this,
   flex's default flex-start packs them against the left edge, leaving a
   large empty gap on the right instead of centering the group. Harmless for
   single-main-panel pages (store.html, admin.html, analytics.html), which
   already center themselves via their own margin:0 auto. */
.app-shell { display: flex; min-height: 100vh; justify-content: center; }
.sidebar {
  width: 300px;
  flex-shrink: 0;
  background: var(--card);
  border-right: 1px solid var(--border);
  padding: 24px;
  overflow-y: auto;
}
.main-panel { flex: 1; padding: 32px 40px; max-width: 720px; }
.preview-panel {
  width: 320px;
  flex-shrink: 0;
  border-left: 1px solid var(--border);
  padding: 16px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 16px;
  align-self: flex-start;
}
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.dash-header h1 { font-size: 1.3rem; margin: 0; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
}
.card h3 { margin: 0 0 14px; font-size: 1rem; }

.logo-upload { display: flex; align-items: center; gap: 14px; }
.logo-preview {
  width: 64px; height: 64px;
  border-radius: 20% !important;
  background: var(--brand-light);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.logo-preview img { width: 100%; height: 100%; object-fit: cover; border-radius: 20% !important; }
.logo-upload-actions { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.logo-upload-actions label.btn { cursor: pointer; }

.theme-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.theme-swatch {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--border);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.theme-swatch:hover { transform: scale(1.08); }
.theme-swatch.active { box-shadow: 0 0 0 2px white, 0 0 0 4px var(--brand); }
.theme-swatch-custom {
  position: relative;
  display: flex;
  background: conic-gradient(red, yellow, lime, cyan, blue, magenta, red);
  overflow: hidden;
}
.theme-swatch-custom input[type="color"] {
  position: absolute;
  inset: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0;
}

.link-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  cursor: grab;
}
.link-row.dragging { opacity: 0.4; }

.admin-shop-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
}
.admin-shop-row-name { font-weight: 700; }
.admin-shop-row-username { color: var(--muted); font-size: 0.82rem; margin-left: 6px; }
.admin-shop-row-date { flex: 0 0 auto; color: var(--muted); font-size: 0.8rem; margin-left: auto; }
.link-row .handle { color: var(--muted); font-size: 18px; }
.link-row .info { flex: 1; min-width: 0; }
.link-row .info .title { font-weight: 600; font-size: 0.92rem; }
.link-row .info .url { font-size: 0.78rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.link-row .group-tag {
  font-size: 0.72rem;
  background: var(--brand-light);
  color: var(--brand);
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}
.link-actions { display: flex; gap: 6px; }
.icon-btn {
  width: 30px; height: 30px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--muted);
}
.icon-btn:hover { background: #f3f1f9; }

.group-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f6f4fb;
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  margin: 0 6px 6px 0;
}
.group-chip button { background: none; border: none; color: var(--muted); font-size: 13px; }

.empty-state { text-align: center; padding: 30px 10px; color: var(--muted); font-size: 0.9rem; }

/* ---------- Analytics ---------- */
.analytics-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.stat-box {
  background: #f6f4fb;
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}
.stat-value { font-size: 1.4rem; font-weight: 800; color: var(--brand); line-height: 1.2; }
.stat-label { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

.analytics-chart { margin-bottom: 14px; }

.analytics-link-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.analytics-link-title {
  flex: 0 0 140px;
  font-size: 0.82rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.analytics-link-bar-track { flex: 1; height: 8px; background: #f0ebfd; border-radius: 999px; overflow: hidden; }
.analytics-link-bar { height: 100%; background: var(--brand); border-radius: 999px; }
.analytics-link-count { flex: 0 0 28px; text-align: right; font-size: 0.82rem; font-weight: 700; color: var(--muted); }

@media (max-width: 480px) {
  .analytics-stats { grid-template-columns: 1fr; }
  .analytics-link-title { flex-basis: 90px; }
}

.public-url-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6f4fb;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 10px;
}

/* preview mimic (reuses phone) */
.preview-panel .phone { width: 260px; margin-bottom: 14px; }

.qr-box {
  width: 100%;
  margin-top: 14px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.qr-box canvas {
  border-radius: 8px;
  max-width: 100%;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}
.qr-type-tabs {
  display: flex;
  width: 100%;
  background: var(--brand-light);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}
.qr-type-tab {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 7px 6px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.qr-type-tab.active {
  background: var(--brand);
  color: white;
}
.qr-type-tab[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}
.qr-type-note {
  font-size: 0.74rem;
  color: var(--muted);
  text-align: center;
  margin: 8px 0 10px;
  min-height: 1em;
}
.qr-download-note {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
}

/* ---------- Public profile page (iOS Settings-style dark glass) ---------- */
.public-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
  background: #1e293b;
  position: relative;
}
.public-page::before {
  content: '';
  position: fixed;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.public-card {
  width: 100%;
  max-width: 440px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.public-avatar {
  width: 96px; height: 96px;
  border-radius: 22%;
  overflow: hidden;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
  color: #1c1c1e;
  border: 3px solid rgba(255,255,255,0.22);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45), 0 0 20px rgba(255,255,255,0.1);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.public-avatar:hover { transform: scale(1.06); }
.public-name-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.public-name { font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.public-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.public-bio { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin-bottom: 14px; white-space: pre-wrap; line-height: 1.4; }

.public-offer-banner {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.22) 0%, rgba(225, 29, 72, 0.18) 100%);
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 12px;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px -10px rgba(249, 115, 22, 0.3);
}
.public-offer-banner:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.6);
  box-shadow: 0 14px 36px -10px rgba(249, 115, 22, 0.45);
}
.public-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f97316;
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.public-offer-text {
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.4;
  margin-bottom: 8px;
}
.public-offer-action {
  font-size: 0.8rem;
  color: #fdba74;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.public-group-label {
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 14px 0 6px;
  text-align: left;
  padding-left: 6px;
}
.public-link-group-panel {
  background: rgba(28, 28, 30, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.public-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  animation: publicFadeIn 0.45s ease forwards;
  transition: all 0.2s ease;
}
.public-link:last-child { border-bottom: none; }
.public-link:hover {
  background: rgba(255,255,255,0.08);
  padding-left: 18px;
}
.public-link:active { background: rgba(255,255,255,0.14); }
.public-link:hover .public-link-chevron {
  transform: translateX(4px);
  color: rgba(255,255,255,0.7);
}
button.public-link { width: 100%; background: none; border: none; border-bottom: 1px solid rgba(255,255,255,0.08); font: inherit; cursor: pointer; }
button.public-link:last-child { border-bottom: none; }
.public-link-icon {
  flex: 0 0 32px;
  width: 32px; height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.public-link:hover .public-link-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
.public-link-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.public-link-label { font-weight: 700; font-size: 0.96rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.public-link-sublabel { font-weight: 500; font-size: 0.78rem; color: rgba(255,255,255,0.55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.public-link-chevron { flex: 0 0 auto; display: flex; color: rgba(255,255,255,0.3); transition: transform 0.2s ease, color 0.2s ease; }
.public-empty-links { color: rgba(255,255,255,0.5); padding: 24px 0; font-size: 0.95rem; }
.public-fade-in { opacity: 0; animation: publicFadeIn 0.45s ease forwards; }
@keyframes publicFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.public-actions { margin-top: 28px; display: flex; flex-direction: row; gap: 12px; }
.public-share-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.public-share-btn:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Floating Action Bar on Mobile */
.public-floating-bar {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 400px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 999px;
  padding: 8px;
  gap: 8px;
  z-index: 90;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.public-floating-bar .public-share-btn {
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.85rem;
}
@media (max-width: 640px) {
  .public-floating-bar { display: flex; }
}

.public-powered-by {
  margin-top: 28px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  padding-bottom: 60px;
}
.public-powered-by a { color: rgba(255,255,255,0.7); font-weight: 600; text-decoration: none; }
.public-powered-by a:hover { color: #fff; text-decoration: underline; }
.not-found { color: #fff; text-align: center; padding-top: 100px; }

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(15, 23, 42, 0.92);
  color: white;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  z-index: 9999;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .phone { justify-self: start; }
  .hero-phone-photo { justify-self: start; max-width: 320px; }
  .app-shell { flex-direction: column; }
  .sidebar, .preview-panel { width: 100%; border: none; border-bottom: 1px solid var(--border); }
  .main-panel { max-width: 100%; padding: 24px; }
  #adminShopsGrid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  .logo { font-size: 1.25rem; gap: 8px; }
  .logo-mark { width: 32px; height: 32px; }
  .nav-actions { gap: 8px; }
  .nav-actions .btn { padding: 8px 14px; font-size: 0.82rem; white-space: nowrap; }
}

/* ---------- Store (store.html) ---------- */
.store-design-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px;
  margin-top: 18px;
}
.store-design-card {
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 16px;
  padding: 12px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.store-design-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.12);
}
.store-design-thumb {
  aspect-ratio: 2 / 3;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: transform 0.25s ease;
}
.store-design-card:hover .store-design-thumb {
  transform: scale(1.02);
}
.store-design-thumb-loading { color: var(--muted); font-size: 0.78rem; text-align: center; padding: 10px; }
.store-design-name { font-weight: 800; font-size: 0.92rem; margin-top: 10px; color: var(--text); }
.store-design-desc { color: var(--muted); font-size: 0.78rem; line-height: 1.4; margin-top: 4px; }
.store-design-action { margin-top: auto; padding-top: 12px; }
.store-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(76, 29, 149, 0.08);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  font-weight: 700;
}
.store-design-thumb { cursor: pointer; }
.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.preview-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 27, 46, 0.65);
}
.preview-modal-content {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  max-width: 400px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 1;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
}
.preview-modal-content .btn,
.modal-action-btn {
  padding: 14px 24px;
  font-size: 0.98rem;
  font-weight: 700;
  min-height: 48px;
  border-radius: 14px;
  letter-spacing: -0.01em;
}
.preview-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--bg);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1rem;
  z-index: 2;
}
#previewModalBody { margin-top: 20px; }
#previewModalBody img, #previewModalBody canvas {
  width: 100%;
  border-radius: 8px;
  display: block;
}
#previewModalBody .empty-state { padding: 40px 10px; }

@media (max-width: 640px) {
  .store-design-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

.store-wizard-design-thumb { height: 300px; }

/* Order wizard popup (#proKitModalOverlay): tighter padding and shorter
   design thumbnails so the whole 2-screen form is comfortably usable
   without excess scrolling on a phone-sized viewport. */
@media (max-width: 480px) {
  #proKitModalOverlay .modal { padding: 20px; }
  .store-wizard-design-thumb { height: 150px; }
}

/* ---------- Link type filter + grid (index.html) ---------- */
.link-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.link-filter-tab {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.link-filter-tab:hover { border-color: var(--brand); color: var(--brand-dark); }
.link-filter-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.link-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.link-type-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.link-type-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.link-type-card.hidden { display: none; }
.link-type-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--icon-bg, var(--brand-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.link-type-icon img { width: 22px; height: 22px; display: block; }
.link-type-info h4 { margin: 0 0 2px; font-size: 0.95rem; }
.link-type-info span { font-size: 0.78rem; color: var(--muted); }

/* ---------- Stylish Store Component Rules ---------- */
.store-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 36px;
}
@media (max-width: 860px) {
  .store-tier-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .store-tier-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .store-tier-card { padding: 16px 12px; border-radius: 16px; }
  .store-badge { font-size: 0.6rem; padding: 3px 8px; }
  .store-tier-card h2 { font-size: 1rem !important; margin: 10px 0 4px !important; }
  .store-tier-card p { font-size: 0.7rem !important; min-height: 0 !important; margin-bottom: 10px !important; }
  .store-price { font-size: 1.4rem; margin-bottom: 10px; }
  .store-price-original { font-size: 0.8rem !important; }
  .store-feature-list { font-size: 0.7rem; gap: 6px; margin-bottom: 14px; }
  .store-feature-sublist { font-size: 0.64rem; }
  .store-tier-card .btn { font-size: 0.78rem !important; min-height: 38px !important; padding: 0 8px !important; }
}

.store-tier-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  padding: 24px 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.store-tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.store-tier-card.tier-free {
  border: 2px solid rgba(100, 116, 139, 0.35);
}
.store-tier-card.tier-free:hover {
  border-color: #475569;
  box-shadow: 0 20px 45px -10px rgba(71, 85, 105, 0.25);
}
.store-tier-card.tier-basic {
  border: 2px solid rgba(2, 132, 199, 0.4);
}
.store-tier-card.tier-basic:hover {
  border-color: #0284c7;
  box-shadow: 0 20px 45px -10px rgba(2, 132, 199, 0.28);
}
.store-tier-card.tier-pro {
  background: linear-gradient(155deg, #ffffff 0%, #fdf4ff 50%, #faf5ff 100%);
  border: 2px solid #7c3aed;
  box-shadow: 0 14px 36px rgba(124, 58, 237, 0.16);
}
.store-tier-card.tier-pro:hover {
  border-color: #6d28d9;
  box-shadow: 0 20px 45px -10px rgba(124, 58, 237, 0.28);
}
.store-tier-card.tier-prime {
  background: linear-gradient(155deg, #fffbeb 0%, #fef3c7 50%, #fde68a 100%);
  border: 2px solid #f59e0b;
  box-shadow: 0 14px 36px rgba(245, 158, 11, 0.18);
}
.store-tier-card.tier-prime:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #b45309;
  box-shadow: 0 24px 50px rgba(245, 158, 11, 0.32);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-free { background: #f1f5f9; color: #475569; }
.badge-basic { background: #e0f2fe; color: #0369a1; }
.badge-pro { background: linear-gradient(135deg, #7c3aed, #4f46e5); color: #ffffff; }
.badge-prime { background: linear-gradient(135deg, #f59e0b, #b45309); color: #ffffff; }

.store-price {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1;
}
.store-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  color: var(--text);
}
.store-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.store-feature-item.has-sublist {
  align-items: flex-start;
}
.store-feature-sublist {
  margin: 3px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

