/* =========================================================
   DigiVault — Lumen Attractive v5.1
   Centered hero · Product rows · Timeline · Soft indigo accents
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f8fafc;
  --bg-2: #f1f5f9;
  --surface: #ffffff;
  --ink: #0f172a;
  --ink-2: #334155;
  --ink-3: #64748b;
  --ink-4: #94a3b8;
  --line: #e2e8f0;
  --line-2: #f1f5f9;
  --brand: #4f46e5;
  --brand-2: #6366f1;
  --brand-soft: #eef2ff;
  --brand-ring: rgba(79, 70, 229, 0.16);
  --mint: #059669;
  --mint-soft: #ecfdf5;
  --rose: #e11d48;
  --rose-soft: #fff1f2;
  --amber: #d97706;
  --amber-soft: #fffbeb;
  --sky: #0284c7;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --radius-pill: 999px;
  --shadow: 0 1px 3px rgba(15,23,42,.04), 0 4px 14px rgba(15,23,42,.04);
  --shadow-md: 0 8px 28px rgba(15,23,42,.07);
  --shadow-brand: 0 8px 24px rgba(79,70,229,.28);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --header-h: 66px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }
.container { width: min(1100px, 92%); margin-inline: auto; }
.main { min-height: 50vh; }
.inline-form { display: inline; }

/* ========== LIGHT PREMIUM NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 4px 16px rgba(15,23,42,0.03);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 28px;
}

/* Brand */
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.navbar-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(79,70,229,0.35);
}
.navbar-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.navbar-logo-text {
  font-size: 1.22rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
}

