:root {
  --violet: #7c3aed;
  --magenta: #d946ef;
  --pink: #fb7185;
  --ink: #0c0618;
  --ink-soft: #2a1b45;
  --muted: #6d6280;
  --line: rgba(124, 58, 237, .14);
  --bg: #f4eefc;
  --card: #ffffff;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(76, 29, 149, .16);
  --grad: linear-gradient(135deg, #4c1d95 0%, #7c3aed 42%, #d946ef 76%, #fb7185 100%);
  --grad-text: linear-gradient(90deg, #7c3aed, #d946ef);
  --glass: rgba(255,255,255,.72);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; color: var(--ink); background:
  radial-gradient(1200px 500px at 10% -10%, rgba(217,70,239,.18), transparent 50%),
  radial-gradient(900px 400px at 100% 0%, rgba(124,58,237,.14), transparent 45%),
  var(--bg);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif; }
body { min-height: 100vh; }
h1, h2, h3, .display { font-family: inherit; letter-spacing: -.03em; font-weight: 800; }
a { color: var(--violet); text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.page { width: min(1180px, calc(100% - 32px)); margin: 28px auto 80px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shine { to { background-position: 200% center; } }

/* Announce */
.announce-row {
  display: flex;
  align-items: stretch;
  background: var(--ink);
  color: #f5e9ff;
}
.announce-row .announce { flex: 1; min-width: 0; background: transparent; }
.announce-row .store-today {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 700;
  color: #f5d0fe;
  white-space: nowrap;
  border-left: 1px solid rgba(245, 233, 255, .16);
}
.announce {
  background: var(--ink); color: #f5e9ff; font-size: 13px; font-weight: 600;
  letter-spacing: .04em; overflow: hidden; white-space: nowrap;
}
.announce-track { display: flex; gap: 48px; padding: 9px 0; width: max-content; animation: marquee 28s linear infinite; }
.announce-track span { display: inline-flex; gap: 10px; align-items: center; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--glass); backdrop-filter: blur(22px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 40px rgba(76,29,149,.12); }
.header-inner { width: min(1180px, calc(100% - 32px)); margin: 0 auto; display: flex; gap: 16px; align-items: center; padding: 12px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink); font-size: 1.2rem; }
.logo em { font-style: normal; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 12px; background: var(--grad); color: #fff;
  display: grid; place-items: center; font-weight: 800; box-shadow: 0 8px 20px rgba(124,58,237,.4);
}
.search-bar {
  flex: 1; display: flex; background: #fff; border-radius: 999px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(76,29,149,.06);
}
.search-bar input { flex: 1; border: 0; background: transparent; padding: 12px 18px; outline: none; }
.search-bar button {
  border: 0; background: var(--grad); color: #fff; padding: 10px 20px; margin: 4px;
  border-radius: 999px; font-weight: 700; cursor: pointer;
}
.header-actions { display: flex; gap: 8px; align-items: center; font-weight: 650; }
.header-actions a { color: var(--ink-soft); padding: 8px 10px; border-radius: 12px; display: inline-flex; align-items: center; gap: 6px; }
.header-actions a:hover { background: rgba(124,58,237,.08); }
.icon-btn { width: 42px; height: 42px; border-radius: 14px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; position: relative; color: var(--ink); }
.icon-link { position: relative; }
.count {
  position: absolute; top: -4px; right: -4px; background: #fb7185; color: #fff;
  border-radius: 99px; font-size: 10px; min-width: 18px; height: 18px;
  display: grid; place-items: center; font-weight: 800; border: 2px solid #fff;
}
.count[hidden], .tab-count[hidden] { display: none !important; }
.cat-bar {
  width: min(1180px, calc(100% - 32px)); margin: 0 auto; display: flex; gap: 6px;
  padding: 0 0 12px; font-size: 13px; font-weight: 650; overflow-x: auto;
}
.cat-bar a { color: var(--muted); padding: 7px 12px; border-radius: 999px; white-space: nowrap; }
.cat-bar a:hover, .cat-bar a.is-on { background: var(--ink); color: #fff; }
.lang-switch { display: inline-flex; background: #fff; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; font-size: 11px; font-weight: 800; letter-spacing: .04em; }
.lang-switch a { padding: 7px 11px; color: var(--muted); }
.lang-switch a.on { background: var(--ink); color: #fff; }
.dash-top .lang-switch a.on { background: var(--ink); }

/* Hero */
.hero {
  position: relative; overflow: hidden; color: #fff; border-radius: 36px;
  padding: 0; background: #16082c; box-shadow: var(--shadow); min-height: 460px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 20px; padding: 48px; align-items: center; }
.hero::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(circle at 20% 20%, rgba(217,70,239,.45), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(124,58,237,.5), transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(251,113,133,.35), transparent 28%);
  pointer-events: none;
}
.hero-copy, .hero-stage { position: relative; z-index: 1; }
.hero h1, .hero .display {
  font-size: clamp(2.2rem, 5vw, 3.7rem); margin: 10px 0 14px; line-height: 1.02; font-weight: 800;
}
.hero p { max-width: 38ch; color: #f3e8ff; font-size: 1.05rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase;
  letter-spacing: .16em; font-size: 11px; font-weight: 800; color: #fbcfe8;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-stats { display: flex; gap: 22px; margin-top: 28px; }
.hero-stats b { display: block; font-size: 1.25rem; font-family: Syne, sans-serif; }
.hero-stats span { font-size: 12px; color: #e9d5ff; }
.hero-stage { position: relative; min-height: 340px; }
.float-card {
  position: absolute; background: rgba(255,255,255,.12); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 24px; padding: 10px; width: 210px;
  color: #fff; box-shadow: 0 20px 50px rgba(0,0,0,.25); animation: float 6s ease-in-out infinite;
}
.float-card img { width: 100%; height: 150px; object-fit: cover; border-radius: 16px; }
.float-card strong { display: block; margin: 8px 6px 0; font-size: 14px; }
.float-card em { display: block; margin: 2px 6px 6px; font-style: normal; color: #fbcfe8; font-size: 13px; font-weight: 700; }
.float-card:nth-child(1) { top: 10px; left: 20px; z-index: 3; }
.float-card:nth-child(2) { top: 70px; right: 8px; z-index: 2; animation-delay: -.8s; width: 190px; }
.float-card:nth-child(3) { bottom: 8px; left: 70px; z-index: 4; animation-delay: -1.6s; width: 180px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--grad); background-size: 180% 180%; color: #fff; border: 0; border-radius: 999px;
  padding: 13px 22px; font-weight: 750; cursor: pointer; box-shadow: 0 12px 30px rgba(124,58,237,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(124,58,237,.45); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; box-shadow: none; border: 1px solid rgba(255,255,255,.25); }
.page .btn-ghost, .dash-content .btn-ghost { background: #fff; color: var(--violet); border: 1px solid var(--line); }
.btn-sm { padding: 9px 14px; font-size: 14px; box-shadow: none; }
.btn-block { width: 100%; }

.chips { display: flex; gap: 8px; flex-wrap: wrap; margin: 22px 0; }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px;
  font-weight: 650; color: var(--ink); transition: .2s;
}
.chip:hover { border-color: var(--violet); color: var(--violet); transform: translateY(-2px); }
.chip.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 12px; margin: 40px 0 18px; }
.section-title, .page-title { margin: 28px 0 16px; font-size: 1.7rem; }
.section-head .section-title { margin: 0; }

/* Category tiles */
.cat-mosaic { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin: 8px 0 12px; }
.cat-tile {
  background: #fff; border-radius: 22px; padding: 18px 16px 16px; min-height: 120px;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid transparent; box-shadow: 0 10px 30px rgba(76,29,149,.07);
  transition: .25s; color: inherit;
}
.cat-tile:hover { transform: translateY(-6px) rotate(-1deg); border-color: rgba(124,58,237,.3); }
.cat-ico { width: 44px; height: 44px; border-radius: 16px; display: grid; place-items: center; font-size: 22px; background: #f3e8ff; }
.cat-tile b { font-family: Syne, sans-serif; }

.trust-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; margin: 22px 0 8px; }
.trust-item { background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: 18px; padding: 14px 16px; }
.trust-item strong { display: block; font-size: 14px; }
.trust-item span { color: var(--muted); font-size: 12px; }

/* Products */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.product-card {
  background: var(--card); border-radius: 26px; overflow: hidden; color: inherit;
  box-shadow: 0 14px 40px rgba(59, 7, 100, .08); display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 28px 50px rgba(59, 7, 100, .16); }
.card-img { aspect-ratio: 1; background: linear-gradient(160deg, #ede9fe, #fae8ff); position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .card-img img { transform: scale(1.08); }
.card-body { padding: 14px 16px 16px; }
.card-body h3 { margin: 0 0 6px; font-size: 1.02rem; line-height: 1.25; }
.price { color: var(--violet); font-weight: 800; margin: 0; font-family: Syne, sans-serif; }
.price.xl { font-size: 2rem; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.seller-line { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; color: var(--muted); font-size: 13px; margin: 8px 0 0; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 750;
  padding: 4px 8px; border-radius: 999px; background: #f8fafc; color: var(--ink);
}
.badge-green { background: #ecfdf3; color: #166534; }
.badge-yellow { background: #fffbeb; color: #854d0e; }
.badge-none { background: #f1f5f9; color: #475569; }
.trust-badge i { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.card-tag { position: absolute; top: 12px; left: 12px; background: rgba(12,6,24,.7); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 9px; border-radius: 999px; backdrop-filter: blur(8px); }

.product-page { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: start; }
.gallery { background: #fff; border-radius: 28px; padding: 12px; box-shadow: var(--shadow); }
.gallery #mainImage { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 22px; background: #f3e8ff; }
.thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.thumb { border: 2px solid transparent; padding: 0; background: none; cursor: pointer; width: 72px; border-radius: 14px; overflow: hidden; }
.thumb.is-on, .thumb:hover { border-color: var(--violet); }
.thumb img { height: 72px; width: 72px; object-fit: cover; }

.label-like { font-weight: 700; margin: 0 0 8px; }
.image-block { margin: 8px 0 18px; }
.image-manager { display: grid; grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: 10px; margin: 8px 0 16px; }
.image-tile { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.image-tile img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: #f3e8ff; }
.image-tile .cover-flag {
  position: absolute; top: 8px; left: 8px; background: var(--grad); color: #fff;
  font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 999px;
}
.image-tile .tile-actions { display: flex; flex-direction: column; gap: 2px; padding: 6px 8px 8px; }
.linkish.danger { color: #be123c; }
.preview-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0 4px; }
.preview-row img { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; background: #f3e8ff; }

.tracker-card, .track-form-card {
  background: #fff; border-radius: 24px; padding: 20px; margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(76,29,149,.06);
}
.tracker-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.tracker-head h2 { margin: 4px 0 0; font-size: 1.35rem; }
.tracker { list-style: none; margin: 0; padding: 0; }
.tracker-step { display: grid; grid-template-columns: 28px 1fr; gap: 12px; }
.tracker-rail { display: flex; flex-direction: column; align-items: center; }
.tracker-dot {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid #d8b4fe; background: #fff;
  display: grid; place-items: center; font-size: 10px; font-weight: 800; color: #7c3aed; flex: none;
}
.tracker-step.is-done .tracker-dot { background: var(--violet, #7c3aed); border-color: var(--violet, #7c3aed); color: #fff; }
.tracker-step.is-current .tracker-dot { box-shadow: 0 0 0 4px rgba(124,58,237,.18); border-color: #7c3aed; }
.tracker-step.is-cancelled .tracker-dot { background: #be123c; border-color: #be123c; color: #fff; }
.tracker-line { width: 2px; flex: 1; min-height: 22px; background: #ede9fe; }
.tracker-step.is-done .tracker-line { background: #7c3aed; }
.tracker-copy h3 { margin: 0; font-size: 15px; }
.tracker-copy p { margin: 2px 0 14px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.tracker-step.is-upcoming .tracker-copy { opacity: .55; }
.tracker-note { margin: 4px 0 0; font-size: 13px; color: var(--muted); }
.track-page { display: grid; gap: 16px; max-width: 720px; }
.track-form-card h1 { margin: 6px 0 8px; }
.product-info { background: #fff; border-radius: 28px; padding: 28px; box-shadow: var(--shadow); }
.product-info h1 { margin: 8px 0 10px; font-size: 2rem; }
.qty-stepper { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty-stepper button { width: 42px; height: 42px; border-radius: 14px; border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 18px; }
.qty-stepper input { width: 72px; text-align: center; margin: 0; }
.qty-form { margin: 0; }
.qty-form .qty-stepper { margin: 0; }
.table .qty-stepper button { width: 36px; height: 36px; }

.product-info label, form label { display: block; font-weight: 650; margin: 12px 0; }
input, select, textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px; border-radius: 14px;
  border: 1px solid var(--line); background: #fff; outline: none; transition: border .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(124,58,237,.12); }
textarea { min-height: 90px; }

.table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(76,29,149,.06); }
.table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); background: #faf7ff; }
.table th, .table td { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.table .sn { width: 56px; white-space: nowrap; color: var(--muted); font-weight: 750; font-variant-numeric: tabular-nums; }
.table-tools { display: flex; justify-content: flex-end; margin: 0 0 12px; }
.table-search {
  width: min(100%, 340px); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 16px; background: #fff; outline: none;
}
.table-search:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(124,58,237,.12); }
.table-empty { margin: 0 0 12px; }
.row-product { display: flex; gap: 12px; align-items: center; font-weight: 650; }
.row-product img { width: 58px; height: 58px; object-fit: cover; border-radius: 14px; }
.qty { width: 72px; }
.cart-layout { display: grid; grid-template-columns: 1.4fr .7fr; gap: 20px; align-items: start; }
.cart-foot, .summary-card {
  background: #fff; border-radius: 24px; padding: 22px; box-shadow: var(--shadow);
}
.summary-card p { display: flex; justify-content: space-between; gap: 12px; margin: 10px 0; }
.summary-card .total { font-size: 1.2rem; font-weight: 800; border-top: 1px dashed var(--line); padding-top: 12px; }
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
.checkout-steps { display: flex; gap: 8px; margin-bottom: 18px; font-size: 12px; font-weight: 750; color: var(--muted); }
.checkout-steps span { padding: 6px 10px; border-radius: 999px; background: #fff; }
.checkout-steps .on { background: var(--ink); color: #fff; }

.auth-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 0; max-width: 920px; margin: 10px auto; background: #fff; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow); }
.auth-brand { background: var(--grad); color: #fff; padding: 40px 32px; display: flex; flex-direction: column; justify-content: space-between; min-height: 460px; }
.auth-brand h2 { font-size: 2.1rem; margin: 12px 0; }
.auth-card, .pay-card { max-width: 440px; margin: 24px auto; background: #fff; padding: 32px; border-radius: 28px; box-shadow: var(--shadow); }
.auth-split .auth-card { margin: 0; max-width: none; box-shadow: none; border-radius: 0; }
.auth-card.wide { max-width: 760px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.alert { padding: 12px 14px; border-radius: 14px; margin-bottom: 16px; font-weight: 600; }
.alert-success { background: #ecfdf3; color: #166534; }
.alert-danger { background: #fef2f2; color: #991b1b; }
.alert-warning { background: #fffbeb; color: #92400e; }
.muted { color: var(--muted); }
.small { font-size: 13px; }

.cta-banner {
  margin-top: 48px; border-radius: 32px; padding: 36px; color: #fff; background: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 20px; overflow: hidden; position: relative;
}
.cta-banner::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,70,239,.5), transparent 70%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin: 0 0 8px; font-size: 2rem; }

.site-footer {
  background: var(--ink); color: #efe6ff; padding: 48px 8vw 32px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px;
}
.site-footer a { color: #e9d5ff; display: block; margin: 8px 0; }
.site-footer p { color: #c4b5fd; max-width: 36ch; }
.foot-copy { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; color: #a78bfa; font-size: 13px; }

/* Dashboard */
.dash-body { display: grid; grid-template-columns: 276px 1fr; min-height: 100vh; background: #f6f1fb; }
.sidebar {
  background:
    radial-gradient(220px 160px at 0% 0%, rgba(217,70,239,.28), transparent 60%),
    radial-gradient(240px 180px at 100% 100%, rgba(124,58,237,.35), transparent 55%),
    linear-gradient(180deg, #0c0618 0%, #1a0b33 52%, #2e1065 100%);
  color: #fff; padding: 18px 12px 14px;
  display: flex; flex-direction: column; gap: 2px;
  position: sticky; top: 0; height: 100vh; overflow: hidden;
}
.sidebar-brand {
  padding: 4px 6px 16px; margin-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sidebar .logo { color: #fff; margin: 0; align-items: center; }
.sidebar .logo small {
  display: block; font-size: 11px; color: #c4b5fd; font-weight: 650;
  letter-spacing: .08em; text-transform: uppercase; font-family: Outfit, sans-serif;
  margin-top: 1px;
}
.sidebar-search {
  display: flex; align-items: center; gap: 8px;
  margin: 0 2px 10px; padding: 8px 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; color: #e9d5ff;
}
.sidebar-search svg { flex-shrink: 0; opacity: .7; }
.sidebar-search input {
  flex: 1; min-width: 0; border: 0; background: transparent;
  color: #fff; padding: 2px 0; outline: none; width: 100%;
}
.sidebar-search input::placeholder { color: #c4b5fd; }
.sidebar-search-empty { margin: 0 10px 10px; color: #c4b5fd; font-size: 13px; }
.sidebar-nav {
  display: flex; flex-direction: column; gap: 2px;
  flex: 1; min-height: 0; overflow-y: auto; padding-right: 2px;
}
.sidebar .nav-link[hidden],
.sidebar .nav-label[hidden],
.sidebar-search-empty[hidden] { display: none !important; }
.nav-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #c4b5fd; margin: 14px 10px 6px; font-weight: 800; }
.sidebar .nav-link {
  color: #e9d5ff; padding: 7px 8px; border-radius: 14px;
  display: flex; align-items: center; gap: 10px; font-weight: 650; font-size: 14px;
  border: 1px solid transparent; transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}
.nav-ico-wrap {
  width: 34px; height: 34px; border-radius: 11px; flex-shrink: 0;
  display: grid; place-items: center; background: rgba(255,255,255,.08); color: #f5d0fe;
  font-style: normal;
}
.nav-ico { display: block; }
.sidebar .nav-link:hover { background: rgba(255,255,255,.08); color: #fff; }
.sidebar .nav-link.active {
  background: rgba(255,255,255,.14); color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.sidebar .nav-link.active .nav-ico-wrap {
  background: var(--grad); color: #fff;
  box-shadow: 0 8px 18px rgba(217,70,239,.35);
}
.sidebar .nav-link.is-out { color: #f9a8d4; }
.sidebar-foot {
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: 2px;
}
.sidebar-user {
  display: flex; gap: 10px; align-items: center;
  padding: 10px; border-radius: 16px;
  background: rgba(255,255,255,.06); margin-bottom: 6px;
}
.sidebar-user .avatar { width: 38px; height: 38px; border-radius: 12px; font-size: 13px; flex-shrink: 0; }
.sidebar-user strong { display: block; font-size: 13px; line-height: 1.2; }
.sidebar-user span { font-size: 11px; color: #c4b5fd; font-weight: 650; }
.dash-top { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; background: rgba(255,255,255,.8); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 5; }
.dash-top h1 { margin: 0; font-size: 1.25rem; }
.dash-today { color: var(--muted); font-size: 13px; font-weight: 650; white-space: nowrap; }
.user-chip { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px 6px 6px; font-size: 13px; font-weight: 650; }
.user-chip .avatar { width: 32px; height: 32px; font-size: 12px; border-radius: 50%; }
.dash-content { padding: 24px; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; margin-bottom: 22px; }
.stat { background: #fff; border-radius: 20px; padding: 18px; box-shadow: 0 10px 30px rgba(76,29,149,.06); position: relative; overflow: hidden; }
.stat::after { content: ""; position: absolute; right: -20px; top: -20px; width: 90px; height: 90px; border-radius: 50%; background: var(--grad); opacity: .15; }
.stat span { color: var(--muted); font-size: 13px; }
.stat strong { display: block; font-size: 1.5rem; margin-top: 8px; font-family: Syne, sans-serif; }
.pill { background: #f3e8ff; color: #6d28d9; border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 750; }
.pill-warn { background: #fff7ed; color: #9a3412; }
.code-box { margin: 16px 0; padding: 22px; border-radius: 22px; background: var(--grad); color: #fff; text-align: center; }
.code-box strong { display: block; font-size: 2.2rem; letter-spacing: .35em; margin-top: 6px; }
.pin { letter-spacing: .4em; text-align: center; font-size: 1.5rem; }
.pin-pad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 14px 0; }
.pin-pad button { height: 52px; border-radius: 14px; border: 1px solid var(--line); background: #faf7ff; font-weight: 800; cursor: pointer; }
.inline-form { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.inline-form input, .inline-form select { width: auto; }
.linkish { background: none; border: 0; color: var(--violet); font: inherit; cursor: pointer; font-weight: 700; }
.check { display: flex; gap: 8px; align-items: center; font-weight: 500; }
.check input { width: auto; }
.seller-hero { display: flex; gap: 16px; align-items: center; background: #fff; padding: 22px; border-radius: 24px; margin-bottom: 22px; box-shadow: var(--shadow); }
.avatar { width: 64px; height: 64px; border-radius: 20px; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.3rem; }
.prose-page, .prose { background: #fff; padding: 24px; border-radius: 20px; line-height: 1.65; }
.pager { margin: 24px 0; }
.azura-pager {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  margin: 16px 0 8px;
}
.azura-pager-meta { margin: 0; color: var(--muted); font-size: 13px; font-weight: 650; }
.azura-pager-controls { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.azura-pager-size label { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 650; }
.azura-pager-size select {
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px; background: #fff;
}
.azura-pager-links { display: flex; gap: 6px; flex-wrap: wrap; }
.page-btn {
  display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px;
  padding: 0 12px; border-radius: 12px; border: 1px solid var(--line); background: #fff;
  color: var(--ink); font-weight: 750; font-size: 13px; cursor: pointer;
}
a.page-btn:hover, button.page-btn:hover { border-color: var(--violet); color: var(--violet); }
.page-btn.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.page-btn.is-off { opacity: .45; cursor: default; }
.pay-wrap { display: grid; place-items: center; }
.pay-card { width: min(420px, 100%); text-align: center; }
.pay-card h1 { margin-top: 6px; }
.pay-card .btn { margin-top: 10px; }
.pay-card form { margin: 12px 0 0; }
.empty-state { text-align: center; padding: 48px 20px; background: #fff; border-radius: 28px; }
.empty-state h2 { margin-bottom: 8px; }
.dash-top-tools { display: flex; gap: 10px; align-items: center; }
.mobile-top-tools { display: none; }
.mobile-top-tools .store-today {
  font-size: 11px;
  font-weight: 650;
  color: var(--muted);
  max-width: 46vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobile-only { display: none; }
.app-tabs { display: none; }
.drawer-backdrop { display: none; }

@media (max-width: 860px) {
  .hero-grid, .product-page, .split, .cart-layout, .auth-split, .cat-mosaic, .trust-row, .grid-2, .site-footer { grid-template-columns: 1fr; }
  .desktop-only { display: none !important; }
  .mobile-only { display: grid; }
  .mobile-top-tools { display: flex; align-items: center; gap: 8px; }
  input, select, textarea { font-size: 16px; }
  * { -webkit-tap-highlight-color: rgba(124, 58, 237, .12); }
  body.app-shell {
    min-height: 100dvh;
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
    padding-top: env(safe-area-inset-top);
  }
  .page {
    width: 100%;
    margin: 0;
    padding: 12px 14px 24px;
    animation: none;
  }
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.92);
  }
  .header-inner {
    width: 100%;
    padding: 10px 14px 12px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .logo span:not(.logo-mark) { font-size: 1.05rem; }
  .search-bar {
    display: flex !important;
    flex: 1 1 100%;
    order: 3;
    box-shadow: none;
  }
  .search-bar button { padding: 8px 14px; }
  .hero {
    border-radius: 0 0 28px 28px;
    min-height: unset;
    margin: -12px -14px 16px;
  }
  .hero-grid { padding: 22px 18px 26px; display: block; }
  .hero-stage { display: none; }
  .hero h1, .hero .display { font-size: 1.85rem; }
  .hero p { font-size: .95rem; }
  .hero-stats { gap: 14px; }
  .trust-row { gap: 8px; }
  .trust-item { padding: 12px; }
  .cat-mosaic { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card { border-radius: 16px; box-shadow: 0 6px 18px rgba(59,7,100,.08); }
  .product-card:hover { transform: none; }
  .card-body { padding: 10px 11px 12px; }
  .card-body h3 { font-size: .9rem; }
  .section-title, .page-title { font-size: 1.25rem; margin: 18px 0 12px; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 22px; border-radius: 22px; }
  .cta-banner h2 { font-size: 1.4rem; }
  .gallery, .product-info, .auth-card, .pay-card, .summary-card { border-radius: 18px; box-shadow: none; }
  .product-info { padding: 18px 16px 96px; }
  .product-info .hero-actions {
    position: fixed;
    left: 0; right: 0;
    bottom: calc(64px + env(safe-area-inset-bottom));
    z-index: 45;
    margin: 0;
    padding: 10px 14px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .product-info .hero-actions .btn { width: 100%; }
  .auth-split { margin: 0; border-radius: 20px; min-height: unset; }
  .auth-brand { min-height: unset; padding: 28px 22px; }
  .auth-split .auth-card { padding: 22px 18px 28px; }
  .table-wrap, .dash-content > .table, .page .table {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
  }
  .table-tools { display: block; }
  .table-search { width: 100%; }
  .pin-pad button { height: 48px; }
  .app-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 50;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
    border-top: 1px solid var(--line);
    padding: 6px 4px calc(8px + env(safe-area-inset-bottom));
  }
  .app-tab {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #8b7a9e;
    font-size: 10px;
    font-weight: 750;
    padding: 6px 0;
  }
  .app-tab svg { width: 22px; height: 22px; }
  .app-tab.on { color: #6d28d9; }
  .tab-count {
    position: absolute;
    top: 2px;
    right: calc(50% - 18px);
    background: #fb7185;
    color: #fff;
    font-size: 9px;
    min-width: 15px;
    height: 15px;
    border-radius: 99px;
    display: grid;
    place-items: center;
  }
  .dash-body {
    display: block;
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
  .dash-top {
    position: sticky;
    top: 0;
    padding: 10px 12px;
    gap: 10px;
  }
  .dash-top h1 { font-size: 1.05rem; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .dash-today { display: none; }
  .dash-content { padding: 14px 12px 24px; }
  .drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12,6,24,.45);
    z-index: 55;
  }
  .drawer-backdrop.show { display: block; }
  .sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: min(86vw, 320px);
    height: 100dvh;
    z-index: 60;
    transform: translateX(-105%);
    transition: transform .25s ease;
    overflow: hidden;
    flex-direction: column;
    padding-top: calc(16px + env(safe-area-inset-top));
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
  .sidebar.open { transform: none; }
}

@media (min-width: 861px) {
  .app-tabs { display: none !important; }
}

.sms-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; margin: 8px 0 28px; }
.summary-card p.muted { display: block; }
@media (max-width: 860px) { .sms-grid { grid-template-columns: 1fr; } }

.admin-home { animation: fadeUp .45s ease; }
.admin-home .section-head { margin: 28px 0 14px; }
.dash-hero {
  background: linear-gradient(135deg, #2e1065 0%, #6d28d9 55%, #c026d3 120%);
  color: #fff; border-radius: 28px; padding: 26px 24px; margin-bottom: 16px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 18px;
  position: relative; overflow: hidden;
}
.dash-hero::before, .dash-hero::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.dash-hero::before {
  left: -60px; bottom: -70px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(251,113,133,.35), transparent 70%);
}
.dash-hero::after {
  right: -40px; top: -50px; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 70%);
}
.dash-hero > * { position: relative; z-index: 1; }
.dash-hero .eyebrow { color: #f5d0fe; margin: 0 0 6px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: 12px; }
.dash-hero-pills .dash-date-pill {
  font-weight: 700;
  letter-spacing: .02em;
}
.dash-hero h2 { margin: 0 0 8px; font-size: clamp(1.35rem, 4vw, 2rem); }
.dash-hero p { margin: 0; color: #f3e8ff; max-width: 42ch; line-height: 1.5; }
.dash-hero-pills { display: flex; flex-direction: column; gap: 8px; min-width: min(220px, 100%); }
.dash-hero-pills span {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px; padding: 10px 14px; font-size: 13px; color: #f5d0fe;
}
.dash-hero-pills b { display: block; color: #fff; font-size: 1.15rem; margin-top: 2px; font-family: Syne, sans-serif; overflow-wrap: anywhere; }
.dash-alert {
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  background: #fff7ed; border: 1px solid #fed7aa; color: #9a3412;
  border-radius: 20px; padding: 16px 18px; margin-bottom: 16px;
}
.dash-alert p { margin: 4px 0 0; font-size: 14px; }
.dash-alert-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.metric {
  background: #fff; border-radius: 22px; padding: 16px 16px 14px;
  box-shadow: 0 10px 30px rgba(76,29,149,.06); text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 4px; min-height: 132px;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .15s ease;
}
a.metric:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(76,29,149,.1); }
.metric.is-hot { border-color: #fdba74; background: linear-gradient(180deg, #fff, #fff7ed); }
.metric-ico { font-size: 1.25rem; line-height: 1; }
.metric span { color: var(--muted); font-size: 12px; font-weight: 700; }
.metric strong { font-family: Syne, sans-serif; font-size: 1.55rem; letter-spacing: -.02em; overflow-wrap: anywhere; }
.metric em { font-style: normal; color: #7c3aed; font-size: 12px; font-weight: 650; margin-top: auto; }
.dash-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dash-actions a {
  background: #fff; border-radius: 18px; padding: 16px; min-height: 88px;
  box-shadow: 0 8px 24px rgba(76,29,149,.05); color: inherit;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.dash-actions a:hover { background: #faf5ff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(76,29,149,.08); }
.dash-actions b { display: block; margin-bottom: 4px; }
.dash-actions span { color: var(--muted); font-size: 13px; }
.dash-panel { background: #fff; border-radius: 24px; padding: 8px 8px 12px; box-shadow: 0 10px 30px rgba(76,29,149,.06); margin-top: 8px; }
.dash-panel .section-head { margin: 12px 16px 8px; }
.dash-panel .table { box-shadow: none; border-radius: 16px; }
.table-wrap { overflow-x: auto; }
.order-cards { display: none; }
.order-card {
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
  padding: 14px 16px; border-top: 1px solid var(--line); color: inherit;
}
.order-card:first-child { border-top: 0; }
.order-card strong { display: block; }
.order-card span { color: var(--muted); font-size: 13px; }
.order-card-meta { text-align: right; display: grid; gap: 6px; justify-items: end; flex-shrink: 0; }

@media (max-width: 1100px) {
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-actions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .dash-hero { flex-direction: column; align-items: stretch; padding: 20px 16px; border-radius: 22px; }
  .dash-hero-pills { flex-direction: row; min-width: 0; }
  .dash-hero-pills span { flex: 1; min-width: 0; }
  .metric-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .metric { min-height: 118px; padding: 14px; border-radius: 18px; }
  .metric strong { font-size: 1.3rem; }
  .dash-actions { grid-template-columns: 1fr 1fr; }
  .dash-actions a { min-height: 84px; padding: 14px; }
  .dash-actions a:hover { transform: none; }
  a.metric:hover { transform: none; }
  .dash-panel { padding: 4px 0 8px; }
  .order-cards { display: block; }
  .chip-name { display: none; }
  .user-chip { padding: 4px; }
  .user-chip .avatar { width: 34px; height: 34px; font-size: 12px; }
}

@media (max-width: 400px) {
  .dash-hero-pills { flex-direction: column; }
  .metric strong { font-size: 1.15rem; }
  .dash-actions { grid-template-columns: 1fr; }
}

.buyers-lead { margin: 0 0 16px; }
.buyer-search { display: flex; gap: 8px; margin: 0 0 8px; }
.buyer-search input {
  flex: 1; border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 16px; background: #fff; outline: none;
}
.buyer-cards { display: none; }
.buyer-card {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 18px; padding: 14px;
  box-shadow: 0 8px 24px rgba(76,29,149,.05); color: inherit; margin-bottom: 10px;
}
.buyer-card .avatar { width: 42px; height: 42px; border-radius: 14px; font-size: 13px; flex-shrink: 0; }
.buyer-card strong { display: block; }
.buyer-card span { color: var(--muted); font-size: 13px; }
.buyer-card-meta { margin-left: auto; text-align: right; display: grid; gap: 4px; flex-shrink: 0; }
.buyer-card-meta em { font-style: normal; color: #7c3aed; font-size: 12px; font-weight: 650; }
.buyer-hero {
  display: flex; gap: 16px; align-items: flex-start; flex-wrap: wrap;
  background: #fff; padding: 22px; border-radius: 24px; margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(76,29,149,.06);
}
.buyer-hero .avatar { width: 64px; height: 64px; border-radius: 20px; }
.buyer-hero-copy { flex: 1; min-width: 180px; }
.buyer-hero-copy h2 { margin: 0 0 4px; }
.buyer-hero-copy .eyebrow { margin: 0 0 4px; color: #7c3aed; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.buyer-contacts { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 10px; font-size: 14px; }
.buyer-hero-side { display: grid; gap: 10px; justify-items: end; }
.buyer-hero-side form { margin: 0; }
.buyer-stats { grid-template-columns: repeat(3, 1fr); margin-bottom: 8px; }
.buyer-stats .metric { min-height: 100px; }
.metric-date { font-size: 1.15rem !important; }
.nav-badge {
  margin-left: auto; min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: 999px; background: #fb7185; color: #fff;
  font-size: 11px; font-weight: 800; font-style: normal;
  display: inline-grid; place-items: center;
}
.notify-wrap { position: relative; }
.notify-wrap:hover .notify-drop { display: block; }
.notify-drop {
  display: none; position: absolute; right: 0; top: calc(100% + 8px); width: 280px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 18px 40px rgba(76,29,149,.16); padding: 8px; z-index: 30;
}
.notify-drop a { display: block; padding: 10px; border-radius: 12px; color: var(--ink); }
.notify-drop a:hover { background: #faf7ff; }
.notify-drop strong { display: block; font-size: 13px; }
.notify-drop span { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.notify-drop .notify-all { text-align: center; font-weight: 750; color: #7c3aed; }
.notify-list { display: grid; gap: 10px; }
.notify-row {
  display: block; background: #fff; border-radius: 18px; padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(76,29,149,.05); color: inherit;
}
.notify-row.is-new { box-shadow: 0 0 0 2px rgba(124,58,237,.18), 0 8px 24px rgba(76,29,149,.05); }
.notify-row p { margin: 6px 0; color: var(--ink-soft); }
.notify-row time { color: var(--muted); font-size: 12px; }
.how-row { margin: 28px 0 8px; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.how-grid article {
  background: #fff; border-radius: 20px; padding: 18px 16px;
  box-shadow: 0 10px 30px rgba(76,29,149,.06);
}
.how-grid b {
  display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px;
  background: var(--grad); color: #fff; font-size: 14px; margin-bottom: 10px;
}
.how-grid strong { display: block; margin-bottom: 6px; }
.how-grid span { color: var(--muted); font-size: 13px; line-height: 1.45; }
.sms-templates { margin: 12px 0 16px; border: 1px solid var(--line); border-radius: 16px; padding: 10px 14px; }
.sms-templates summary { cursor: pointer; font-weight: 750; }
.auth-forgot { margin: 0 0 12px; text-align: right; font-size: 13px; }

@media (max-width: 860px) {
  .how-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .buyer-cards { display: block; }
  .buyer-hero { padding: 16px; }
  .buyer-hero-side { width: 100%; justify-items: start; }
  .buyer-stats { grid-template-columns: 1fr 1fr; }
  .buyer-stats .metric:last-child { grid-column: 1 / -1; }
  .azura-pager { flex-direction: column; align-items: stretch; }
  .azura-pager-controls { justify-content: space-between; }
  .page-btn { min-width: 36px; height: 36px; }
}

.help-bar {
  display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; justify-content: center;
  padding: 8px 16px; background: #f5f3ff; color: #5b21b6; font-size: 13px; font-weight: 650;
  border-bottom: 1px solid rgba(124,58,237,.12);
}
.help-bar a { color: var(--violet); font-weight: 750; }
.card-pin {
  position: absolute; top: 12px; right: 12px; background: var(--grad); color: #fff;
  font-size: 11px; font-weight: 750; padding: 5px 9px; border-radius: 999px;
}
.pill-pin { background: #ede9fe; color: #5b21b6; }
.pill-low { background: #fffbeb; color: #854d0e; }
.row-actions { display: flex; flex-wrap: wrap; gap: 8px 10px; align-items: center; }
.row-actions form { margin: 0; }
.linkish {
  background: none; border: 0; padding: 0; color: var(--violet); font: inherit; font-weight: 700;
  cursor: pointer;
}
.linkish.is-danger, .btn-danger { color: #b91c1c; }
.dash-content .btn-danger, .page .btn-danger {
  background: #fff; border: 1px solid #fecaca; color: #b91c1c; box-shadow: none; margin-top: 12px;
}
.sales-filter { margin: 0 0 18px; }
.sales-dates {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: end; margin-top: 8px;
}
.sales-dates label { margin: 0; min-width: 160px; }
.sales-dates .btn { margin: 0; }
.sms-tokens { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 8px 0 4px; }
.sms-tokens > span { color: var(--muted); font-size: 12px; font-weight: 700; }
.sms-tokens .chip { cursor: pointer; border: 0; font: inherit; }
.account-menu { position: relative; }
.account-menu .menu-toggle { cursor: pointer; }
.account-panel {
  position: absolute; right: 0; top: calc(100% + 8px); z-index: 70;
  width: min(280px, 86vw); background: #fff; color: var(--ink);
  border-radius: 20px; padding: 10px; box-shadow: 0 18px 50px rgba(76,29,149,.18);
  border: 1px solid var(--line); display: grid; gap: 2px;
}
.account-panel[hidden] { display: none !important; }
.account-panel a {
  display: block; padding: 10px 12px; border-radius: 12px; color: var(--ink);
  font-weight: 650;
}
.account-panel a:hover { background: #f5f3ff; }
.account-panel-who {
  display: flex; gap: 10px; align-items: center; padding: 10px 12px 12px;
  border-bottom: 1px solid var(--line); margin-bottom: 6px;
}
.account-panel-who strong { display: block; }
.account-panel-who span { color: var(--muted); font-size: 12px; }
.account-panel-cats { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 6px; }
.account-panel-lang { padding: 8px 12px; }
body.del-open { overflow: hidden; }
.del-modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 18px; }
.del-modal[hidden] { display: none !important; }
.del-modal-backdrop { position: absolute; inset: 0; background: rgba(12,6,24,.55); }
.del-modal-card {
  position: relative; width: min(440px, 100%); background: #fff; border-radius: 24px;
  padding: 22px 22px 18px; box-shadow: 0 24px 60px rgba(12,6,24,.28);
}
.del-steps { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.del-steps span {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  font-size: 12px; font-weight: 800; background: #ede9fe; color: #6d28d9;
}
.del-steps span.on { background: var(--violet); color: #fff; }
.del-steps i { flex: 1; height: 2px; background: #ede9fe; }
.del-modal-card h2 { margin: 0 0 8px; font-size: 1.25rem; }
.del-item { font-weight: 750; color: var(--violet); margin: 0 0 12px; }
.del-pane[hidden], .del-actions [hidden] { display: none !important; }
.del-pane p { margin: 0 0 12px; color: var(--ink-soft); }
.del-pane input[type="text"] { width: 100%; margin-top: 4px; }
.del-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; margin-top: 16px; }
.del-actions .btn { margin: 0; }
.section-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; flex-wrap: wrap; }
.compose-page { padding-bottom: 12px; }
.compose-card {
  background: #fff; border-radius: 24px; padding: 20px 22px 18px;
  box-shadow: 0 16px 40px rgba(76,29,149,.08); margin-bottom: 20px;
}
.compose-card-head {
  display: flex; justify-content: space-between; gap: 16px; align-items: flex-start;
  margin-bottom: 12px;
}
.compose-card-head h2 { margin: 0 0 6px; font-size: 1.35rem; }
.compose-card-head .eyebrow { margin: 0 0 4px; color: #7c3aed; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.compose-card textarea { min-height: 110px; }
.compose-card .btn { margin-top: 8px; }
.compose-picked-pill {
  display: grid; justify-items: end; background: #f5f3ff; color: #5b21b6;
  border-radius: 16px; padding: 10px 14px; min-width: 92px;
}
.compose-picked-pill span { font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; }
.compose-picked-pill strong { font-size: 1.6rem; line-height: 1.1; }
@media (max-width: 860px) {
  .compose-card-head { flex-direction: column; }
  .compose-picked-pill { justify-items: start; }
}
.impersonate-bar {
  display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; justify-content: space-between;
  padding: 10px 18px; background: #4c1d95; color: #fff; font-size: 13px; font-weight: 650;
}
.impersonate-bar .btn { background: #fff; color: #4c1d95; box-shadow: none; }
.dash-main .impersonate-bar { border-radius: 0; }

body.in-azura-app .get-app-band { display: none !important; }
.get-app-band {
  background:
    radial-gradient(420px 220px at 10% 0%, rgba(217,70,239,.28), transparent 60%),
    radial-gradient(380px 200px at 90% 100%, rgba(124,58,237,.35), transparent 55%),
    #0c0618;
  color: #efe6ff;
  padding: 36px 8vw 40px;
}
.get-app-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr .7fr; gap: 28px; align-items: center;
}
.get-app-kicker {
  margin: 0 0 6px; font-size: 12px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: #f0abfc;
}
.get-app-copy h2 { margin: 0 0 10px; font-size: clamp(1.5rem, 3vw, 2.1rem); color: #fff; }
.get-app-copy p { color: #ddd6fe; max-width: 54ch; }
.get-app-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 8px; }
.get-app-actions .btn { margin: 0; }
.btn-ghost-light {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.28);
  box-shadow: none;
}
.get-app-meta { font-size: 13px; color: #c4b5fd; }
.get-app-phone {
  justify-self: end; width: 150px; height: 260px; border-radius: 28px;
  padding: 10px; background: linear-gradient(160deg, #2e1065, #0c0618);
  box-shadow: 0 20px 50px rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.12);
}
.get-app-screen {
  height: 100%; border-radius: 20px; display: grid; place-content: center; justify-items: center; gap: 6px;
  background: var(--grad); color: #fff; text-align: center;
}
.get-app-screen img { width: 56px; height: 56px; border-radius: 14px; }
.get-app-screen strong { font-size: 1.2rem; }
.get-app-screen em { font-style: normal; opacity: .85; font-size: 13px; }
.get-app-page { max-width: 760px; }
.get-app-hero-icon { width: 72px; height: 72px; border-radius: 18px; margin-bottom: 12px; box-shadow: var(--shadow); }
.get-app-hero h1 { margin: 0 0 10px; }
.get-app-hero .lead { font-size: 1.15rem; color: var(--ink-soft); }
.get-app-feats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0;
}
.get-app-feats div {
  background: #fff; border-radius: 20px; padding: 16px 16px 14px;
  box-shadow: var(--shadow);
}
.get-app-feats strong { display: block; margin-bottom: 6px; }
.get-app-feats p { margin: 0; color: var(--ink-soft); }
.get-app-how, .get-app-url {
  background: #fff; border-radius: 22px; padding: 20px 22px; margin: 0 0 16px;
  box-shadow: var(--shadow);
}
.get-app-how ol { margin: 0 0 12px; padding-left: 20px; }
.get-app-how li { margin: 8px 0; }
.get-app-url-row {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 12px 0;
}
.get-app-url-row code {
  flex: 1; min-width: 200px; background: #f4eefc; padding: 10px 12px; border-radius: 12px;
  overflow-wrap: anywhere;
}
.get-app-qr { display: block; margin: 12px 0 0; border-radius: 16px; background: #fff; }
@media (max-width: 860px) {
  .get-app-inner { grid-template-columns: 1fr; }
  .get-app-phone { display: none; }
  .get-app-feats { grid-template-columns: 1fr; }
}