/* Links - pill style */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  padding: 5px;
  border-radius: 999px;
}
.nav-link {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 550;
  color: #475569;
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-link:hover {
  color: #0f172a;
  background: rgba(255,255,255,0.7);
}
.nav-link.active {
  background: #fff;
  color: #4f46e5;
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(15,23,42,0.08);
}

/* Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  text-decoration: none;
}
.nav-icon:hover {
  color: #4f46e5;
  background: #eef2ff;
  border-color: #c7d2fe;
}
.nav-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #4f46e5;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(79,70,229,0.4);
}

/* Buttons */
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.nav-btn-ghost {
  background: transparent;
  color: #334155;
  border: 1.5px solid #e2e8f0;
}
.nav-btn-ghost:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}
.nav-btn-soft {
  background: #eef2ff;
  color: #4f46e5;
  border: 1px solid #c7d2fe;
}
.nav-btn-soft:hover {
  background: #e0e7ff;
}
.nav-btn-primary {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  box-shadow: 0 4px 14px rgba(79,70,229,0.3);
}
.nav-btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(79,70,229,0.38);
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 11px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: #334155;
  border-radius: 2px;
  transition: 0.25s ease;
}
.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile */
@media (max-width: 900px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px 16px 18px;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 0;
    gap: 4px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
  }
  .navbar-links.open {
    display: flex;
  }
  .nav-link {
    padding: 12px 16px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  .nav-link.active {
    background: #eef2ff;
    box-shadow: none;
  }
  .nav-burger {
    display: flex;
  }
  .navbar-actions .nav-btn-ghost,
  .navbar-actions .nav-btn-soft {
    display: none;
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 42px; padding: 0 18px; border-radius: var(--radius-sm);
  font-weight: 650; font-size: 0.88rem; border: 1.5px solid transparent;
  cursor: pointer; transition: all .18s var(--ease); line-height: 1; white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-dark {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; box-shadow: var(--shadow-brand);
}
.btn-dark:hover { filter: brightness(1.06); box-shadow: 0 10px 28px rgba(79,70,229,.35); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--bg-2); border-color: #cbd5e1; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f1f5f9; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; box-shadow: var(--shadow-brand);
}
.btn-primary:hover { filter: brightness(1.06); }
.btn-secondary { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { background: var(--bg-2); }
.btn-outline { background: transparent; color: var(--brand); border-color: rgba(79,70,229,.28); }
.btn-outline:hover { background: var(--brand-soft); }
.btn-success { background: var(--mint); color: #fff; }
.btn-sm { height: 34px; padding: 0 13px; font-size: 0.8rem; border-radius: 8px; }
.btn-lg { height: 48px; padding: 0 24px; font-size: 0.95rem; border-radius: 12px; }
.btn-block { width: 100%; }

/* ========== FLASH ========== */
.flash-wrap { padding-top: 16px; }
.flash {
  padding: 13px 16px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500;
}
.flash-ok { background: var(--mint-soft); color: #047857; border: 1px solid #a7f3d0; }
.flash-err { background: var(--rose-soft); color: #be123c; border: 1px solid #fecdd3; }
.alert {
  padding: 13px 16px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500;
  border: 1px solid transparent;
}
.alert-success { background: var(--mint-soft); color: #047857; border-color: #a7f3d0; }
.alert-warning { background: var(--amber-soft); color: #b45309; border-color: #fde68a; }
.alert-info { background: var(--brand-soft); color: #4338ca; border-color: #c7d2fe; }

/* ========== HERO CENTER ========== */
.hero-center {
  padding: 92px 0 68px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% -15%, rgba(79,70,229,.11), transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(14,165,233,.06), transparent 50%),
    var(--bg);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 650; color: var(--brand);
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 18px;
  background: var(--brand-soft); padding: 6px 14px; border-radius: var(--radius-pill);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(34,197,94,.2); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,.08); }
}
.hero-title {
  font-size: clamp(2.45rem, 5.5vw, 3.65rem);
  font-weight: 800; letter-spacing: -0.045em; line-height: 1.07;
  margin-bottom: 18px; color: var(--ink);
}
.hero-lead {
  font-size: 1.12rem; color: var(--ink-3); max-width: 540px;
  margin: 0 auto 32px; line-height: 1.7;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 48px;
}
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.trust-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 22px; min-width: 170px;
  text-align: left; box-shadow: var(--shadow);
  transition: .2s var(--ease);
}
.trust-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.trust-item strong { display: block; font-size: 0.92rem; font-weight: 750; margin-bottom: 3px; }
.trust-item span { font-size: 0.8rem; color: var(--ink-3); }

/* ========== FEATURE STRIP ========== */
.feature-strip { padding: 0 0 52px; }
.feature-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 10px; box-shadow: var(--shadow);
}
.feature-pill {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 14px; border-radius: 12px; transition: .15s;
}
.feature-pill:hover { background: var(--brand-soft); }
.fp-icon {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; display: grid; place-items: center;
  font-size: 0.8rem; font-weight: 800;
  box-shadow: 0 4px 10px rgba(79,70,229,.25);
}
.feature-pill strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.feature-pill p { font-size: 0.78rem; color: var(--ink-3); margin: 0; line-height: 1.4; }

/* ========== BLOCKS ========== */
.block { padding: 60px 0; }
.block-alt { background: var(--bg-2); }
.block-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
}
.block-head.center { justify-content: center; text-align: center; }
.block-head h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 800; letter-spacing: -0.03em; margin-top: 4px;
}
.link-arrow {
  font-size: 0.9rem; font-weight: 650; color: var(--brand); transition: .15s;
}
.link-arrow:hover { color: var(--ink); }

/* ========== CATEGORY CHIPS ========== */
.cat-row { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--line);
  font-weight: 650; font-size: 0.9rem;
  box-shadow: var(--shadow); transition: all .22s var(--ease);
}
.cat-chip:hover {
  border-color: #c7d2fe; background: var(--brand-soft);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.cat-emoji { font-size: 1.2rem; }
.cat-name { color: var(--ink); }

/* ========== PRODUCT LIST ========== */
.product-list { display: flex; flex-direction: column; gap: 12px; }
.product-row {
  display: grid; grid-template-columns: 96px 1fr auto;
  gap: 20px; align-items: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: 16px 20px;
  transition: all .22s var(--ease); box-shadow: var(--shadow);
}
.product-row:hover {
  border-color: #c7d2fe; box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pr-thumb {
  width: 96px; height: 78px; border-radius: 12px;
  background: linear-gradient(145deg, #eef2ff, #e0e7ff);
  display: grid; place-items: center; position: relative; flex-shrink: 0;
}
.pr-emoji { font-size: 1.9rem; }
.pr-badge {
  position: absolute; top: -6px; left: -6px;
  background: var(--rose); color: #fff;
  font-size: 0.62rem; font-weight: 750; padding: 3px 8px; border-radius: 6px;
}
.pr-body { min-width: 0; }
.pr-cat {
  font-size: 0.7rem; font-weight: 750; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--brand); margin-bottom: 4px; display: block;
}
.pr-title {
  font-size: 1.06rem; font-weight: 750; letter-spacing: -0.02em;
  margin-bottom: 4px; color: var(--ink);
}
.pr-desc {
  font-size: 0.86rem; color: var(--ink-3);
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.pr-side {
  text-align: right; flex-shrink: 0; display: flex; flex-direction: column;
  align-items: flex-end; gap: 8px;
}
.pr-price { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.pr-old { font-size: 0.78rem; color: var(--ink-4); text-decoration: line-through; }
.pr-now { font-size: 1.12rem; font-weight: 800; color: var(--brand); }
.pr-cta {
  font-size: 0.82rem; font-weight: 650; color: var(--ink-3);
  background: var(--bg-2); padding: 6px 12px; border-radius: 8px; transition: .15s;
}
.product-row:hover .pr-cta { background: var(--brand-soft); color: var(--brand); }

/* Grid products (catalog page) */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 18px;
}
.product-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow); transition: all .25s var(--ease);
}
.product-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #c7d2fe;
}
.product-thumb {
  height: 148px; position: relative;
  background: linear-gradient(145deg, #eef2ff, #e0e7ff 50%, #dbeafe);
  display: grid; place-items: center; font-size: 2.9rem;
}
.product-thumb .badge { position: absolute; top: 12px; left: 12px; }
.product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: 0.68rem; font-weight: 750; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 6px;
}
.product-title {
  font-size: 1.02rem; font-weight: 750; letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 6px;
}
.product-title a:hover { color: var(--brand); }
.product-desc {
  font-size: 0.84rem; color: var(--ink-3); margin-bottom: 14px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-top: 14px; border-top: 1px solid var(--line-2);
}
.product-price { font-weight: 800; color: var(--ink); }
.product-price .old {
  font-size: 0.78rem; color: var(--ink-4); text-decoration: line-through;
  font-weight: 500; margin-right: 6px;
}

/* ========== TIMELINE ========== */
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative;
}
.timeline::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--brand-soft), var(--line), var(--brand-soft));
  z-index: 0;
}
.tl-step { text-align: center; padding: 0 14px; position: relative; z-index: 1; }
.tl-num {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--surface); border: 2px solid var(--line);
  display: grid; place-items: center; font-weight: 800; font-size: 1rem;
  color: var(--brand); box-shadow: var(--shadow);
  transition: .2s;
}
.tl-step:hover .tl-num {
  border-color: var(--brand); background: var(--brand-soft);
  box-shadow: 0 4px 14px rgba(79,70,229,.2);
}
.tl-step h3 { font-size: 1.02rem; font-weight: 750; margin-bottom: 6px; }
.tl-step p { font-size: 0.86rem; color: var(--ink-3); line-height: 1.5; }

/* ========== CTA BAND ========== */
.cta-band {
  margin: 20px 0 0; padding: 60px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  color: #fff;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cta-inner h2 { font-size: 1.65rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 6px; }
.cta-inner p { color: #94a3b8; font-size: 0.95rem; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ========== FOOTER ========== */
.site-footer {
  background: #fff; border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}
.footer-top {
  display: flex; justify-content: space-between; gap: 40px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.footer-brand-block { max-width: 280px; }
.footer-tag { margin-top: 12px; font-size: 0.9rem; color: var(--ink-3); line-height: 1.65; }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  font-size: 0.75rem; font-weight: 750; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--ink-4); margin-bottom: 4px;
}
.footer-col a { font-size: 0.9rem; color: var(--ink-2); transition: color .15s; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 20px;
  text-align: center; font-size: 0.84rem; color: var(--ink-3);
}

/* ========== DETAIL / CHECKOUT / DASH ========== */
.section { padding: 48px 0 64px; }
.section-header { margin-bottom: 28px; }
.section-header .label {
  display: inline-flex; height: 28px; padding: 0 12px; margin-bottom: 10px;
  border-radius: var(--radius-pill); font-size: 0.7rem; font-weight: 750;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-soft);
}
.section-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem); font-weight: 800; letter-spacing: -0.03em;
}
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px;
}
.detail-section { padding: 40px 0 72px; }
.detail-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start;
}
.detail-gallery {
  height: 360px; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(145deg, #eef2ff, #e0e7ff 50%, #dbeafe);
  display: grid; place-items: center; font-size: 5rem; box-shadow: var(--shadow);
}
.detail-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.detail-info h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 10px;
}
.detail-price { margin: 18px 0; font-size: 1.5rem; font-weight: 800; color: var(--brand); }
.detail-desc { color: var(--ink-2); margin-bottom: 24px; line-height: 1.75; }

.checkout-section, .dash-section { padding: 40px 0 72px; }
.checkout-grid {
  display: grid; grid-template-columns: 1.45fr 0.85fr; gap: 24px; align-items: start;
}
.bank-box {
  background: linear-gradient(150deg, #f8fafc, #eef2ff);
  border: 1px solid var(--line); border-radius: var(--radius); margin: 16px 0; overflow: hidden;
}
.bank-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: 0.9rem;
}
.bank-row:last-child { border-bottom: 0; }
.bank-row .label { color: var(--ink-3); font-weight: 600; min-width: 88px; }
.bank-row .value {
  font-weight: 700; display: flex; align-items: center; gap: 8px;
  text-align: right; word-break: break-all;
}
.copy-btn {
  height: 28px; padding: 0 10px; border-radius: 7px; border: 1px solid var(--line);
  background: var(--surface); color: var(--brand); font-size: 0.7rem; font-weight: 750; cursor: pointer;
}
.copy-btn:hover { background: var(--brand-soft); }
.summary-item {
  display: flex; justify-content: space-between; padding: 11px 0;
  border-bottom: 1px solid var(--line-2); font-size: 0.92rem;
}
.summary-item.total {
  border: 0; border-top: 2px solid var(--line); margin-top: 6px; padding-top: 14px; font-weight: 800;
}
.summary-item.total .val { color: var(--brand); font-size: 1.15rem; }

.filters-bar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  justify-content: space-between; margin-bottom: 24px;
}
.filter-group { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-btn {
  height: 34px; padding: 0 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: var(--surface); color: var(--ink-2);
  font-size: 0.8rem; font-weight: 650; cursor: pointer; transition: .15s;
  display: inline-flex; align-items: center; text-decoration: none;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--brand); color: #fff; border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(79,70,229,.25);
}
.search-box {
  display: flex; align-items: center; gap: 8px; height: 42px; min-width: 220px;
  padding: 0 14px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1.5px solid var(--line);
  transition: .15s;
}
.search-box:focus-within { border-color: #a5b4fc; box-shadow: 0 0 0 3px var(--brand-ring); }
.search-box input { border: 0; outline: 0; flex: 1; background: transparent; font-size: 0.9rem; }

.dash-layout { display: grid; grid-template-columns: 250px 1fr; gap: 24px; align-items: start; }
.dash-sidebar {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 18px; box-shadow: var(--shadow); position: sticky; top: calc(var(--header-h) + 16px);
}
.dash-user {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; margin-bottom: 10px; border-bottom: 1px solid var(--line-2);
}
.dash-avatar {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 0.9rem;
}
.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dash-nav a {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 12px; border-radius: 10px;
  font-size: 0.88rem; font-weight: 550; color: var(--ink-2); transition: .15s;
}
.dash-nav a:hover, .dash-nav a.active {
  background: var(--brand-soft); color: var(--brand); font-weight: 700;
}
.dash-content h2 {
  font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 20px;
}
.stat-mini-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px; margin-bottom: 24px;
}
.stat-mini {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px; text-align: center; box-shadow: var(--shadow);
}
.stat-mini .num { font-size: 1.5rem; font-weight: 800; }
.stat-mini .lbl { font-size: 0.74rem; color: var(--ink-3); font-weight: 600; margin-top: 4px; }

.data-table {
  width: 100%; border-collapse: collapse; background: var(--surface);
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); font-size: 0.88rem;
}
.data-table th {
  text-align: left; padding: 12px 16px; background: var(--bg-2);
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--ink-3); font-weight: 750; border-bottom: 1px solid var(--line);
}
.data-table td {
  padding: 13px 16px; border-bottom: 1px solid var(--line-2); vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: 0; }
.data-table tr:hover td { background: #fafbff; }
.download-btn {
  display: inline-flex; align-items: center; gap: 4px;
  height: 32px; padding: 0 12px; border-radius: 8px;
  font-size: 0.8rem; font-weight: 700; background: var(--mint-soft); color: var(--mint);
}
.download-btn.disabled { background: var(--bg-2); color: var(--ink-3); }

/* ========== FORMS / AUTH ========== */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; margin-bottom: 7px;
  font-size: 0.8rem; font-weight: 650; color: var(--ink-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; height: 44px; padding: 0 14px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink); font-size: 0.92rem;
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.form-group textarea { height: auto; min-height: 110px; padding: 12px 14px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #a5b4fc; box-shadow: 0 0 0 3px var(--brand-ring);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.file-upload {
  border: 1.5px dashed #c7d2fe; border-radius: var(--radius); padding: 32px 20px;
  text-align: center; cursor: pointer; background: #fafbff; transition: .2s;
}
.file-upload:hover { border-color: var(--brand); background: var(--brand-soft); }
.file-upload .icon { font-size: 1.8rem; margin-bottom: 8px; }

.auth-page {
  min-height: 100vh; display: grid; place-items: center; padding: 40px 16px;
  background:
    radial-gradient(ellipse 60% 40% at 50% -10%, rgba(79,70,229,.1), transparent),
    var(--bg);
}
.auth-card {
  width: min(420px, 100%);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; padding: 40px 34px; box-shadow: var(--shadow-md);
}
.auth-card .logo, .auth-card .brand { justify-content: center; margin-bottom: 24px; }
.auth-card h2 {
  text-align: center; font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 6px;
}
.auth-card .sub {
  text-align: center; color: var(--ink-3); font-size: 0.9rem; margin-bottom: 24px;
}
.auth-footer {
  text-align: center; margin-top: 20px; font-size: 0.88rem; color: var(--ink-2);
}
.auth-footer a { color: var(--brand); font-weight: 700; }

/* ========== BADGES / MISC ========== */
.badge {
  display: inline-flex; align-items: center; height: 24px; padding: 0 10px;
  border-radius: var(--radius-pill); font-size: 0.7rem; font-weight: 750;
}
.badge-primary { background: var(--brand-soft); color: var(--brand); }
.badge-danger { background: var(--rose-soft); color: var(--rose); }
.badge-success { background: var(--mint-soft); color: var(--mint); }
.badge-warning { background: var(--amber-soft); color: var(--amber); }
.badge-info { background: var(--brand-soft); color: var(--brand); }

.price-dual { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1.15; }
.price-dual .price-pkr { font-weight: 800; }
.price-dual .price-usd { font-size: 0.76em; font-weight: 600; color: var(--ink-3); }

.page-head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 20px;
}
.page-head h2 { margin: 0; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em; }
.page-head p { margin: 4px 0 0; color: var(--ink-3); font-size: 0.9rem; }

.rating-row { display: flex; align-items: center; gap: 10px; margin: 12px 0 16px; }
.stars { color: #f59e0b; font-size: 1.15rem; letter-spacing: 2px; }
.star-input { display: flex; gap: 6px; font-size: 1.7rem; cursor: pointer; }
.star-pick { color: #cbd5e1; cursor: pointer; transition: color .15s; }
.star-pick.on, .star-pick:hover { color: #f59e0b; }

.chat-shell {
  display: flex; flex-direction: column; height: min(70vh, 560px);
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow);
}
.chat-scroll { flex: 1; overflow-y: auto; padding: 18px; background: var(--bg-2); }
.chat-row { display: flex; margin-bottom: 12px; }
.chat-row.me { justify-content: flex-end; }
.chat-row.them { justify-content: flex-start; }
.chat-bubble {
  max-width: 75%; padding: 11px 14px; border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04); line-height: 1.5;
}
.chat-bubble.me {
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-bubble.them {
  background: #fff; color: var(--ink); border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}
.chat-meta { font-size: 0.7rem; opacity: .75; margin-bottom: 4px; font-weight: 600; }
.chat-attach { margin-top: 8px; max-width: 100%; max-height: 200px; border-radius: 10px; }
.chat-composer {
  display: flex; gap: 10px; align-items: flex-end;
  padding: 12px 14px; border-top: 1px solid var(--line); background: #fff;
}
.chat-composer textarea {
  width: 100%; min-height: 48px; resize: vertical; padding: 10px 12px;
  border: 1.5px solid var(--line); border-radius: 12px; outline: none; font-size: 0.9rem;
}
.chat-composer textarea:focus { border-color: #a5b4fc; box-shadow: 0 0 0 3px var(--brand-ring); }
.chat-closed {
  padding: 14px; text-align: center; color: var(--ink-3);
  border-top: 1px solid var(--line); background: #fff; font-size: 0.9rem;
}

.actions-bar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 16px; }
.stack-gap { display: flex; flex-direction: column; gap: 12px; }
.row-between {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.muted { color: var(--ink-3); }
.text-sm { font-size: 0.88rem; }
.mt-0 { margin-top: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }
.max-560 { max-width: 560px; }
.max-720 { max-width: 720px; }
.max-800 { max-width: 800px; }
.prose { line-height: 1.75; color: var(--ink-2); }
.prose h3 { color: var(--ink); margin: 18px 0 8px; font-size: 1.05rem; }
.sticky-card { position: sticky; top: calc(var(--header-h) + 16px); }
.review-card { padding: 18px; margin-bottom: 12px; }
.item-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap; padding: 14px; margin-bottom: 10px;
}
.img-receipt { max-width: 100%; max-height: 420px; border-radius: 12px; border: 1px solid var(--line); }

.pay-steps {
  padding: 16px; background: var(--bg-2); border-radius: 12px; border: 1px solid var(--line);
}
.pay-steps h4 { margin: 0 0 10px; font-size: 0.92rem; font-weight: 700; }
.pay-steps ol {
  margin: 0; padding-left: 18px; font-size: 0.86rem; line-height: 1.7; color: var(--ink-2);
}

.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--ink); color: #fff; padding: 13px 18px; border-radius: 12px;
  display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 600;
  box-shadow: var(--shadow-md); opacity: 0; transform: translateY(12px); transition: .25s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: #047857; }

.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px;
}
.step-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 18px; text-align: center; box-shadow: var(--shadow);
}
.step-num {
  width: 40px; height: 40px; margin: 0 auto 12px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; font-weight: 800; font-size: 1rem;
}
.step-card h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 6px; }
.step-card p { font-size: 0.86rem; color: var(--ink-3); }

.cat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px;
}
.cat-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 12px; text-align: center; box-shadow: var(--shadow);
  transition: all .2s var(--ease);
}
.cat-card:hover { transform: translateY(-3px); border-color: #c7d2fe; box-shadow: var(--shadow-md); }
.cat-card .icon {
  width: 48px; height: 48px; margin: 0 auto 10px; border-radius: 12px;
  background: var(--brand-soft); display: grid; place-items: center; font-size: 1.4rem;
}
.cat-card h3 { font-size: 0.88rem; font-weight: 700; }

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .feature-strip-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 24px; }
  .timeline::before { display: none; }
  .product-row { grid-template-columns: 72px 1fr; }
  .pr-side { grid-column: 2; flex-direction: row; justify-content: space-between; width: 100%; align-items: center; }
  .detail-grid, .checkout-grid, .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .detail-gallery { height: 240px; font-size: 4rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-top { flex-direction: column; }
  .hero-center { padding: 56px 0 48px; }
}
@media (max-width: 560px) {
  .feature-strip-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .trust-row { flex-direction: column; align-items: stretch; }
  .product-row { grid-template-columns: 1fr; }
  .pr-thumb { width: 100%; height: 100px; }
  .pr-side { grid-column: 1; }
}
