:root{
  --font-ui: "Segoe UI", "Inter", Arial, sans-serif;
  --font-ui-ar: "Modern Kufic", "IBM Plex Sans Arabic", "Cairo", "Tajawal", system-ui, sans-serif;
  --bg:#0b1220;
  --bg2:#0f172a;
  --card:rgba(255,255,255,0.06);
  --card2:rgba(255,255,255,0.08);
  --text:#e5e7eb;
  --muted:rgba(229,231,235,0.72);
  --border:rgba(255,255,255,0.10);
  --shadow:0 12px 30px rgba(0,0,0,0.28);
  --primary:#0B6BDE;
  --primary2:#22C7C9;
  --navy:#0A1F4A;
  --premium:#D7A63A;
  --danger:#ef4444;
  --warn:#f59e0b;
  --radius:16px;
}

:root[data-theme="light"]{
  --bg:#f7fafc;
  --bg2:#ffffff;
  --card:#ffffff;
  --card2:#ffffff;
  --text:#0f172a;
  --muted:rgba(15,23,42,0.65);
  --border:rgba(15,23,42,0.10);
  --shadow:0 10px 26px rgba(15,23,42,0.10);
  --primary:#0B6BDE;
  --primary2:#17B7C9;
  --navy:#0A1F4A;
  --premium:#C99328;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--font-ui, system-ui), -apple-system, Segoe UI, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% -10%, rgba(14,165,233,0.22), transparent 55%),
              radial-gradient(900px 700px at 90% 10%, rgba(34,199,201,0.18), transparent 55%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
img{max-width:100%;}

.container{max-width:1100px; margin:0 auto; padding:16px}

.small{font-size:12px}
.muted{color:var(--muted)}

.grid{display:flex; flex-wrap:wrap; gap:12px}
[class^="col-"]{min-width:0}
.col-12{flex:0 0 100%}
.col-11{flex:0 0 91.666%}
.col-10{flex:0 0 83.333%}
.col-9{flex:0 0 75%}
.col-8{flex:0 0 66.666%}
.col-7{flex:0 0 58.333%}
.col-6{flex:0 0 50%}
.col-5{flex:0 0 41.666%}
.col-4{flex:0 0 33.333%}
.col-3{flex:0 0 25%}
.col-2{flex:0 0 16.666%}
.col-1{flex:0 0 8.333%}
@media (max-width: 980px){
  .col-7,.col-6,.col-5,.col-4,.col-3{flex:0 0 100%}
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:14px;
  backdrop-filter: blur(10px);
}

.hero{display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.06);
  color:var(--text);
  cursor:pointer;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,0.10)}
.btn:active{transform: translateY(0px)}
.btn.primary{background: linear-gradient(135deg, rgba(11,107,222,0.96), rgba(34,199,201,0.82)); border-color: rgba(255,255,255,0.18)}
.btn.danger{background: rgba(239,68,68,0.18); border-color: rgba(239,68,68,0.35)}

.badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.06);
  font-size:12px;
  font-weight:700;
}
.badge.pill{font-weight:700}
.badge.ok{background: rgba(34,197,94,0.18); border-color: rgba(34,197,94,0.35)}
.badge.danger{background: rgba(239,68,68,0.18); border-color: rgba(239,68,68,0.35)}
.badge.warn{background: rgba(245,158,11,0.18); border-color: rgba(245,158,11,0.35)}

.notice{border-radius:14px; padding:12px; border:1px solid var(--border); background: rgba(255,255,255,0.06)}
.notice.ok{background: rgba(34,197,94,0.16); border-color: rgba(34,197,94,0.32)}
.notice.danger{background: rgba(239,68,68,0.14); border-color: rgba(239,68,68,0.30)}

.table{width:100%; border-collapse:collapse; overflow:hidden}
.table th,.table td{padding:10px 10px; border-bottom:1px solid rgba(255,255,255,0.08); text-align:start; vertical-align:top}
:root[data-theme="light"] .table th, :root[data-theme="light"] .table td{border-bottom:1px solid rgba(15,23,42,0.08)}
.table th{font-size:12px; color:var(--muted); font-weight:800}

label{display:block; font-size:12px; color:var(--muted); margin:6px 0}
input,select,textarea{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color:var(--text);
  outline:none;
}
textarea{min-height:90px; resize:vertical}

.row{display:flex; gap:10px}

/* Topbar (public) */
.topbar{position:sticky; top:0; z-index:50; backdrop-filter: blur(10px); background: rgba(2,6,23,0.55); border-bottom:1px solid rgba(255,255,255,0.08)}
:root[data-theme="light"] .topbar{background: rgba(255,255,255,0.75); border-bottom:1px solid rgba(15,23,42,0.08)}
.topbar .in{max-width:1100px; margin:0 auto; padding:10px 16px; display:flex; align-items:center; justify-content:space-between; gap:10px}
.topbar .brand{display:flex; align-items:center; gap:10px}
.topbar .brand img{width:34px; height:34px; border-radius:10px; object-fit:cover}

/* Panel layout */
.panel-layout{display:flex; min-height:100vh}
.panel-overlay{display:none}
.panel-sidebar{width:270px; flex:0 0 270px; padding:12px; border-inline-end:1px solid rgba(255,255,255,0.08); background: rgba(2,6,23,0.55); backdrop-filter: blur(12px); position:sticky; top:0; height:100vh; overflow:auto}
:root[data-theme="light"] .panel-sidebar{background: rgba(255,255,255,0.75); border-inline-end:1px solid rgba(15,23,42,0.08)}
.panel-sidebar__brand{display:flex; align-items:center; gap:10px; padding:10px; border:1px solid var(--border); border-radius:18px; background: rgba(255,255,255,0.06)}
.panel-sidebar__brand img{width:44px; height:44px; border-radius:14px}
.panel-sidebar__brand .title{font-weight:900}
.panel-sidebar__search{margin-top:10px}
.panel-nav{display:flex; flex-direction:column; gap:6px; margin-top:10px}
.panel-nav__item{display:flex; align-items:center; gap:10px; padding:10px 12px; border-radius:16px; border:1px solid transparent}
.panel-nav__item:hover{background: rgba(255,255,255,0.06)}
.panel-nav__item.active{border-color: rgba(11,107,222,0.34); background: linear-gradient(135deg, rgba(11,107,222,0.16), rgba(34,199,201,0.10)); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06)}
.panel-nav__item .ic{width:26px; text-align:center}
.panel-sidebar__foot{margin-top:12px; padding-top:10px; border-top:1px solid rgba(255,255,255,0.10)}

.panel-main{flex:1; min-width:0; display:flex; flex-direction:column}
.panel-topbar{position:sticky; top:0; z-index:40; backdrop-filter: blur(10px); background: rgba(2,6,23,0.45); border-bottom:1px solid rgba(255,255,255,0.08); padding:10px 14px; display:flex; justify-content:space-between; align-items:center; gap:10px}
:root[data-theme="light"] .panel-topbar{background: rgba(255,255,255,0.75); border-bottom:1px solid rgba(15,23,42,0.08)}
.panel-topbar__left{display:flex; align-items:center; gap:10px}
.panel-topbar__title .panel-page-title{font-weight:900}
.panel-content{padding:14px 14px 24px}

/* Sidebar collapse */
.panel-layout.is-collapsed .panel-sidebar{width:86px; flex:0 0 86px}
.panel-layout.is-collapsed .panel-sidebar__brand .txt{display:none}
.panel-layout.is-collapsed .panel-nav__item .lb{display:none}
.panel-layout.is-collapsed .panel-sidebar__search{display:none}
.panel-layout.is-collapsed .sb-collapse{transform: rotate(180deg)}
.sb-collapse{border:none; background:transparent; color:var(--text); cursor:pointer}

@media (max-width: 980px){
  .panel-sidebar{position:fixed; inset:0 auto 0 0; transform: translateX(-105%); transition: transform .2s ease; z-index:60}
  .panel-layout.is-rtl .panel-sidebar{inset:0 0 0 auto; transform: translateX(105%)}
  .panel-sidebar.is-open{transform: translateX(0)}
  .panel-overlay{display:block; position:fixed; inset:0; background: rgba(0,0,0,0.45); z-index:55; opacity:0; pointer-events:none; transition: opacity .2s ease}
  .panel-overlay.is-open{opacity:1; pointer-events:auto}
}

/* Theme toggle button becomes switch via JS */
.theme-switch{width:48px; height:28px; border-radius:999px; border:1px solid var(--border); background: rgba(255,255,255,0.10); position:relative}
.theme-switch::after{content:""; position:absolute; top:3px; left:3px; width:22px; height:22px; border-radius:999px; background: rgba(255,255,255,0.92); transition: transform .2s ease}
:root[data-theme="light"] .theme-switch::after{transform: translateX(20px)}

/* Timeline */
.timeline{display:flex; flex-direction:column; gap:10px}
.tl-item{display:flex; gap:12px; align-items:flex-start}
.tl-rail{position:relative; width:14px; flex:0 0 14px}
.tl-dot{width:10px; height:10px; border-radius:999px; border:2px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.10); position:absolute; top:4px; left:2px}
:root[data-theme="light"] .tl-dot{border-color: rgba(15,23,42,0.22); background: rgba(15,23,42,0.06)}
.tl-dot.ok{border-color: rgba(34,197,94,0.55); background: rgba(34,197,94,0.18)}
.tl-dot.warn{border-color: rgba(245,158,11,0.55); background: rgba(245,158,11,0.18)}
.tl-dot.danger{border-color: rgba(239,68,68,0.55); background: rgba(239,68,68,0.18)}
.tl-line{position:absolute; top:16px; bottom:-8px; left:6px; width:2px; background: rgba(255,255,255,0.12)}
:root[data-theme="light"] .tl-line{background: rgba(15,23,42,0.10)}
.tl-body{flex:1; min-width:0}
.tl-title{font-weight:900}
.tl-meta{font-size:12px; color:var(--muted); margin-top:2px; line-height:1.45}
.tl-time{font-size:12px; color:var(--muted); white-space:nowrap}

/* Small helpers */
.copybox{display:flex; gap:8px; align-items:center; flex-wrap:wrap}
.copybox input{flex:1; min-width:220px}
.kv{display:flex; justify-content:space-between; gap:10px; align-items:flex-start}
.kv .k{color:var(--muted); font-size:12px}
.kv .v{font-weight:800}
/* ============================================================
   UI/UX Upgrade — Patch_11_UIUX
   - Better focus states & accessibility
   - Responsive tables, chips, auth layout, KPI cards
   ============================================================ */
:root{
  --ring: rgba(14,165,233,0.25);
  --radius-sm: 12px;
  --radius-lg: 22px;
}

.container.narrow{max-width:920px}
.container.wide{max-width:1200px}

hr.sep{border:none;border-top:1px solid rgba(255,255,255,0.10); margin:14px 0}
:root[data-theme="light"] hr.sep{border-top:1px solid rgba(15,23,42,0.10)}

input:focus,select:focus,textarea:focus{
  border-color: rgba(14,165,233,0.55);
  box-shadow: 0 0 0 4px var(--ring);
  background: rgba(255,255,255,0.08);
}
:root[data-theme="light"] input:focus,
:root[data-theme="light"] select:focus,
:root[data-theme="light"] textarea:focus{
  background:#fff;
}

.btn:focus-visible{
  outline:none;
  border-color: rgba(14,165,233,0.55);
  box-shadow: 0 0 0 4px var(--ring);
}
.btn:disabled,.btn.disabled{opacity:.55; pointer-events:none; filter:saturate(.7)}

/* ============================================================
   Patch_11C_UIUX — Forms, Tabs, Sticky Actions
   ============================================================ */

.page-head{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;flex-wrap:wrap;margin-bottom:12px}
.page-head .title{font-weight:1000; font-size:18px; margin:0}
.page-head .desc{color:var(--muted); font-size:12px; margin-top:4px; line-height:1.5}
.page-head .actions{display:flex; gap:8px; flex-wrap:wrap; align-items:center}

.section{border:1px solid var(--border); background:rgba(255,255,255,0.04); border-radius:18px; padding:14px}
:root[data-theme="light"] .section{background:#fff}
.section + .section{margin-top:12px}
.section__head{display:flex; justify-content:space-between; align-items:flex-start; gap:10px; flex-wrap:wrap; margin-bottom:10px}
.section__title{font-weight:950; margin:0}
.section__hint{font-size:12px; color:var(--muted); margin-top:4px; line-height:1.5}

.table-wrap{overflow:auto; border-radius:16px; border:1px solid var(--border)}
.table-wrap .table{min-width:720px}

.tabs{display:flex; gap:8px; flex-wrap:wrap; padding:10px; border:1px solid var(--border); background:rgba(255,255,255,0.05); border-radius:18px}
:root[data-theme="light"] .tabs{background:#fff}
.tab{display:inline-flex; align-items:center; gap:8px; padding:9px 12px; border-radius:999px; border:1px solid transparent; background:transparent; color:var(--text); cursor:pointer; font-weight:800; font-size:12px}
.tab:hover{background:rgba(255,255,255,0.06)}
.tab.is-active{border-color: rgba(14,165,233,0.35); background: rgba(14,165,233,0.14)}
.tab .dot{width:8px;height:8px;border-radius:999px;background:rgba(255,255,255,0.18)}
.tab.is-active .dot{background: rgba(14,165,233,0.75)}

.form-actions{display:flex; gap:10px; flex-wrap:wrap}
.sticky-actions{position:sticky; bottom:10px; z-index:10; margin-top:14px; padding:10px; border-radius:18px; border:1px solid var(--border); background: rgba(2,6,23,0.65); backdrop-filter: blur(10px); display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap}
:root[data-theme="light"] .sticky-actions{background: rgba(255,255,255,0.85)}
.sticky-actions .left{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.sticky-actions .right{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.sticky-actions .dirty{display:none}
.sticky-actions.is-dirty .dirty{display:inline-flex}

.uploader{border:1px dashed rgba(255,255,255,0.22); border-radius:18px; padding:12px; background:rgba(255,255,255,0.04)}
:root[data-theme="light"] .uploader{border-color: rgba(15,23,42,0.18)}
.uploader .small{opacity:.85}

.img-grid{display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:10px}
@media (max-width: 980px){ .img-grid{grid-template-columns: repeat(2, minmax(0,1fr));} }
.img-tile{border:1px solid var(--border); border-radius:16px; overflow:hidden; background:rgba(255,255,255,0.04)}
.img-tile img{width:100%; height:130px; object-fit:cover; display:block}
.img-tile .pad{padding:10px}

.kpi-grid{display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:12px}
@media (max-width: 980px){ .kpi-grid{grid-template-columns: repeat(2, minmax(0,1fr));} }
.kpi{border:1px solid var(--border); background:rgba(255,255,255,0.04); border-radius:18px; padding:12px}
.kpi .k{color:var(--muted); font-size:12px; font-weight:800}
.kpi .v{font-size:18px; font-weight:1000; margin-top:6px}

.btn.sm{padding:7px 10px; border-radius:12px; font-size:13px}
.btn.block{width:100%}
.btn.ghost{background:transparent}
.btn.secondary{background: rgba(34,199,201,0.18); border-color: rgba(34,197,94,0.28)}

.page-head{display:flex; justify-content:space-between; align-items:flex-end; gap:12px; flex-wrap:wrap}
.page-title{margin:0; font-weight:950; font-size:20px; letter-spacing:-0.2px}
.page-sub{margin-top:6px; font-size:12px; color:var(--muted)}
.actions{display:flex; gap:8px; flex-wrap:wrap; align-items:center}

.chips{display:flex; gap:6px; flex-wrap:wrap; margin-top:10px}
.chip{display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:999px; border:1px solid var(--border); background: rgba(255,255,255,0.06); font-size:12px; font-weight:800}
.chip:hover{background: rgba(255,255,255,0.10)}
.chip.active{background: rgba(14,165,233,0.14); border-color: rgba(14,165,233,0.30)}

.table-wrap{overflow:auto; border-radius:var(--radius); border:1px solid rgba(255,255,255,0.08); margin-top:12px}
:root[data-theme="light"] .table-wrap{border-color: rgba(15,23,42,0.08)}
.table{min-width:820px}
.table th{
  position:sticky; top:0;
  background: rgba(2,6,23,0.60);
  backdrop-filter: blur(10px);
}
:root[data-theme="light"] .table th{background: rgba(255,255,255,0.92)}

.empty{padding:22px 10px; text-align:center; color:var(--muted)}
.empty .ic{font-size:32px; margin-bottom:6px}
.empty b{display:block; color:var(--text); margin-bottom:4px}

.code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:12px;
  line-height:1.55;
  white-space:pre-wrap;
  word-break:break-word;
  padding:12px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(0,0,0,0.18);
}
:root[data-theme="light"] .code{background: rgba(15,23,42,0.04)}

.hr{height:1px; background: rgba(255,255,255,0.10); margin:12px 0}
:root[data-theme="light"] .hr{background: rgba(15,23,42,0.10)}

.stack{display:flex; flex-direction:column; gap:10px}
.kv-grid{display:grid; grid-template-columns: repeat(2, 1fr); gap:10px}
@media(max-width:700px){ .kv-grid{grid-template-columns:1fr} }
.kv-box{padding:12px; border-radius:16px; border:1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.04)}
:root[data-theme="light"] .kv-box{background:#fff}
.kv-box .k{font-size:12px; color:var(--muted); font-weight:800}
.kv-box .v{font-weight:950; margin-top:6px}

.media{display:flex; align-items:center; gap:10px; min-width:0}
.media .thumb{width:42px; height:42px; border-radius:12px; background: rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:center; overflow:hidden; flex:0 0 42px}
.media .thumb img{width:100%; height:100%; object-fit:cover}
.media .title{font-weight:900}
.media .meta{font-size:12px; color:var(--muted); margin-top:2px}

.auth-layout{display:grid; grid-template-columns: 1.1fr 0.9fr; gap:14px}
@media(max-width:980px){ .auth-layout{grid-template-columns:1fr} }
.auth-side{min-height:420px; border-radius:var(--radius-lg); padding:16px; border:1px solid var(--border); background: radial-gradient(900px 600px at 20% 0%, rgba(14,165,233,0.25), transparent 55%), radial-gradient(700px 600px at 90% 10%, rgba(34,197,94,0.18), transparent 55%), rgba(255,255,255,0.04)}
.auth-side .brand{display:flex; align-items:center; gap:10px}
.auth-side .brand img{width:40px; height:40px; border-radius:14px}
.auth-side .brand b{font-size:16px}
.auth-side .bullet{display:flex; gap:10px; align-items:flex-start}
.auth-side .bullet .b-ic{width:30px; height:30px; border-radius:12px; background: rgba(255,255,255,0.10); display:flex; align-items:center; justify-content:center; flex:0 0 30px}
.auth-side .bullet .b-t{font-weight:900}
.auth-side .bullet .b-d{font-size:12px; color:var(--muted); margin-top:2px}

.kpi-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:12px}
@media(max-width:980px){ .kpi-grid{grid-template-columns: repeat(2, 1fr)} }
@media(max-width:520px){ .kpi-grid{grid-template-columns: 1fr} }
.kpi{padding:14px; border-radius:var(--radius); background:var(--card); border:1px solid var(--border); box-shadow:var(--shadow)}
.kpi .k{font-size:12px; color:var(--muted); font-weight:900}
.kpi .v{font-size:22px; font-weight:950; margin-top:8px; letter-spacing:-0.3px}
.kpi .m{margin-top:6px; font-size:12px; color:var(--muted)}

.dash-card-head{display:flex; justify-content:space-between; align-items:flex-start; gap:10px; flex-wrap:wrap}
.dash-card-title{font-weight:950}
.dash-card-sub{font-size:12px; color:var(--muted); margin-top:4px}
.dash-spark{height:92px; display:flex; align-items:flex-end; gap:4px; margin-top:10px}
.dash-spark i{display:block; width:10px; border-radius:8px 8px 0 0; background: rgba(14,165,233,0.35)}
.dash-spark.rev i{background: rgba(34,197,94,0.30)}


/* ============================================================
   UI/UX Upgrade — Patch_11B_UIUX
   - Panel interactions (sidebar/theme)
   - Better forms (input groups) + details cards
   ============================================================ */
.input-group{display:flex; gap:8px; align-items:center; flex-wrap:wrap}
.input-group input,.input-group select,.input-group textarea{flex:1; min-width:220px}
.icon-btn{width:44px; height:44px; border-radius:14px; border:1px solid var(--border); background: rgba(255,255,255,0.06); color:var(--text); cursor:pointer}
.icon-btn:hover{background: rgba(255,255,255,0.10)}

details.card > summary{list-style:none; cursor:pointer}
details.card > summary::-webkit-details-marker{display:none}
details.card > summary{display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap}
.details-head{display:flex; align-items:center; gap:10px; flex-wrap:wrap; min-width:0}
.details-head .title{font-weight:950}
.details-head .sub{font-size:12px; color:var(--muted)}


/* --- Storefront filters (chips + sort) --- */
.menu-filters{margin-top:10px;padding:10px}
.menu-filters-row{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap}
.menu-filters .chips{display:flex;gap:8px;flex-wrap:wrap;align-items:center}
.chip{border:1px solid var(--border);background:rgba(255,255,255,0.06);color:var(--text);padding:8px 10px;border-radius:999px;cursor:pointer;font-weight:800;font-size:12px;display:inline-flex;align-items:center;gap:6px;user-select:none}
:root[data-theme="light"] .chip{background:rgba(2,132,199,0.06)}
.chip.active{background:rgba(14,165,233,0.18);border-color:rgba(14,165,233,0.35)}
.menu-filters-actions{display:flex;gap:8px;align-items:center;flex-wrap:wrap}
#yrSortSel{min-width:200px}
@media(max-width:560px){
  #yrSortSel{min-width:100%}
  .menu-filters-actions{width:100%}
}
.menu-filters-meta{opacity:.75;margin-top:6px}

/* ============================================================
   Storefront UX — Patch_38
   - Product modal sheet + cart UI
   - Product cards + hero + sticky actions
   - Checkout steps
   ============================================================ */

/* Menu scope uses per-tenant CSS vars (set inline in store.php) */
.menu-scope{min-height:100vh; background: var(--page_bg, transparent); color: var(--text)}
.menu-scope .card{background: var(--card_bg, var(--card)); border-color: var(--border); box-shadow:none}
.menu-scope .btn{background: var(--btn_bg, rgba(255,255,255,0.06))}
.menu-scope input,.menu-scope select,.menu-scope textarea{background: var(--field_bg, rgba(255,255,255,0.06))}

/* Hero */
.menu-hero{position:relative; overflow:hidden; padding:14px}
.menu-hero-bg{position:absolute; inset:0; background-image: var(--hero_img); background-size:cover; background-position:center; filter: blur(14px) saturate(1.1); transform: scale(1.1)}
.menu-hero-bg::after{content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(2,6,23,0.62), rgba(2,6,23,0.78))}
.menu-hero-top{position:relative; z-index:1; display:flex; justify-content:space-between; align-items:flex-start; gap:12px; flex-wrap:wrap}
.menu-hero-brand{display:flex; align-items:center; gap:12px; min-width:0}
.menu-logo{width:52px; height:52px; border-radius:18px; border:1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.08)}
.menu-title{font-weight:1000; letter-spacing:-0.3px}
.menu-chips{display:flex; gap:6px; flex-wrap:wrap; margin-top:6px}

/* Categories (open-mode) */
.cat-cards{display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:12px; margin-top:12px}
@media(max-width:980px){ .cat-cards{grid-template-columns: repeat(2, minmax(0,1fr));} }
@media(max-width:520px){ .cat-cards{grid-template-columns: 1fr;} }
.cat-card{padding:14px; cursor:pointer; transition: transform .08s ease, background .15s ease}
.cat-card:hover{transform: translateY(-1px)}

/* Product cards */
.products-grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px}
@media(max-width:980px){ .products-grid{grid-template-columns: repeat(2, minmax(0,1fr))} }
@media(max-width:560px){ .products-grid{grid-template-columns: 1fr} }
.product-card{cursor:pointer}
.product-row{display:flex; gap:12px; align-items:flex-start}
.product-thumb{width:96px; height:96px; border-radius:18px; overflow:hidden; border:1px solid var(--border); background: rgba(255,255,255,0.06); flex:0 0 96px}
.product-thumb img{width:100%; height:100%; object-fit:cover; display:block}
.product-info{flex:1; min-width:0}
.product-meta{display:flex; justify-content:space-between; gap:10px}
.product-meta h4{margin:0; font-size:15px; font-weight:950; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.product-desc{margin-top:6px; line-height:1.5; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden}
.product-badges{display:flex; flex-wrap:wrap; gap:6px; margin-top:8px}
.badge.badge-hi{font-weight:900}
.badge.badge-meta{opacity:.92}
.badge.new{background: rgba(14,165,233,0.18); border-color: rgba(14,165,233,0.35)}
.badge.hot{background: rgba(245,158,11,0.18); border-color: rgba(245,158,11,0.35)}
.badge.chef{background: rgba(168,85,247,0.18); border-color: rgba(168,85,247,0.35)}
.badge.veg{background: rgba(34,197,94,0.18); border-color: rgba(34,197,94,0.35)}
.badge.gf{background: rgba(56,189,248,0.18); border-color: rgba(56,189,248,0.35)}
.badge .badge-text{max-width:120px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}

/* Sticky order actions */
.sticky-cart,.sticky-wa{
  position:fixed; inset:auto 16px 16px auto;
  z-index:60;
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(2,6,23,0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
}
.sticky-wa{inset:auto 16px 70px auto}
.sticky-cart.disabled,.sticky-wa.disabled{opacity:.55; pointer-events:none}
.sticky-cart-ic,.sticky-wa-ic{width:30px; height:30px; border-radius:14px; display:flex; align-items:center; justify-content:center; background: rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12)}
.ic-svg{width:18px; height:18px; display:block; opacity:.92}
.sticky-cart-badge,.sticky-wa-badge{min-width:24px; height:24px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; font-weight:950; background: rgba(14,165,233,0.18); border:1px solid rgba(14,165,233,0.35)}

/* Modal sheet */
.yr-sheet-overlay{position:fixed; inset:0; background: rgba(0,0,0,0.55); display:flex; align-items:flex-end; justify-content:center; padding:16px; z-index:9999}
.yr-sheet{width: min(720px, 100%); max-height: calc(100vh - 32px); border-radius: 24px; overflow:hidden; border:1px solid var(--border); background: rgba(2,6,23,0.86); backdrop-filter: blur(12px); display:flex; flex-direction:column}
:root[data-theme="light"] .yr-sheet{background: rgba(255,255,255,0.92)}
.yr-sheet-header{display:flex; align-items:center; justify-content:space-between; gap:10px; padding:12px; border-bottom:1px solid var(--border)}
.yr-sheet-titlewrap{min-width:0}
.yr-sheet-title{font-weight:1000; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.yr-sheet-sub{font-size:12px; color:var(--muted); margin-top:2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.yr-sheet-btn{width:44px; height:44px; border-radius:16px; border:1px solid var(--border); background: rgba(255,255,255,0.06); color:var(--text); cursor:pointer}
.yr-sheet-btn:hover{background: rgba(255,255,255,0.10)}
.yr-sheet-body{padding:12px; overflow:auto}

/* Product modal */
.yr-prod{display:flex; flex-direction:column; gap:10px}
.yr-prod-media{position:relative; border-radius:18px; overflow:hidden; border:1px solid var(--border); background: rgba(255,255,255,0.06)}
.yr-prod-media img{width:100%; height:260px; object-fit:cover; display:block}
@media(max-width:560px){ .yr-prod-media img{height:220px} }
.yr-prod-nav{position:absolute; top:50%; transform: translateY(-50%); width:42px; height:42px; border-radius:16px; border:1px solid rgba(255,255,255,0.16); background: rgba(2,6,23,0.55); color:#fff; cursor:pointer}
.yr-prod-nav.prev{left:10px}
.yr-prod-nav.next{right:10px}
.yr-prod-thumbs{display:flex; gap:8px; overflow:auto; padding:10px; background: rgba(0,0,0,0.10)}
.yr-prod-thumb{border:1px solid rgba(255,255,255,0.14); background: transparent; padding:0; border-radius:14px; overflow:hidden; cursor:pointer; flex:0 0 auto}
.yr-prod-thumb img{width:56px; height:56px; object-fit:cover; display:block}
.yr-prod-thumb.active{outline:2px solid rgba(14,165,233,0.55)}

.yr-prod-head{display:flex; justify-content:space-between; align-items:flex-start; gap:10px}
.yr-prod-title .h3{font-weight:1000; font-size:18px}
.yr-prod-title .small{color:var(--muted); margin-top:4px; line-height:1.5; white-space:pre-wrap}
.yr-prod-price{display:flex; align-items:center; gap:8px}
.yr-prod-chips{display:flex; gap:6px; flex-wrap:wrap}
.yr-prod-sec{border:1px solid var(--border); border-radius:18px; padding:10px; background: rgba(255,255,255,0.04)}
.yr-prod-sec summary{font-weight:950}

/* Options */
.yr-optg .small{color:var(--muted)}
.yr-opt-list{display:flex; flex-direction:column; gap:8px; margin-top:10px}
.yr-opti{display:flex; justify-content:space-between; align-items:center; gap:10px; padding:10px; border:1px solid rgba(255,255,255,0.10); border-radius:16px; background: rgba(255,255,255,0.04)}
.yr-opti:hover{background: rgba(255,255,255,0.08)}
.yr-opti .row{align-items:center}
.yr-opti input{width:auto}

.yr-size-grid{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px; margin-top:10px}
@media(max-width:520px){ .yr-size-grid{grid-template-columns: 1fr} }
.yr-size-item{display:flex; align-items:center; gap:10px; padding:10px; border:1px solid rgba(255,255,255,0.10); border-radius:16px; background: rgba(255,255,255,0.04); cursor:pointer}
.yr-size-item:hover{background: rgba(255,255,255,0.08)}
.yr-size-item input{width:auto}
.yr-size-item .mid{min-width:0}
.yr-size-item .nm{font-weight:900; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}

/* Actions */
.yr-prod-actions{display:flex; gap:10px; align-items:center; justify-content:space-between; margin-top:4px}
.yr-prod-qty{display:flex; gap:8px; align-items:center}
.yr-prod-qty .btn{width:44px; height:44px; padding:0}

/* Related */
.yr-related{margin-top:12px}
.yr-related-head{display:flex; justify-content:space-between; align-items:baseline; gap:10px; margin-bottom:8px}
.yr-related-grid{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px}
@media(min-width:760px){ .yr-related-grid{grid-template-columns: repeat(3, minmax(0,1fr))} }
.yr-related-item{display:flex; gap:10px; align-items:center; text-align:start; padding:10px; border-radius:18px; border:1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.04); cursor:pointer}
.yr-related-item:hover{background: rgba(255,255,255,0.08)}
.yr-related-thumb{width:52px; height:52px; border-radius:16px; overflow:hidden; border:1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); flex:0 0 52px}
.yr-related-thumb img{width:100%; height:100%; object-fit:cover; display:block}
.yr-related-mid{min-width:0; flex:1}
.yr-related-name{font-weight:950; font-size:13px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.yr-related-price{font-size:12px; color:var(--muted); margin-top:4px}

/* Cart (checkout mount) */
.yr-cart{padding:12px}
.yr-cart .yr-cart-row{justify-content:space-between; align-items:flex-start; gap:10px; padding:10px; border-radius:18px; border:1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.04); margin-top:10px}
.yr-cart .yr-cart-row:first-child{margin-top:0}
.yr-cart .yr-cart-row .thumb{width:54px; height:54px; border-radius:18px; overflow:hidden; border:1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.06); flex:0 0 54px}
.yr-cart .yr-cart-row .thumb img{width:100%; height:100%; object-fit:cover; display:block}

/* SYP mini pair */
.yr-syp-mini{display:inline-flex; flex-direction:column; gap:2px}
.yr-syp-line{display:inline-flex; align-items:baseline; gap:6px}
.yr-syp-line.sub{opacity:.7}
.yr-syp-num{font-weight:950}
.yr-syp-tag{font-size:11px; color:var(--muted)}

/* Checkout stepper */
.checkout-scope .yr-steps{display:flex; gap:8px; flex-wrap:wrap; margin:14px 0}
.yr-step-pill{display:inline-flex; align-items:center; gap:8px; padding:10px 12px; border-radius:999px; border:1px solid var(--border); background: rgba(255,255,255,0.06); cursor:pointer; font-weight:900}
.yr-step-pill .n{width:26px; height:26px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; border:1px solid var(--border); background: rgba(255,255,255,0.06)}
.yr-step-pill.is-active{background: rgba(14,165,233,0.16); border-color: rgba(14,165,233,0.35)}
.yr-step-pill.is-done{opacity:.85}

.yr-step{display:none}
.yr-step.is-active{display:block}

.yr-checkout-nav{display:flex; align-items:center; gap:10px; margin-top:14px}

.yr-quote-grid{display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:10px; margin-top:12px}
@media(max-width:980px){ .yr-quote-grid{grid-template-columns: repeat(2, minmax(0,1fr))} }

/* ============================================================
   Auth Mega UX — OTP boxes + premium auth surfaces
   ============================================================ */
.otp{position:relative}
.otp .otp-hidden{position:absolute; inset:0; opacity:0; pointer-events:auto; width:100%; height:56px}
.otp .otp-boxes{display:flex; gap:10px; justify-content:center; align-items:center; padding:10px; border-radius:18px; border:1px solid var(--border); background: rgba(255,255,255,0.06); min-height:56px}
.otp .otp-box{width:46px; height:46px; border-radius:14px; border:1px solid rgba(255,255,255,0.16); background: rgba(2,6,23,0.25); display:flex; align-items:center; justify-content:center; font-size:18px; font-weight:950; letter-spacing:1px; box-shadow: 0 8px 20px rgba(0,0,0,0.22)}
:root[data-theme="light"] .otp .otp-box{background:#fff; border-color: rgba(15,23,42,0.10); box-shadow: 0 10px 26px rgba(15,23,42,0.10)}
.otp .otp-box.is-active{border-color: rgba(14,165,233,0.55); box-shadow: 0 0 0 4px rgba(14,165,233,0.18), 0 10px 22px rgba(0,0,0,0.24)}
@media(max-width:520px){
  .otp .otp-boxes{gap:8px}
  .otp .otp-box{width:42px; height:42px}
}

/* ============================================================
   Patch_54_MegaUI — Panel/Admin + Landing + Storefront polish
   ============================================================ */

:root{
  --ring: rgba(14,165,233,0.22);
  --shadow-sm: 0 8px 18px rgba(0,0,0,0.18);
  --shadow-md: 0 14px 32px rgba(0,0,0,0.26);
  --shadow-xl: 0 26px 70px rgba(0,0,0,0.42);
  --radius-sm: 12px;
  --radius-lg: 20px;
}
:root[data-theme="light"]{ --ring: rgba(2,132,199,0.18); }

/* ---- Panel/Admin shell improvements ---- */
.panel-sidebar{box-shadow: inset -1px 0 0 rgba(255,255,255,0.06);}
:root[data-theme="light"] .panel-sidebar{box-shadow: inset -1px 0 0 rgba(15,23,42,0.06);}

.panel-sidebar__brand{position:relative; overflow:hidden}
.panel-sidebar__brand::after{content:""; position:absolute; inset:-40px -80px auto auto; width:180px; height:180px; background: radial-gradient(circle at 30% 30%, rgba(14,165,233,0.22), transparent 55%), radial-gradient(circle at 70% 70%, rgba(34,199,201,0.18), transparent 60%); transform: rotate(18deg); pointer-events:none}
.panel-sidebar__brand img{box-shadow: 0 10px 26px rgba(0,0,0,0.20)}

.panel-nav__item{position:relative; transition: background .15s ease, border-color .15s ease, transform .08s ease}
.panel-nav__item:hover{transform: translateY(-1px)}
.panel-nav__item .ic{width:34px; height:34px; border-radius:14px; display:flex; align-items:center; justify-content:center; background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.10)}
:root[data-theme="light"] .panel-nav__item .ic{background: rgba(15,23,42,0.04); border-color: rgba(15,23,42,0.08)}
.panel-nav__item.active{background: linear-gradient(135deg, rgba(14,165,233,0.16), rgba(34,197,94,0.10)); border-color: rgba(14,165,233,0.34)}
.panel-nav__item.active::before{content:""; position:absolute; inset:8px auto 8px 8px; width:4px; border-radius:999px; background: linear-gradient(180deg, rgba(14,165,233,1), rgba(34,197,94,0.85));}
.panel-layout.is-rtl .panel-nav__item.active::before{inset:8px 8px 8px auto}

.panel-topbar{box-shadow: 0 10px 28px rgba(0,0,0,0.12)}
.panel-topbar__right{display:flex; align-items:center; gap:8px}
.btn.icon{padding:10px; width:42px; height:42px; border-radius:14px}
.btn.kbd{font-weight:900; font-size:12px; opacity:.9}

/* Tooltips in collapsed sidebar */
.panel-layout.is-collapsed .panel-nav__item{justify-content:center}
.panel-layout.is-collapsed .panel-nav__item .ic{margin-inline:0}
.panel-layout.is-collapsed .panel-nav__item::after{content: attr(data-tip); position:absolute; inset:auto auto 50% 92px; transform: translateY(50%); background: rgba(2,6,23,0.82); color:#fff; border:1px solid rgba(255,255,255,0.12); padding:8px 10px; border-radius:12px; font-size:12px; white-space:nowrap; opacity:0; pointer-events:none; transition: opacity .12s ease}
.panel-layout.is-rtl.is-collapsed .panel-nav__item::after{inset:auto 92px 50% auto}
.panel-layout.is-collapsed .panel-nav__item:hover::after{opacity:1}
:root[data-theme="light"] .panel-layout.is-collapsed .panel-nav__item::after{background: rgba(255,255,255,0.95); color: #0b1320; border-color: rgba(15,23,42,0.10)}

/* Command palette */
.cmdk{position:fixed; inset:0; z-index:120; display:none}
.cmdk.is-open{display:block}
.cmdk__overlay{position:absolute; inset:0; background: rgba(0,0,0,0.55)}
.cmdk__panel{position:relative; width:min(720px, calc(100% - 24px)); margin: 9vh auto 0 auto; border-radius: 22px; border:1px solid rgba(255,255,255,0.12); background: rgba(2,6,23,0.82); backdrop-filter: blur(14px); box-shadow: var(--shadow-xl); overflow:hidden}
:root[data-theme="light"] .cmdk__panel{background: rgba(255,255,255,0.95); border-color: rgba(15,23,42,0.10)}
.cmdk__head{display:flex; align-items:center; gap:10px; padding:12px; border-bottom:1px solid rgba(255,255,255,0.10)}
:root[data-theme="light"] .cmdk__head{border-bottom-color: rgba(15,23,42,0.08)}
.cmdk__head input{background: transparent; border:1px solid rgba(255,255,255,0.12); border-radius: 16px; padding:12px 14px; font-weight:800}
:root[data-theme="light"] .cmdk__head input{border-color: rgba(15,23,42,0.10)}
.cmdk__kbd{margin-inline-start:auto; display:flex; gap:8px; align-items:center; color:var(--muted); font-size:12px}
.cmdk__list{max-height: 52vh; overflow:auto; padding:10px}
.cmdk__item{display:flex; gap:10px; align-items:center; padding:10px 12px; border-radius:16px; border:1px solid transparent; cursor:pointer}
.cmdk__item:hover{background: rgba(255,255,255,0.06)}
:root[data-theme="light"] .cmdk__item:hover{background: rgba(15,23,42,0.04)}
.cmdk__item.is-active{border-color: rgba(14,165,233,0.35); background: rgba(14,165,233,0.12)}
.cmdk__item .i{width:34px; height:34px; border-radius:14px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.06)}
:root[data-theme="light"] .cmdk__item .i{background: rgba(15,23,42,0.04); border-color: rgba(15,23,42,0.08)}
.cmdk__item .t{font-weight:950}
.cmdk__item .s{margin-inline-start:auto; color:var(--muted); font-size:12px}

/* ---- Landing (marketing) ---- */
.container.narrow{max-width:920px}

.landing{min-height:100vh}
.landing .wrap{max-width:1180px; margin:0 auto; padding: 16px}
.landing-top{position:sticky; top:0; z-index:80}
.landing-top .bar{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:12px 16px; border-bottom:1px solid rgba(255,255,255,0.10); background: rgba(2,6,23,0.55); backdrop-filter: blur(14px)}
:root[data-theme="light"] .landing-top .bar{background: rgba(255,255,255,0.78); border-bottom-color: rgba(15,23,42,0.08)}
.landing-top .brand{display:flex; align-items:center; gap:12px; min-width:0}
.landing-top .brand .logo img{width:42px; height:42px; border-radius:14px; object-fit:cover; border:1px solid rgba(255,255,255,0.14)}
:root[data-theme="light"] .landing-top .brand .logo img{border-color: rgba(15,23,42,0.10)}
.landing-top .brand .t{display:flex; flex-direction:column; line-height:1.15; min-width:0}
.landing-top .brand .t b{font-weight:1000; letter-spacing:-0.2px}
.landing-top .brand .t span{font-size:12px; color:var(--muted)}

.lnav{position:relative; display:flex; align-items:center; gap:10px}
.lnav-burger{display:none}
.lnav-links{display:flex; align-items:center; gap:8px; flex-wrap:wrap}
.lnav-links a{padding:8px 10px; border-radius:999px; border:1px solid transparent; font-weight:800; font-size:12px; color:var(--muted)}
.lnav-links a:hover{background: rgba(255,255,255,0.06); color:var(--text)}
.lnav-links a.ghost{border-color: rgba(255,255,255,0.12); color:var(--text)}
.lnav-links a.cta{background: linear-gradient(135deg, rgba(11,107,222,0.96), rgba(34,199,201,0.82)); color:#fff; border-color: rgba(255,255,255,0.20)}
.lnav-links .lang-pill{border:1px solid rgba(255,255,255,0.12); padding:8px 10px; border-radius:999px; font-weight:950; font-size:12px}
:root[data-theme="light"] .lnav-links a:hover{background: rgba(15,23,42,0.04)}
:root[data-theme="light"] .lnav-links a.ghost{border-color: rgba(15,23,42,0.10)}
:root[data-theme="light"] .lnav-links .lang-pill{border-color: rgba(15,23,42,0.10)}

@media(max-width: 980px){
  .lnav-burger{display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:14px; border:1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); color: var(--text)}
  :root[data-theme="light"] .lnav-burger{border-color: rgba(15,23,42,0.10); background: rgba(15,23,42,0.04)}
  .lnav-links{position:absolute; top:64px; inset-inline-end:16px; width:min(420px, calc(100% - 32px)); display:none; flex-direction:column; align-items:stretch; padding:10px; border-radius:18px; border:1px solid rgba(255,255,255,0.12); background: rgba(2,6,23,0.78); backdrop-filter: blur(12px); box-shadow: var(--shadow-md)}
  :root[data-theme="light"] .lnav-links{background: rgba(255,255,255,0.95); border-color: rgba(15,23,42,0.10)}
  .lnav.is-open .lnav-links{display:flex}
  .lnav-links a{justify-content:center}
}

.landing-hero{position:relative; padding: 22px 0 8px 0}
.landing-hero .hero-bg{position:absolute; inset:-40px -20px auto -20px; height: 520px; pointer-events:none}
.landing-hero .blob{position:absolute; width:260px; height:260px; border-radius: 999px; filter: blur(36px); opacity:.7}
.landing-hero .blob.b1{left:-40px; top:10px; background: rgba(14,165,233,0.26)}
.landing-hero .blob.b2{right:-60px; top:40px; background: rgba(34,197,94,0.18)}
.landing-hero .blob.b3{left:30%; top:140px; background: rgba(245,158,11,0.12)}
.landing-hero .gridlines{position:absolute; inset:0; background-image: linear-gradient(to right, rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 48px 48px; opacity:.10; mask-image: radial-gradient(circle at 30% 30%, black 0%, transparent 70%)}
:root[data-theme="light"] .landing-hero .gridlines{background-image: linear-gradient(to right, rgba(15,23,42,0.08) 1px, transparent 1px), linear-gradient(to bottom, rgba(15,23,42,0.08) 1px, transparent 1px)}

.landing-hero .grid{align-items:stretch}
.landing-hero .kicker{display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:999px; border:1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); font-weight:900; font-size:12px}
:root[data-theme="light"] .landing-hero .kicker{border-color: rgba(15,23,42,0.10); background: rgba(15,23,42,0.04)}
.landing-hero .h1{font-size:40px; font-weight:1000; letter-spacing:-0.6px; line-height:1.12; margin-top:14px}
@media(max-width: 980px){ .landing-hero .h1{font-size:34px} }
@media(max-width: 560px){ .landing-hero .h1{font-size:30px} }
.landing-hero .hero-plus{display:inline-flex; width:32px; height:32px; border-radius:12px; align-items:center; justify-content:center; background: rgba(14,165,233,0.16); border:1px solid rgba(14,165,233,0.28)}
.landing-hero .hero-subline{display:block; margin-top:10px; font-size:16px; color:var(--muted); font-weight:700}
.landing-hero .lead{margin: 12px 0 0 0; color:var(--muted); line-height:1.75; font-size:15px; max-width: 720px}

.landing-hero .btns{margin-top:16px; display:flex; gap:10px; flex-wrap:wrap}
.lbtn{display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:12px 14px; border-radius: 18px; border:1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); font-weight:900}
.lbtn:hover{background: rgba(255,255,255,0.10); transform: translateY(-1px)}
.lbtn.primary{background: linear-gradient(135deg, rgba(11,107,222,0.96), rgba(34,199,201,0.82)); border-color: rgba(255,255,255,0.20); color:#fff}

.hero-stats{margin-top:16px; display:flex; gap:10px; flex-wrap:wrap}
.hero-stats .stat{flex: 1 1 140px; border:1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); border-radius: 18px; padding:10px 12px}
.hero-stats .stat b{font-size:20px; font-weight:1000}
.hero-stats .stat span{display:block; margin-top:4px; font-size:12px; color:var(--muted); font-weight:700}

.trust{margin-top:12px; display:flex; gap:8px; flex-wrap:wrap}
.trust .pill, .landing .pill{display:inline-flex; align-items:center; gap:8px; padding:8px 10px; border-radius:999px; border:1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); font-weight:850; font-size:12px}

.mock{border:1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); border-radius: 22px; overflow:hidden; box-shadow: var(--shadow-md)}
.mock .top{display:flex; align-items:center; justify-content:space-between; padding:12px 14px; border-bottom:1px solid rgba(255,255,255,0.10)}
.mock .dots{display:flex; gap:6px}
.mock .dots i{width:10px; height:10px; border-radius:999px; background: rgba(255,255,255,0.20)}
.mock .screen{padding:14px; display:flex; flex-direction:column; gap:10px}
.cardx{border:1px solid rgba(255,255,255,0.12); background: rgba(2,6,23,0.35); border-radius: 18px; padding:12px}
:root[data-theme="light"] .cardx{background: rgba(15,23,42,0.04); border-color: rgba(15,23,42,0.10)}
.cardx b{font-weight:1000}
.cardx .row{display:flex; justify-content:space-between; color:var(--muted); font-size:12px; margin-top:8px}

/* Landing sections */
.landing .section{margin-top:18px}
.sec-head{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap}
.sec-head h2{margin:0; font-weight:1000; letter-spacing:-0.3px}
.sec-head .small{color:var(--muted)}

.vgrid,.fgrid,.tgrid,.client-grid,.price-grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px; margin-top:12px}
@media(max-width: 980px){ .vgrid,.fgrid,.tgrid,.client-grid,.price-grid{grid-template-columns: repeat(2, minmax(0,1fr));} }
@media(max-width: 560px){ .vgrid,.fgrid,.tgrid,.client-grid,.price-grid{grid-template-columns: 1fr;} }

.vcard,.fcard,.tcard,.rcard,.pcard,.contact-card,.sum-card{border:1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); border-radius: 22px; padding:14px; box-shadow: var(--shadow-sm)}
:root[data-theme="light"] .vcard,:root[data-theme="light"] .fcard,:root[data-theme="light"] .tcard,:root[data-theme="light"] .rcard,:root[data-theme="light"] .pcard,:root[data-theme="light"] .contact-card,:root[data-theme="light"] .sum-card{background:#fff; border-color: rgba(15,23,42,0.10)}

.vicon{width:44px; height:44px; border-radius:16px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,0.12); background: rgba(14,165,233,0.14)}
.vmini{margin-top:8px; color:var(--muted); line-height:1.6; font-size:13px}

.clients-hint{margin-top:10px; color:var(--muted); font-size:12px}
.client-actions{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
.client-search input{max-width: 420px}

.rcard{position:relative; overflow:hidden}
.rcard-bg{position:absolute; inset:0; background: radial-gradient(560px 320px at 10% 0%, rgba(14,165,233,0.16), transparent 55%), radial-gradient(520px 320px at 90% 20%, rgba(34,197,94,0.10), transparent 60%); opacity:.85; pointer-events:none}
.rcard-top{position:relative; display:flex; gap:12px; align-items:center}
.rlogo{width:46px; height:46px; border-radius:16px; border:1px solid rgba(255,255,255,0.14); object-fit:cover; background: rgba(255,255,255,0.06)}
.rname{font-weight:1000}
.rmeta{color:var(--muted); font-size:12px; margin-top:2px}
.rchips{display:flex; gap:6px; flex-wrap:wrap; margin-top:10px; position:relative}
.ropen{margin-top:12px; position:relative}
.ropen .btn{width:100%}

.pricing-head{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap}
.pricing-tools{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.pprice{font-size:26px; font-weight:1000; margin-top:10px}
.pmeta{margin-top:8px; color:var(--muted); line-height:1.6}
.price-summary{margin-top:10px; display:flex; gap:8px; flex-wrap:wrap}
.price-summary .chip{border-color: rgba(255,255,255,0.12)}

.faq{margin-top:12px}
.faq-item{border:1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); border-radius: 20px; overflow:hidden}
.faq-q{padding:12px 14px; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:10px; font-weight:950}
.faq-a{display:none; padding:0 14px 12px 14px; color:var(--muted); line-height:1.75}
.faq-item.on .faq-a{display:block}

.footer-landing{margin-top:22px; padding: 18px 0 26px 0; color:var(--muted)}
.footer-landing .row{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.footer-landing a{color:var(--text)}

/* ---- Storefront micro polish ---- */
.menu-scope .product-card{transition: transform .10s ease, background .15s ease, border-color .15s ease}
.menu-scope .product-card:hover{transform: translateY(-2px)}
.menu-scope .product-thumb{box-shadow: 0 12px 28px rgba(0,0,0,0.18)}
.menu-scope .yr-prod-nav{transition: transform .08s ease, background .15s ease}
.menu-scope .yr-prod-nav:hover{transform: translateY(-50%) scale(1.04); background: rgba(2,6,23,0.72)}

@media (prefers-reduced-motion: reduce){
  *{transition:none!important; animation:none!important; scroll-behavior:auto!important}
}

/* Wishlist button (storefront) */
.wish-btn{
  position:absolute;
  top:10px;
  inset-inline-end:10px;
  width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.14);
  background:rgba(255,255,255,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  line-height:1;
  cursor:pointer;
  user-select:none;
}
.wish-btn{ color:#64748b; }
.wish-btn.is-on{ color:#e11d48; border-color:rgba(225,29,72,.35); }
.wish-btn:disabled{ opacity:.65; cursor:wait; }


/* Part 12 — store builder blocks */
.theme-check-row{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin:0}
.hero-kicker{display:inline-flex;align-items:center;gap:8px;padding:6px 12px;border-radius:999px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.16);color:var(--hero_text);font-size:12px;font-weight:800;margin-bottom:10px}
.builder-pills{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.hero-note{margin-top:10px;max-width:760px;font-size:14px;line-height:1.75;color:var(--hero_muted)}
.builder-promo{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 18px;background:linear-gradient(135deg,color-mix(in srgb,var(--brand) 86%, #fff 14%), color-mix(in srgb,var(--brand2) 82%, #fff 18%));color:#fff;border:none}
.builder-promo .builder-sec-kicker,.builder-promo .builder-sec-note{color:#fff}
.builder-promo-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.builder-badges{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:10px}
.builder-badge{display:flex;align-items:center;gap:10px;padding:12px 14px;font-weight:700}
.builder-strip{display:grid;gap:10px}
.builder-strip-head{display:flex;align-items:end;justify-content:space-between;gap:12px;flex-wrap:wrap}
.builder-sec-title{font-size:20px;font-weight:900;color:var(--text);margin:0 0 4px}
.builder-sec-kicker{font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;color:var(--muted)}
.builder-sec-note{font-size:14px;line-height:1.8;color:var(--muted)}
.builder-mini-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px}
.builder-mini-card{display:flex;align-items:center;gap:12px;padding:10px;text-decoration:none;color:inherit}
.builder-mini-card img{width:64px;height:64px;border-radius:16px;object-fit:cover;border:1px solid var(--border);flex:0 0 auto}
.builder-mini-info{min-width:0}
.builder-mini-name{font-weight:800;color:var(--text);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.builder-mini-price{margin-top:4px;color:var(--brand);font-weight:800}
.builder-about,.builder-contact{padding:18px}
.builder-contact{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap}
.builder-contact-actions{display:flex;gap:10px;flex-wrap:wrap}
@media (max-width: 720px){
  .builder-promo,.builder-contact{padding:14px;align-items:flex-start}
  .builder-mini-grid{grid-template-columns:1fr}
  .builder-mini-card img{width:56px;height:56px}
}

/* Part 13 — checkout conversion layer */
.yr-goal-box{margin-top:12px;padding:14px 16px;border:1px solid rgba(15,23,42,.08);border-radius:18px;background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(245,248,255,.92))}
.yr-goal-box.is-done{background:linear-gradient(180deg,rgba(236,253,245,.96),rgba(220,252,231,.9));border-color:rgba(34,197,94,.22)}
.yr-goal-progress{margin-top:10px;height:10px;border-radius:999px;background:rgba(148,163,184,.18);overflow:hidden}
.yr-goal-progress > span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--brand),var(--brand2));transition:width .25s ease}
.yr-inline-badges{display:flex;gap:8px;flex-wrap:wrap}
.badge.soft{background:rgba(14,165,233,.10);border:1px solid rgba(14,165,233,.15);color:var(--text)}
.yr-bump-card{padding:12px;border:1px solid rgba(15,23,42,.08);border-radius:18px;background:#fff;box-shadow:0 10px 24px rgba(15,23,42,.05)}
.yr-bump-card .btn{white-space:nowrap}
@media (max-width: 720px){
  .yr-bump-card{padding:10px}
}

/* Part 18 — Reviews / UGC / Social Proof */
.review-hero{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);gap:18px;align-items:start}
.review-hero-stats{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.review-stat-card,.review-card,.review-store-card,.review-widget-card{padding:16px;border:1px solid rgba(15,23,42,.08);border-radius:20px;background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(246,249,255,.95));box-shadow:0 12px 32px rgba(15,23,42,.05)}
.review-stat-value{font-size:28px;font-weight:900;color:var(--text);margin-top:6px}
.review-featured-grid,.review-store-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:12px}
.review-card--featured{border-color:rgba(245,158,11,.22);background:linear-gradient(180deg,rgba(255,251,235,.98),rgba(255,255,255,.96))}
.review-copy{margin-top:12px;line-height:1.85;white-space:pre-wrap;color:var(--text)}
.review-gallery{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin-top:12px}
.review-gallery a{text-decoration:none}
.review-gallery img{display:block;width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:16px;border:1px solid var(--border);background:#fff}
.review-reply-box{margin-top:12px;padding:12px 14px;border-radius:16px;background:rgba(15,23,42,.04);border:1px solid rgba(15,23,42,.06);line-height:1.7}
.review-store-strip{padding:16px;border:1px solid rgba(15,23,42,.08);border-radius:22px;background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(242,247,255,.94));box-shadow:0 12px 28px rgba(15,23,42,.05)}
.review-admin-card{padding:16px 18px}
.review-admin-grid{display:grid;grid-template-columns:220px 1fr;gap:14px;align-items:start}
.review-widget-shell{padding:16px 18px}
@media (max-width: 920px){
  .review-hero{grid-template-columns:1fr}
  .review-admin-grid{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .review-hero-stats{grid-template-columns:1fr 1fr}
  .review-featured-grid,.review-store-grid{grid-template-columns:1fr}
  .review-gallery{grid-template-columns:repeat(3,minmax(0,1fr))}
  .review-stat-card,.review-card,.review-store-card,.review-widget-card,.review-store-strip{padding:14px}
}

/* Part 20 — Marketplace / Public docs polish */
.page-hero{border:1px solid rgba(255,255,255,0.12);background:linear-gradient(180deg,rgba(255,255,255,0.08),rgba(255,255,255,0.04));border-radius:28px;padding:22px;box-shadow:var(--shadow-sm)}
:root[data-theme="light"] .page-hero{background:#fff;border-color:rgba(15,23,42,0.10)}
.page-hero__eyebrow{display:inline-flex;align-items:center;gap:8px;padding:7px 12px;border-radius:999px;background:rgba(14,165,233,0.12);border:1px solid rgba(14,165,233,0.18);font-weight:900;font-size:12px;letter-spacing:.04em;text-transform:uppercase}
.page-hero h1{margin:12px 0 8px;font-size:38px;line-height:1.12;font-weight:1000;letter-spacing:-.5px}
.page-hero p{margin:0;color:var(--muted);line-height:1.8;max-width:840px}
@media(max-width:720px){.page-hero{padding:18px}.page-hero h1{font-size:30px}}
.dev-docs-grid,.apps-market-grid,.integration-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:14px}
@media(max-width:980px){.dev-docs-grid,.apps-market-grid,.integration-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:640px){.dev-docs-grid,.apps-market-grid,.integration-grid{grid-template-columns:1fr;}}
.dev-doc-card,.app-market-card,.integration-card,.app-detail-card,.app-install-card,.integration-path-card,.docs-highlight-strip{border:1px solid rgba(255,255,255,0.12);background:rgba(255,255,255,0.06);border-radius:24px;padding:16px;box-shadow:var(--shadow-sm)}
:root[data-theme="light"] .dev-doc-card,:root[data-theme="light"] .app-market-card,:root[data-theme="light"] .integration-card,:root[data-theme="light"] .app-detail-card,:root[data-theme="light"] .app-install-card,:root[data-theme="light"] .integration-path-card,:root[data-theme="light"] .docs-highlight-strip{background:#fff;border-color:rgba(15,23,42,0.10)}
.dev-doc-card h3,.app-market-card h3,.integration-card h3,.app-detail-card h2,.app-install-card h3{margin:10px 0 8px;font-weight:1000;letter-spacing:-.2px}
.dev-doc-card p,.app-market-card p,.integration-card p,.app-detail-card p{color:var(--muted);line-height:1.8;margin:0}
.feature-group-card__tag{display:inline-flex;align-items:center;gap:8px;padding:7px 10px;border-radius:999px;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.12);font-size:12px;font-weight:900}
:root[data-theme="light"] .feature-group-card__tag{background:rgba(15,23,42,0.04);border-color:rgba(15,23,42,0.10)}
.app-market-card__head,.apps-market-group__head{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}
.app-market-card__chips{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.app-market-card__actions,.docs-highlight-strip__actions,.integration-path-card__actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.apps-market-group{margin-top:18px}
.apps-market-group__head h3{margin:0;font-size:22px;font-weight:1000}
.endpoint-list{display:grid;gap:10px;margin-top:12px}
.endpoint-item{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:14px 16px;border:1px solid rgba(255,255,255,0.10);background:rgba(255,255,255,0.04);border-radius:20px}
:root[data-theme="light"] .endpoint-item{background:rgba(15,23,42,0.03);border-color:rgba(15,23,42,0.08)}
.endpoint-item b{display:block;margin-bottom:4px}
.endpoint-item span{color:var(--muted);font-size:13px}
.endpoint-method{display:inline-flex;align-items:center;justify-content:center;min-width:62px;padding:8px 10px;border-radius:999px;background:rgba(14,165,233,0.12);border:1px solid rgba(14,165,233,0.22);font-size:12px;font-weight:1000;color:var(--text)}
.endpoint-method.post{background:rgba(245,158,11,0.12);border-color:rgba(245,158,11,0.24)}
.code-block{margin-top:10px;border:1px solid rgba(255,255,255,0.10);border-radius:18px;overflow:hidden;background:rgba(2,6,23,0.55)}
:root[data-theme="light"] .code-block{background:#0f172a;border-color:rgba(15,23,42,0.08)}
.code-block__head{display:flex;align-items:center;justify-content:space-between;padding:10px 12px;border-bottom:1px solid rgba(255,255,255,0.08);font-size:12px;font-weight:900;color:#cbd5e1}
.code-block pre{margin:0;padding:14px;overflow:auto;color:#e2e8f0;font-size:12px;line-height:1.7;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono",monospace}
.note-list{margin:0;padding-inline-start:18px;color:var(--muted);display:grid;gap:10px;line-height:1.8}
.docs-highlight-strip,.integration-path-card{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-top:16px}
.app-detail-hero{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);gap:16px;align-items:start}
.app-detail-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.install-flow-list{margin:0;padding-inline-start:18px;display:grid;gap:10px;line-height:1.9}
@media(max-width:980px){.app-detail-hero,.app-detail-grid{grid-template-columns:1fr}}


html[lang="ar"] body,
body[dir="rtl"],
[dir="rtl"] body{
  --font-ui: var(--font-ui-ar);
}
body{
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.topbar,
.panel-topbar,
.panel-sidebar{
  box-shadow: 0 10px 30px rgba(2,6,23,0.10);
}
.panel-sidebar__brand{
  background: linear-gradient(135deg, rgba(11,107,222,0.14), rgba(34,199,201,0.08));
}
.panel-nav__item{transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease}
.panel-nav__item:hover{transform: translateY(-1px); box-shadow: 0 8px 20px rgba(2,6,23,0.07)}
.panel-topbar__right{display:flex;align-items:center;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.btn.gold{background: linear-gradient(135deg, rgba(215,166,58,0.95), rgba(177,128,27,0.92)); border-color: rgba(255,255,255,0.18); color:#0B1320}
.btn.soft{background: linear-gradient(135deg, rgba(11,107,222,0.10), rgba(34,199,201,0.10)); border-color: rgba(11,107,222,0.14)}
.panel-status-chip{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;border:1px solid rgba(11,107,222,0.14);background:linear-gradient(135deg, rgba(11,107,222,0.10), rgba(34,199,201,0.08));font-size:12px;font-weight:800}
.panel-status-chip .dot{width:8px;height:8px;border-radius:999px;background:#22c55e;box-shadow:0 0 0 4px rgba(34,197,94,0.12)}
.panel-status-chip.is-off .dot{background:#ef4444;box-shadow:0 0 0 4px rgba(239,68,68,0.12)}
.dashboard-shell{display:grid;gap:14px}
.panel-hero-grid{display:grid;grid-template-columns:minmax(0,1.4fr) minmax(280px,.9fr);gap:14px;align-items:stretch}
.hero-surface{padding:18px;border-radius:22px;border:1px solid rgba(11,107,222,0.16);background:linear-gradient(135deg, rgba(10,31,74,0.96), rgba(11,107,222,0.88));color:#fff;box-shadow:0 22px 60px rgba(10,31,74,0.20)}
.hero-surface h2{font-size:30px;line-height:1.15;margin:0}
.hero-surface p{max-width:720px;color:rgba(255,255,255,0.84)}
.hero-chip-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.hero-chip{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,0.12);font-size:12px;font-weight:800}
.launch-score-card{padding:16px;border-radius:22px;border:1px solid rgba(15,23,42,0.08);background:linear-gradient(180deg, #ffffff, #f7fbff);box-shadow:0 16px 35px rgba(15,23,42,0.08);display:grid;gap:14px}
.launch-score-head{display:flex;justify-content:space-between;gap:12px;align-items:flex-start}
.score-ring{width:108px;height:108px;border-radius:999px;display:grid;place-items:center;background:conic-gradient(var(--primary) var(--score-deg,180deg), rgba(15,23,42,0.08) 0deg);padding:8px;box-shadow: inset 0 0 0 1px rgba(15,23,42,0.04)}
.score-ring__inner{width:100%;height:100%;border-radius:999px;background:#fff;display:grid;place-items:center;text-align:center}
.score-ring__inner b{font-size:28px;line-height:1;color:#0f172a}
.score-ring__inner span{font-size:11px;color:#64748b;font-weight:800;letter-spacing:.04em;text-transform:uppercase}
.readiness-list{display:grid;gap:8px;margin:0;padding:0;list-style:none}
.readiness-item{display:flex;align-items:flex-start;gap:10px;padding:10px 12px;border-radius:16px;border:1px solid rgba(15,23,42,0.08);background:#fff}
.readiness-item .mark{width:22px;height:22px;border-radius:999px;display:grid;place-items:center;font-size:12px;font-weight:900;background:rgba(148,163,184,0.16);color:#475569;flex:0 0 22px}
.readiness-item.ok .mark{background:rgba(34,197,94,0.16);color:#166534}
.readiness-item.warn .mark{background:rgba(245,158,11,0.16);color:#92400e}
.readiness-item b{display:block;margin-bottom:3px}
.readiness-item span{display:block;font-size:12px;color:#64748b}
.quick-actions-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.qa-card{padding:14px;border-radius:20px;border:1px solid rgba(15,23,42,0.08);background:linear-gradient(180deg,rgba(255,255,255,0.98),rgba(247,251,255,0.96));box-shadow:0 10px 24px rgba(15,23,42,0.06);display:grid;gap:8px;transition:transform .12s ease, box-shadow .15s ease, border-color .15s ease}
.qa-card:hover{transform:translateY(-2px);box-shadow:0 16px 34px rgba(15,23,42,0.10);border-color:rgba(11,107,222,0.18)}
.qa-card .ic{width:42px;height:42px;border-radius:14px;display:grid;place-items:center;background:linear-gradient(135deg, rgba(11,107,222,0.14), rgba(34,199,201,0.10));font-size:20px}
.qa-card b{font-size:15px;line-height:1.25;color:#0f172a}
.qa-card span{font-size:12px;color:#64748b}
.quick-actions-head{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-bottom:10px}
.quick-actions-head h3{margin:0;font-size:20px}
.quick-actions-head p{margin:4px 0 0;color:#64748b}
.mini-kpi-strip{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}
.mini-kpi{padding:12px 14px;border-radius:18px;background:rgba(255,255,255,0.10);border:1px solid rgba(255,255,255,0.14)}
.mini-kpi .k{font-size:11px;text-transform:uppercase;letter-spacing:.04em;color:rgba(255,255,255,0.72);font-weight:800}
.mini-kpi .v{font-size:24px;font-weight:900;margin-top:8px;color:#fff}
.mini-kpi .m{font-size:12px;color:rgba(255,255,255,0.76);margin-top:3px}
.commerce-stack{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.commerce-stack-card{padding:18px;border-radius:22px;border:1px solid rgba(15,23,42,0.08);background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,251,255,0.98));box-shadow:0 12px 28px rgba(15,23,42,0.06);display:grid;gap:8px}
.commerce-stack-card .eyebrow{font-size:11px;font-weight:900;letter-spacing:.05em;text-transform:uppercase;color:var(--primary)}
.commerce-stack-card b{font-size:20px;line-height:1.2;color:#0f172a}
.commerce-stack-card p{margin:0;color:#64748b;font-size:14px}
.commerce-stack-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:2px}
.commerce-stack-tags span{padding:7px 10px;border-radius:999px;background:#f3f7fb;border:1px solid rgba(15,23,42,0.08);font-size:12px;font-weight:800;color:#0f172a}
.final-cta-band{padding:22px;border-radius:28px;background:linear-gradient(135deg, rgba(10,31,74,0.98), rgba(11,107,222,0.90), rgba(34,199,201,0.72));color:#fff;display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;box-shadow:0 24px 70px rgba(10,31,74,0.18)}
.final-cta-band h2{margin:0;font-size:30px;line-height:1.15}
.final-cta-band p{margin:6px 0 0;color:rgba(255,255,255,0.84);max-width:760px}
.final-cta-band .actions{display:flex;gap:10px;flex-wrap:wrap}
.final-cta-band .actions .lbtn{border-color:rgba(255,255,255,0.18);background:rgba(255,255,255,0.12);color:#fff}
.final-cta-band .actions .lbtn.primary{background:#fff;color:#0a1f4a}
@media (max-width: 1100px){
  .panel-hero-grid{grid-template-columns:1fr}
  .quick-actions-grid,.commerce-stack,.mini-kpi-strip{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 760px){
  .quick-actions-grid,.commerce-stack,.mini-kpi-strip{grid-template-columns:1fr}
  .hero-surface h2{font-size:24px}
  .final-cta-band h2{font-size:24px}
}


/* Patch v11 — landing cleanup + auth polish */
.marketing-top .theme-switch,
.marketing-top #themeToggleBtn{display:none !important}

.otp .otp-hidden{
  position:absolute; inset:0; width:100%; height:56px;
  opacity:.01; background:transparent; color:transparent;
  caret-color:transparent; letter-spacing:10px; border:0;
}

.marketing-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(340px,.9fr);
  gap:24px;
  align-items:stretch;
}
@media(max-width:980px){
  .marketing-hero-grid{grid-template-columns:1fr}
}

.hero-copy,.brand-mock--interactive{min-width:0}
.hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:0;
  padding:12px 0;
}
.hero-bullets,.hero-links-row,.hero-proof{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:14px;
}
.hero-links-row a,.proof-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.06);
  font-weight:800;
  font-size:12px;
}
:root[data-theme="light"] .hero-links-row a,
:root[data-theme="light"] .proof-item{
  border-color:rgba(15,23,42,0.10);
  background:#fff;
}

.brand-mock__shell{
  border:1px solid rgba(255,255,255,0.14);
  background:linear-gradient(180deg, rgba(2,6,23,0.58), rgba(2,6,23,0.32));
  border-radius:28px;
  padding:18px;
  box-shadow:var(--shadow-xl);
  height:100%;
}
:root[data-theme="light"] .brand-mock__shell{
  background:linear-gradient(180deg, #ffffff, #f8fbff);
  border-color:rgba(15,23,42,0.10);
}
.brand-mock__head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}
.brand-mock__head img{
  width:52px; height:52px; border-radius:18px; object-fit:cover;
  border:1px solid rgba(255,255,255,0.14);
}
.brand-mock__head b{display:block; font-size:18px; font-weight:1000}
.brand-mock__head span{display:block; margin-top:4px; color:var(--muted); line-height:1.6}

.hero-preview-tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.hero-preview-tab{
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.06);
  color:var(--text);
  border-radius:999px;
  padding:10px 12px;
  font-weight:900;
  cursor:pointer;
}
.hero-preview-tab.is-active{
  background:linear-gradient(135deg, rgba(11,107,222,0.96), rgba(34,199,201,0.82));
  color:#fff;
  border-color:rgba(255,255,255,0.18);
}
:root[data-theme="light"] .hero-preview-tab{
  background:#fff;
  border-color:rgba(15,23,42,0.10);
}

.hero-preview-pane{display:none}
.hero-preview-pane.is-active{display:block}
.hero-preview-main{
  display:grid;
  grid-template-columns:minmax(0,1fr) 112px;
  gap:14px;
  align-items:stretch;
}
@media(max-width:560px){
  .hero-preview-main{grid-template-columns:1fr}
}

.hero-preview-surface{
  min-height:300px;
  border-radius:24px;
  padding:18px;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.12);
  background:linear-gradient(160deg, rgba(10,25,48,0.98), rgba(7,88,131,0.72));
}
.hero-preview-surface--luxury{
  background:linear-gradient(160deg, #121212, #3a2a0f);
}
.hero-preview-surface--food{
  background:linear-gradient(160deg, #14213d, #0b8a8f);
}
.hero-preview-surface--mobile{
  background:linear-gradient(160deg, #0f172a, #1d4ed8);
}
.surface-top,.surface-footer{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:space-between;
}
.surface-badge,.surface-chip,.surface-footer span{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.16);
  color:#fff;
  font-size:11px;
  font-weight:900;
}
.surface-title{
  margin-top:18px;
  font-size:24px;
  line-height:1.25;
  font-weight:1000;
  color:#fff;
}
.surface-desc{
  margin-top:10px;
  color:rgba(255,255,255,0.82);
  line-height:1.8;
}
.surface-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
@media(max-width:560px){
  .surface-grid{grid-template-columns:1fr}
}
.surface-card{
  border-radius:18px;
  padding:14px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.14);
}
.surface-card small{display:block; color:rgba(255,255,255,0.76); font-weight:800}
.surface-card b{display:block; margin-top:6px; color:#fff; font-size:18px; font-weight:1000}
.surface-card span{display:block; margin-top:6px; color:rgba(255,255,255,0.78); font-size:12px}
.surface-footer{margin-top:16px}

.hero-mobile-mini{
  border-radius:28px;
  padding:10px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.08);
  display:flex;
  flex-direction:column;
}
.hero-mobile-mini__top{
  display:flex; gap:6px; justify-content:center; margin-bottom:10px;
}
.hero-mobile-mini__top span{
  width:8px; height:8px; border-radius:999px; background:rgba(255,255,255,0.45);
}
.hero-mobile-mini__body{
  border-radius:20px;
  background:rgba(255,255,255,0.08);
  padding:12px;
  min-height:220px;
}
.hero-mobile-mini__body b{display:block; color:#fff; font-weight:1000}
.hero-mobile-mini__body small{display:block; color:rgba(255,255,255,0.78); margin-top:4px}
.mini-line,.mini-cta{
  height:10px; border-radius:999px; background:rgba(255,255,255,0.18); margin-top:12px;
}
.mini-line.short{width:72%}
.mini-pills{display:flex; gap:6px; flex-wrap:wrap; margin-top:12px}
.mini-pills span{width:28px; height:16px; border-radius:999px; background:rgba(255,255,255,0.16)}
.mini-cta{height:34px; margin-top:18px}

.brand-mock__footer{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}
@media(max-width:560px){ .brand-mock__footer{grid-template-columns:1fr} }
.brand-mini-card{
  border-radius:18px;
  padding:14px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
}
.brand-mini-card.is-primary{
  background:linear-gradient(135deg, rgba(11,107,222,0.18), rgba(34,199,201,0.16));
}
.brand-mini-card small{display:block; color:var(--muted); font-weight:800}
.brand-mini-card b{display:block; margin-top:6px; font-weight:1000}
.brand-mini-card span{display:block; margin-top:6px; color:var(--muted); line-height:1.7}

.section-headline{
  max-width:860px;
  margin-bottom:14px;
}
.section-tag{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(14,165,233,0.12);
  border:1px solid rgba(14,165,233,0.22);
  font-weight:900;
  font-size:12px;
}
.marketing-strip__grid,.launch-steps-grid,.theme-showcase-grid,.commerce-stack{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:12px;
}
@media(max-width:980px){
  .marketing-strip__grid,.launch-steps-grid,.theme-showcase-grid,.commerce-stack{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:560px){
  .marketing-strip__grid,.launch-steps-grid,.theme-showcase-grid,.commerce-stack{grid-template-columns:1fr}
}
.launch-step-card,.theme-showcase-card,.commerce-stack-card{
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.06);
  border-radius:22px;
  padding:16px;
  box-shadow:var(--shadow-sm);
}
:root[data-theme="light"] .launch-step-card,
:root[data-theme="light"] .theme-showcase-card,
:root[data-theme="light"] .commerce-stack-card{
  background:#fff;
  border-color:rgba(15,23,42,0.10);
}
.launch-step-card__num{
  width:42px; height:42px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(14,165,233,0.14); font-weight:1000; margin-bottom:12px;
}
.theme-showcase-card__preview{
  height:140px; border-radius:18px; overflow:hidden; position:relative;
  background:linear-gradient(135deg, rgba(11,107,222,0.18), rgba(34,199,201,0.18));
  border:1px solid rgba(255,255,255,0.14); margin-bottom:12px;
}
.preview-orb{position:absolute; width:80px; height:80px; border-radius:999px; top:16px; left:16px; background:rgba(255,255,255,0.20); filter:blur(4px)}
.preview-window{position:absolute; right:16px; top:24px; width:120px; height:72px; border-radius:16px; background:rgba(255,255,255,0.26)}
.preview-window.small{top:auto; bottom:18px; width:78px; height:24px}
.commerce-stack-tags{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.commerce-stack-tags span{
  display:inline-flex; padding:7px 10px; border-radius:999px; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12); font-size:12px; font-weight:800;
}
.final-cta-band{
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  border-radius:28px; padding:22px; margin-top:4px;
  background:linear-gradient(135deg, rgba(11,107,222,0.18), rgba(34,199,201,0.14));
  border:1px solid rgba(14,165,233,0.24);
}
.final-cta-band .actions{display:flex; gap:10px; flex-wrap:wrap}

.price-grid--tiers .pcard{display:flex; flex-direction:column; gap:14px}
.price-grid--tiers .pcard .ptop{display:flex; justify-content:space-between; gap:12px; align-items:center}
.price-grid--tiers .pcard .pprice{font-size:30px; font-weight:1000}
.price-grid--tiers .pcard .pprice small{font-size:14px; color:var(--muted); margin-inline-start:6px}
.price-grid--tiers .pcard ul{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px}
.price-grid--tiers .pcard ul li{position:relative; padding-inline-start:18px}
.price-grid--tiers .pcard ul li::before{content:"✓"; position:absolute; inset-inline-start:0; color:#22c55e; font-weight:1000}


/* Patch v12 — premium landing + dashboard + storefront discovery */
.ops-loop-wrap{display:grid;gap:14px}
.ops-loop-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.ops-loop-card{padding:18px;border-radius:24px;border:1px solid rgba(15,23,42,.08);background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(245,249,255,.96));box-shadow:0 14px 34px rgba(15,23,42,.06);display:grid;gap:10px}
.ops-loop-card__num{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:14px;background:linear-gradient(135deg, rgba(11,107,222,.14), rgba(34,199,201,.10));font-weight:1000;color:var(--primary)}
.ops-loop-card b{font-size:18px;line-height:1.2;color:#0f172a}
.ops-loop-card p{margin:0;color:#64748b;line-height:1.8}
.advantage-board{padding:18px;border-radius:26px;background:linear-gradient(135deg, rgba(10,31,74,.96), rgba(11,107,222,.90), rgba(34,199,201,.62));color:#fff;box-shadow:0 24px 70px rgba(10,31,74,.18)}
.advantage-board__head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;flex-wrap:wrap}
.advantage-board__head h3{margin:0;font-size:24px}
.advantage-board__head p{margin:8px 0 0;max-width:760px;color:rgba(255,255,255,.84)}
.advantage-board__rows{display:grid;gap:10px;margin-top:16px}
.advantage-row{display:grid;grid-template-columns:minmax(180px,.32fr) minmax(0,1fr);gap:14px;align-items:flex-start;padding:14px 16px;border-radius:18px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.08)}
.advantage-row b{font-size:14px;color:#fff}
.advantage-row span{font-size:13px;line-height:1.8;color:rgba(255,255,255,.84)}

.ops-radar-shell{display:grid;gap:14px}
.ops-radar-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.ops-radar-card{padding:16px;border-radius:22px;border:1px solid rgba(15,23,42,.08);background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(246,250,255,.96));box-shadow:0 12px 28px rgba(15,23,42,.06);display:grid;gap:8px;text-decoration:none;color:inherit}
.ops-radar-card:hover{transform:translateY(-2px);box-shadow:0 18px 36px rgba(15,23,42,.08)}
.ops-radar-card__head{display:flex;align-items:center;gap:10px}
.ops-radar-card__ic{width:42px;height:42px;border-radius:14px;display:grid;place-items:center;background:rgba(11,107,222,.10);font-size:20px}
.ops-radar-card__label{font-size:13px;font-weight:900;color:#0f172a}
.ops-radar-card__value{font-size:34px;font-weight:1000;line-height:1;color:#0f172a}
.ops-radar-card__value small{font-size:15px;margin-inline-start:4px;color:#64748b}
.ops-radar-card__desc{font-size:12px;line-height:1.7;color:#64748b}
.ops-radar-card.tone-orders .ops-radar-card__ic{background:rgba(245,158,11,.12)}
.ops-radar-card.tone-catalog .ops-radar-card__ic{background:rgba(34,197,94,.12)}
.ops-radar-card.tone-reviews .ops-radar-card__ic{background:rgba(168,85,247,.12)}
.ops-radar-card.tone-launch .ops-radar-card__ic{background:rgba(11,107,222,.12)}
.focus-strip{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}
.focus-pill{padding:14px 16px;border-radius:18px;border:1px solid rgba(15,23,42,.08);background:#fff;display:grid;gap:6px;text-decoration:none;color:inherit;box-shadow:0 10px 22px rgba(15,23,42,.04)}
.focus-pill b{font-size:14px;color:#0f172a}
.focus-pill span{font-size:12px;line-height:1.7;color:#64748b}
.focus-pill.tone-danger{border-color:rgba(239,68,68,.18);background:linear-gradient(180deg,rgba(254,242,242,.96),#fff)}
.focus-pill.tone-warn{border-color:rgba(245,158,11,.18);background:linear-gradient(180deg,rgba(255,251,235,.96),#fff)}
.focus-pill.tone-info{border-color:rgba(59,130,246,.18);background:linear-gradient(180deg,rgba(239,246,255,.96),#fff)}
.focus-pill.tone-ok{border-color:rgba(34,197,94,.18);background:linear-gradient(180deg,rgba(240,253,244,.96),#fff)}
.focus-pill.tone-brand{border-color:rgba(11,107,222,.16);background:linear-gradient(180deg,rgba(239,246,255,.96),#fff)}

.store-insight-wrap{display:grid;gap:12px;margin-top:12px}
.store-insight-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:10px}
.store-insight-card{display:flex;align-items:flex-start;gap:12px;padding:14px}
.store-insight-card__ic{width:40px;height:40px;border-radius:14px;display:grid;place-items:center;background:linear-gradient(135deg, rgba(11,107,222,.14), rgba(34,199,201,.10));font-size:20px;flex:0 0 40px}
.store-insight-card b{display:block;color:var(--text);font-size:14px}
.store-insight-card span{display:block;margin-top:4px;color:var(--muted);font-size:12px;line-height:1.7}
.store-jump-strip{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 16px;flex-wrap:wrap}
.store-jump-strip__label{font-size:12px;font-weight:1000;letter-spacing:.05em;text-transform:uppercase;color:var(--muted)}
.store-jump-strip__links{display:flex;gap:8px;flex-wrap:wrap}
.store-jump-strip__links a{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;border:1px solid var(--border);background:rgba(255,255,255,.06);text-decoration:none;color:var(--text);font-size:12px;font-weight:800}
.store-filter-band{display:grid;grid-template-columns:minmax(0,1fr) auto auto;gap:14px;align-items:center;padding:16px 18px;margin-bottom:12px}
.store-filter-band__chips{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.store-filter-band__meta{font-size:12px;font-weight:900;color:var(--muted);white-space:nowrap}

@media (max-width:1100px){
  .ops-loop-grid,.ops-radar-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .advantage-row{grid-template-columns:1fr}
  .store-filter-band{grid-template-columns:1fr}
  .store-filter-band__chips{justify-content:flex-start}
}
@media (max-width:760px){
  .ops-loop-grid,.ops-radar-grid{grid-template-columns:1fr}
  .advantage-board__head h3{font-size:21px}
  .store-jump-strip{align-items:flex-start}
}

/* Part 21 — Pricing + Themes + Checkout premium layer */
.page-hero--premium{position:relative;overflow:hidden}
.page-hero--premium::after{content:"";position:absolute;inset:auto -8% -30% auto;width:340px;height:340px;border-radius:999px;background:radial-gradient(circle,rgba(34,199,201,.18),transparent 62%);pointer-events:none}
.page-hero__chips{display:flex;gap:8px;flex-wrap:wrap;margin-top:14px}
.pricing-lab{margin-top:16px}
.pricing-lab__main,.theme-advisor__main{padding:18px;border:1px solid rgba(255,255,255,.12);border-radius:28px;background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.04));box-shadow:var(--shadow-sm)}
:root[data-theme="light"] .pricing-lab__main,:root[data-theme="light"] .theme-advisor__main{background:#fff;border-color:rgba(15,23,42,.1)}
.pricing-lab__head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;flex-wrap:wrap}
.pricing-lab__head h2,.theme-advisor__main h2{margin:2px 0 8px;font-size:30px;line-height:1.15;font-weight:1000}
.pricing-lab__head p,.theme-advisor__main p{margin:0;color:var(--muted);line-height:1.8;max-width:760px}
.pricing-lab__actions{display:flex;gap:10px;flex-wrap:wrap}
.pricing-lab__grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(300px,.92fr);gap:14px;margin-top:16px}
.pricing-lab__controls,.pricing-lab__summary{padding:16px}
.pricing-lab__controls label{display:block;font-size:13px;font-weight:900;margin-bottom:8px}
.pricing-lab__select{width:100%;margin-bottom:12px}
.pricing-lab__switch{display:flex;align-items:center;gap:10px;padding:12px 14px;border-radius:18px;border:1px solid rgba(15,23,42,.08);background:rgba(15,23,42,.03);margin-bottom:12px}
.pricing-total-card{padding:18px;border-radius:24px;background:linear-gradient(135deg,rgba(10,31,74,.96),rgba(11,107,222,.88));color:#fff;box-shadow:0 18px 40px rgba(10,31,74,.18)}
.pricing-total-card__label{font-size:12px;font-weight:900;letter-spacing:.06em;text-transform:uppercase;color:rgba(255,255,255,.7)}
.pricing-total-card__value{font-size:42px;line-height:1;font-weight:1000;margin-top:10px}
.pricing-total-card__meta{margin-top:10px;color:rgba(255,255,255,.82);line-height:1.7}
.pricing-radar{display:grid;gap:10px;margin-top:12px}
.pricing-radar__item{padding:14px 16px;border-radius:20px;border:1px solid rgba(15,23,42,.08);background:rgba(255,255,255,.82)}
.pricing-radar__item b{display:block;margin-bottom:6px}
.pricing-radar__item span{display:block;color:var(--muted);line-height:1.8}
.premium-plan-grid{margin-top:16px}
.plan-card{padding:16px;display:flex;flex-direction:column;gap:14px}
.plan-card.featured{border-color:rgba(11,107,222,.18);box-shadow:0 18px 36px rgba(15,23,42,.08)}
.plan-card.is-addon{background:linear-gradient(180deg,rgba(215,166,58,.12),rgba(255,255,255,.05))}
:root[data-theme="light"] .plan-card.is-addon{background:linear-gradient(180deg,rgba(215,166,58,.10),rgba(255,255,255,.98))}
.plan-card__top{display:flex;justify-content:space-between;gap:8px;align-items:center;flex-wrap:wrap}
.plan-card__audience{font-size:13px;font-weight:800;color:var(--text)}
.plan-card__pitch{margin:0;color:var(--muted);line-height:1.8}
.plan-card__footer{display:grid;gap:10px;margin-top:auto}
.comparison-surface{margin-top:18px}
.comparison-table-wrap{overflow:auto;margin-top:12px;border:1px solid rgba(255,255,255,.12);border-radius:24px;background:rgba(255,255,255,.06)}
:root[data-theme="light"] .comparison-table-wrap{background:#fff;border-color:rgba(15,23,42,.1)}
.comparison-table{width:100%;border-collapse:collapse;min-width:720px}
.comparison-table th,.comparison-table td{padding:14px 16px;border-bottom:1px solid rgba(15,23,42,.08);text-align:center}
.comparison-table th:first-child,.comparison-table td:first-child{text-align:start;font-weight:800}
.comparison-table thead th{font-size:12px;letter-spacing:.05em;text-transform:uppercase;color:var(--muted);background:rgba(15,23,42,.03)}
.launch-step-card{position:relative;overflow:hidden}
.launch-step-card__index{display:inline-grid;place-items:center;width:42px;height:42px;border-radius:999px;background:rgba(11,107,222,.12);font-weight:1000;color:var(--primary);margin-bottom:12px}
.launch-step-card h3{margin:0 0 8px;font-weight:1000}
.launch-step-card p{margin:0;color:var(--muted);line-height:1.85}
.theme-showcase-grid--premium{margin-top:16px}
.theme-showcase-card--premium{display:flex;flex-direction:column;gap:0;overflow:hidden}
.theme-showcase-card__head{display:flex;justify-content:space-between;gap:10px;align-items:center;flex-wrap:wrap}
.theme-preview{height:170px;border-radius:20px;border:1px solid rgba(255,255,255,.14);display:grid;grid-template-rows:18px 1fr 52px;gap:10px;padding:14px;background:rgba(15,23,42,.28)}
.theme-preview span{display:block;border-radius:14px;background:rgba(255,255,255,.14)}
.theme-preview span:nth-child(2){background:linear-gradient(135deg,rgba(255,255,255,.16),rgba(255,255,255,.06))}
.theme-preview--luxury{background:linear-gradient(180deg,rgba(43,24,7,.92),rgba(97,60,18,.88))}
.theme-preview--bold{background:linear-gradient(180deg,rgba(88,28,135,.92),rgba(29,78,216,.86))}
.theme-preview--mobile{background:linear-gradient(180deg,rgba(12,74,110,.92),rgba(14,165,233,.84))}
.theme-preview--food{background:linear-gradient(180deg,rgba(6,78,59,.94),rgba(16,185,129,.82))}
.theme-preview--boutique{background:linear-gradient(180deg,rgba(67,56,202,.92),rgba(99,102,241,.84))}
.theme-chip-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.theme-advisor{margin-top:18px}
.theme-advisor__pills{display:flex;gap:8px;flex-wrap:wrap;margin-top:14px}
.theme-advisor__pill{border:1px solid rgba(15,23,42,.1);background:rgba(255,255,255,.7);padding:10px 14px;border-radius:999px;font-weight:800;cursor:pointer;transition:transform .12s ease,border-color .15s ease,background .15s ease}
.theme-advisor__pill:hover{transform:translateY(-1px)}
.theme-advisor__pill.is-active{border-color:rgba(11,107,222,.22);background:linear-gradient(135deg,rgba(11,107,222,.12),rgba(34,199,201,.10))}
.theme-advisor__spotlight{margin-top:16px;padding:16px 18px;border-radius:22px;background:linear-gradient(135deg,rgba(10,31,74,.96),rgba(11,107,222,.88));color:#fff;box-shadow:0 18px 42px rgba(10,31,74,.18)}
.theme-advisor__label{font-size:12px;font-weight:900;letter-spacing:.06em;text-transform:uppercase;color:rgba(255,255,255,.68)}
.theme-advisor__spotlight b{display:block;font-size:28px;line-height:1.1;margin-top:10px}
.theme-advisor__spotlight p{max-width:720px;color:rgba(255,255,255,.82);line-height:1.85;margin:12px 0 0}
.theme-advisor__actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.checkout-command-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-bottom:14px}
.checkout-command-card{display:flex;gap:12px;padding:14px 16px;border-radius:20px;border:1px solid rgba(15,23,42,.08);background:linear-gradient(180deg,#fff,#f7fbff);box-shadow:0 10px 24px rgba(15,23,42,.06)}
.checkout-command-card__icon{width:38px;height:38px;border-radius:14px;display:grid;place-items:center;background:linear-gradient(135deg,rgba(11,107,222,.14),rgba(34,199,201,.12));font-weight:900;color:var(--primary);flex:0 0 38px}
.checkout-command-card b{display:block;margin-bottom:4px}
.checkout-command-card p{margin:0;color:var(--muted);line-height:1.75;font-size:13px}
.checkout-assist-strip{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:12px}
.checkout-assist-strip__item{flex:1 1 280px;padding:14px 16px;border-radius:20px;border:1px solid rgba(15,23,42,.08);background:rgba(255,255,255,.78)}
.checkout-assist-strip__item b{display:block;margin-bottom:6px}
.checkout-assist-strip__item span{display:block;color:var(--muted);line-height:1.75}
.checkout-assist-strip__item.is-cta{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.checkout-payment-confidence{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-bottom:12px}
.checkout-payment-card{padding:16px;border-radius:20px;border:1px solid rgba(15,23,42,.08);background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(247,251,255,.95));box-shadow:0 10px 24px rgba(15,23,42,.05)}
.checkout-payment-card b{display:block;margin:10px 0 6px;line-height:1.5}
.checkout-payment-card p{margin:0;color:var(--muted);line-height:1.8;font-size:13px}
.order-flow-page{display:grid;gap:14px}
.order-flow-hero{padding:18px;border-radius:26px;background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(247,251,255,.95));box-shadow:0 16px 34px rgba(15,23,42,.06)}
.order-flow-hero--success{border:1px solid rgba(34,197,94,.16)}
.order-flow-hero__head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-bottom:6px}
.order-flow-hero__head h2{margin:8px 0 6px;font-size:32px;line-height:1.1}
.order-flow-hero__head p{margin:0;color:var(--muted);line-height:1.85;max-width:760px}
.order-flow-hero__meta{display:flex;gap:8px;flex-wrap:wrap;align-items:center}
.order-flow-actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
@media(max-width:980px){
  .pricing-lab__grid,.checkout-command-strip,.checkout-payment-confidence{grid-template-columns:1fr}
}
@media(max-width:720px){
  .pricing-lab__head h2,.theme-advisor__main h2{font-size:26px}
  .pricing-total-card__value{font-size:36px}
  .comparison-table th,.comparison-table td{padding:12px}
}

/* ===== Part 5: Launch center + panel command deck ===== */
.command-deck-card{overflow:hidden}
.command-deck-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}
.command-card{display:flex;flex-direction:column;gap:8px;padding:16px;border-radius:18px;text-decoration:none;color:inherit;background:linear-gradient(180deg,rgba(255,255,255,.88),rgba(255,255,255,.74));border:1px solid var(--border);box-shadow:0 14px 32px rgba(15,23,42,.08);transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease}
.command-card:hover{transform:translateY(-2px);box-shadow:0 18px 36px rgba(15,23,42,.12);border-color:rgba(59,130,246,.28)}
.command-card .ic{display:grid;place-items:center;width:44px;height:44px;border-radius:14px;background:linear-gradient(135deg,rgba(59,130,246,.16),rgba(20,184,166,.16));font-size:22px}
.command-card b{font-size:15px;font-weight:900}
.command-card span{font-size:13px;line-height:1.7;color:var(--muted)}
.command-card small{font-size:12px;color:var(--text);opacity:.78}

.launch-center-shell{padding-bottom:20px}
.launch-center-hero{display:grid;grid-template-columns:minmax(0,1.3fr) minmax(280px,.7fr);gap:16px;margin-bottom:14px}
.launch-center-main,.launch-center-score{position:relative;border-radius:28px;border:1px solid rgba(255,255,255,.22);overflow:hidden;box-shadow:0 24px 60px rgba(15,23,42,.12)}
.launch-center-main{padding:24px;background:linear-gradient(135deg,rgba(15,23,42,.92),rgba(30,64,175,.88) 42%,rgba(8,145,178,.84));color:#fff}
.launch-center-main:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at top right,rgba(255,255,255,.22),transparent 35%),radial-gradient(circle at left bottom,rgba(34,197,94,.12),transparent 34%);pointer-events:none}
.launch-center-main>*{position:relative;z-index:1}
.launch-center-main h2{margin:14px 0 8px;font-size:32px;line-height:1.2}
.launch-center-main p{margin:0;max-width:760px;opacity:.9;line-height:1.9}
.launch-center-score{padding:22px;background:linear-gradient(180deg,rgba(255,255,255,.94),rgba(255,255,255,.82))}
.launch-score-ring{--deg:180deg;position:relative;width:176px;height:176px;border-radius:50%;margin:0 auto 16px;background:conic-gradient(var(--primary,#2563eb) var(--deg),rgba(148,163,184,.18) 0)}
.launch-score-ring:after{content:"";position:absolute;inset:12px;border-radius:50%;background:rgba(255,255,255,.96);box-shadow:inset 0 0 0 1px rgba(148,163,184,.18)}
.launch-score-ring__inner{position:absolute;inset:0;display:grid;place-items:center;z-index:1;text-align:center;padding:18px}
.launch-score-ring__inner span{display:block;font-size:12px;color:var(--muted);margin-bottom:4px}
.launch-score-ring__inner strong{display:block;font-size:40px;line-height:1;font-weight:950;color:var(--text)}
.launch-score-note{padding:12px 14px;border-radius:16px;border:1px solid rgba(148,163,184,.18);background:rgba(248,250,252,.85);font-size:13px;line-height:1.8;color:var(--text);margin-top:10px}
.launch-score-note.is-ok{background:rgba(34,197,94,.10);border-color:rgba(34,197,94,.18)}
.launch-score-note.is-warn{background:rgba(245,158,11,.10);border-color:rgba(245,158,11,.20)}
.launch-score-note.is-danger{background:rgba(239,68,68,.10);border-color:rgba(239,68,68,.20)}
.launch-kpi-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.launch-kpi-pill{padding:12px 14px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);display:flex;align-items:center;gap:10px}
.launch-kpi-pill span{font-size:12px;color:#dbeafe}
.launch-kpi-pill b{font-size:18px;color:#fff}
.launch-kpi-pill.is-warn{background:rgba(245,158,11,.16)}
.launch-kpi-pill.is-danger{background:rgba(239,68,68,.16)}
.launch-metric-card{padding:18px;border-radius:22px;background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.78));box-shadow:0 16px 36px rgba(15,23,42,.08)}
.launch-metric-card span{display:block;font-size:12px;color:var(--muted)}
.launch-metric-card b{display:block;margin-top:8px;font-size:30px;line-height:1.1;font-weight:950;color:var(--text)}
.launch-metric-card small{display:block;margin-top:8px;font-size:12px;color:var(--muted);line-height:1.7}
.launch-filter-pills{display:flex;gap:8px;flex-wrap:wrap}
.launch-filter-pills .btn.is-active{box-shadow:0 0 0 2px rgba(37,99,235,.14) inset;border-color:rgba(37,99,235,.28)}
.launch-check-table tr.is-hidden{display:none}
.launch-action-card{position:relative;overflow:hidden}
.launch-action-card:before{content:"";position:absolute;inset:0;opacity:.9;background:linear-gradient(135deg,transparent,rgba(255,255,255,.28));pointer-events:none}
.launch-action-card.is-fail{border-color:rgba(239,68,68,.18);background:linear-gradient(180deg,rgba(254,242,242,.94),rgba(255,255,255,.9))}
.launch-action-card.is-warn{border-color:rgba(245,158,11,.18);background:linear-gradient(180deg,rgba(255,251,235,.94),rgba(255,255,255,.9))}
.launch-action-card.is-ok{border-color:rgba(34,197,94,.18);background:linear-gradient(180deg,rgba(240,253,244,.94),rgba(255,255,255,.9))}

@media (max-width: 1180px){
  .command-deck-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width: 900px){
  .launch-center-hero{grid-template-columns:1fr}
  .command-deck-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 640px){
  .command-deck-grid{grid-template-columns:1fr}
  .launch-center-main,.launch-center-score{border-radius:22px}
  .launch-center-main{padding:18px}
  .launch-center-main h2{font-size:26px}
  .launch-score-ring{width:150px;height:150px}
}


/* Part 7 — Analytics + Growth + Storefront conversion */
.analytics-hero{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(300px,.85fr);gap:14px;margin-bottom:14px}
.analytics-hero__main,.analytics-hero__side{padding:18px;border-radius:26px;box-shadow:0 20px 60px rgba(15,23,42,.08)}
.analytics-hero__main{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:18px;align-items:center;background:linear-gradient(135deg,rgba(11,85,148,.08),rgba(59,193,198,.10) 58%,rgba(255,255,255,.96));border:1px solid rgba(11,85,148,.12)}
.analytics-hero__copy h2{margin:10px 0 8px;font-size:30px;line-height:1.15}
.analytics-hero__copy p{margin:0;color:var(--muted);max-width:64ch;line-height:1.85}
.analytics-chip-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}
.analytics-chip{display:inline-flex;align-items:center;gap:6px;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.72);border:1px solid rgba(15,23,42,.08);font-size:12px;font-weight:800;color:var(--text)}
.analytics-hero__score{display:flex;flex-direction:column;align-items:center;gap:12px;min-width:220px}
.analytics-score-ring{--score:50;width:170px;height:170px;border-radius:50%;display:grid;place-items:center;background:conic-gradient(var(--brand) calc(var(--score)*1%), rgba(15,23,42,.08) 0)}
.analytics-score-ring__inner{width:132px;height:132px;border-radius:50%;background:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;box-shadow:inset 0 0 0 1px rgba(15,23,42,.06)}
.analytics-score-ring__inner strong{font-size:42px;line-height:1;font-weight:900;color:var(--text)}
.analytics-score-ring__inner span{font-size:12px;font-weight:800;color:var(--muted)}
.analytics-score-text{text-align:center;max-width:230px}
.analytics-score-text__title{font-size:15px;font-weight:900;margin-bottom:6px;color:var(--text)}
.analytics-playbook{display:grid;gap:10px}
.analytics-playbook__item{padding:14px 14px;border-radius:18px;border:1px solid rgba(15,23,42,.08);background:#fff}
.analytics-playbook__item.tone-warn{background:linear-gradient(180deg,rgba(255,251,235,.95),rgba(255,255,255,.95));border-color:rgba(245,158,11,.22)}
.analytics-playbook__item.tone-ok{background:linear-gradient(180deg,rgba(240,253,244,.95),rgba(255,255,255,.95));border-color:rgba(34,197,94,.18)}
.analytics-playbook__item.tone-info{background:linear-gradient(180deg,rgba(239,246,255,.95),rgba(255,255,255,.95));border-color:rgba(14,165,233,.18)}
.analytics-playbook__title{font-weight:900;margin-bottom:6px;color:var(--text)}
.analytics-playbook__item p{margin:0;color:var(--muted);line-height:1.75;font-size:13px}
.analytics-snapshot-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:14px}
.analytics-snapshot{padding:16px;border-radius:22px;box-shadow:0 16px 40px rgba(15,23,42,.05)}
.analytics-snapshot__eyebrow{font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;color:var(--muted);margin-bottom:8px}
.analytics-snapshot__value{font-size:28px;font-weight:900;color:var(--text);display:flex;align-items:flex-end;gap:6px}
.analytics-snapshot__value small{font-size:12px;color:var(--muted);padding-bottom:4px}
.analytics-snapshot p{margin:8px 0 0;color:var(--muted);line-height:1.8;font-size:13px}
.store-conversion-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:12px}
.store-conversion-card{padding:15px 16px;border-radius:22px;display:flex;align-items:flex-start;gap:12px;box-shadow:0 14px 40px rgba(15,23,42,.08);background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(255,255,255,.88))}
.store-conversion-card__icon{width:44px;height:44px;border-radius:16px;background:linear-gradient(135deg,var(--brand),var(--brand2));display:grid;place-items:center;font-size:20px;color:#fff;box-shadow:0 12px 22px rgba(11,85,148,.16)}
.store-conversion-card__title{font-weight:900;margin-bottom:4px;color:var(--text)}
.store-jump-strip,.store-growth-strip{margin-top:12px;padding:16px 18px;border-radius:24px;display:flex;align-items:center;justify-content:space-between;gap:16px;box-shadow:0 16px 44px rgba(15,23,42,.06)}
.store-jump-strip{background:linear-gradient(135deg,rgba(11,85,148,.08),rgba(59,193,198,.09) 62%,rgba(255,255,255,.96));border:1px solid rgba(11,85,148,.12)}
.store-jump-strip__actions{display:flex;flex-wrap:wrap;gap:8px;justify-content:flex-end}
.store-jump-strip__actions .chip{border-color:rgba(11,85,148,.18);background:rgba(255,255,255,.84)}
.store-growth-strip{background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(244,248,252,.96));border:1px solid var(--border)}
.store-growth-strip__stats{display:flex;flex-wrap:wrap;gap:8px;justify-content:flex-end}
@media (max-width: 1100px){
  .analytics-hero{grid-template-columns:1fr}
  .analytics-snapshot-grid{grid-template-columns:1fr}
  .store-conversion-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 780px){
  .analytics-hero__main{grid-template-columns:1fr}
  .analytics-hero__copy h2{font-size:26px}
  .analytics-hero__score{min-width:0}
  .store-conversion-grid{grid-template-columns:1fr}
  .store-jump-strip,.store-growth-strip{flex-direction:column;align-items:flex-start}
  .store-jump-strip__actions,.store-growth-strip__stats{justify-content:flex-start}
}


/* Part 8 — AI growth + shipping intelligence */
.ai-growth-shell{display:grid;gap:18px}
.ai-growth-hero{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(280px,.9fr);gap:18px;align-items:stretch;background:linear-gradient(135deg,rgba(7,22,52,.98),rgba(15,57,121,.95));color:#fff;border:1px solid rgba(125,174,255,.2);box-shadow:0 20px 60px rgba(3,10,25,.18)}
.ai-growth-hero h2{margin:12px 0 8px;font-size:clamp(28px,4vw,38px);line-height:1.14}
.ai-growth-hero p{margin:0;color:rgba(255,255,255,.82);max-width:72ch}
.ai-growth-hero__copy,.ai-growth-hero__score{display:grid;gap:14px}
.ai-growth-chip-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:4px}
.score-ring--ai{width:154px;height:154px;background:conic-gradient(var(--gold,#f5c15d) 0deg,var(--gold,#f5c15d) var(--score-deg),rgba(255,255,255,.13) var(--score-deg),rgba(255,255,255,.13) 360deg)}
.ai-growth-hero__score{justify-items:center;text-align:center;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:24px;padding:20px}
.ai-growth-hero__meta{max-width:34ch}
.ai-signal-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:14px}
.ai-signal-card{display:grid;gap:10px;padding:18px;border:1px solid rgba(130,154,192,.18);background:linear-gradient(180deg,rgba(255,255,255,.95),rgba(246,249,255,.92))}
.ai-signal-card__eyebrow{font-size:12px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:var(--muted,#6b7280)}
.ai-signal-card__value{font-size:30px;font-weight:950;line-height:1;color:var(--ink,#101828)}
.ai-signal-card__value small{font-size:12px;margin-inline-start:6px;color:var(--muted,#6b7280)}
.ai-signal-card p{margin:0;color:var(--muted,#6b7280);font-size:13px;line-height:1.6}
.ai-signal-card.tone-ok{border-color:rgba(39,174,96,.22)}
.ai-signal-card.tone-warn{border-color:rgba(245,158,11,.22)}
.ai-reco-list,.ai-copy-stack{display:grid;gap:12px}
.ai-reco-item{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:14px;align-items:flex-start;padding:16px 18px;border-radius:20px;border:1px solid rgba(130,154,192,.18);background:rgba(255,255,255,.9)}
.ai-reco-item b{display:block;margin-bottom:6px;font-size:15px;color:var(--ink,#101828)}
.ai-reco-item p{margin:0;color:var(--muted,#6b7280);line-height:1.65}
.ai-reco-item.tone-warn{border-color:rgba(245,158,11,.26);background:linear-gradient(180deg,rgba(255,248,235,.95),rgba(255,255,255,.95))}
.ai-reco-item.tone-ok{border-color:rgba(39,174,96,.22);background:linear-gradient(180deg,rgba(241,253,246,.95),rgba(255,255,255,.95))}
.ai-playbook-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.ai-playbook-card{padding:18px;border-radius:20px;border:1px solid rgba(130,154,192,.16);background:linear-gradient(180deg,rgba(247,250,255,.96),rgba(255,255,255,.92))}
.ai-playbook-card b{display:block;margin-bottom:8px}
.ai-playbook-card p{margin:0;color:var(--muted,#6b7280);line-height:1.65}
.ai-copy-card{padding:16px;border-radius:20px;border:1px solid rgba(130,154,192,.16);background:linear-gradient(180deg,rgba(11,31,68,.96),rgba(17,52,110,.96));color:#fff;display:grid;gap:12px}
.ai-copy-card pre{white-space:pre-wrap;margin:0;font:inherit;color:rgba(255,255,255,.88);line-height:1.8}
.shipping-intel-mini-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.shipping-mini-card{padding:16px;border-radius:18px;border:1px solid rgba(130,154,192,.16);background:linear-gradient(180deg,rgba(247,250,255,.96),rgba(255,255,255,.92));display:grid;gap:8px}
.shipping-mini-card__title{font-size:12px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;color:var(--muted,#6b7280)}
.shipping-mini-card__value{font-size:28px;font-weight:950;color:var(--ink,#101828)}
.shipping-mini-card__value small{font-size:12px;margin-inline-start:6px;color:var(--muted,#6b7280)}
.shipping-mini-card p{margin:0;color:var(--muted,#6b7280);font-size:13px;line-height:1.6}
.shipping-mini-card.tone-ok{border-color:rgba(39,174,96,.22)}
.shipping-mini-card.tone-warn{border-color:rgba(245,158,11,.22)}
.analytics-ai-bridge{display:flex;align-items:center;justify-content:space-between;gap:18px;margin:16px 0;background:linear-gradient(135deg,rgba(10,35,78,.98),rgba(16,71,148,.95));color:#fff;border:1px solid rgba(127,176,255,.22)}
.analytics-ai-bridge h3{margin:8px 0 6px}
.analytics-ai-bridge p{margin:0;color:rgba(255,255,255,.8);max-width:70ch}
.shipping-intel-hero{display:grid;grid-template-columns:320px minmax(0,1fr);gap:16px;margin-top:16px}
.shipping-intel-hero__score{padding:18px;border-radius:22px;background:linear-gradient(180deg,rgba(9,31,69,.96),rgba(17,60,123,.95));color:#fff;display:grid;gap:12px;align-content:start}
.shipping-intel-hero__score p{margin:0;color:rgba(255,255,255,.82);line-height:1.7}
.shipping-intel-hero__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.shipping-reco-strip{display:grid;gap:12px;margin-top:14px}
@media (max-width: 1180px){.ai-signal-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.ai-playbook-grid{grid-template-columns:1fr}.shipping-intel-hero{grid-template-columns:1fr}.shipping-intel-hero__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width: 860px){.ai-growth-hero,.analytics-ai-bridge{grid-template-columns:1fr;display:grid}.ai-signal-grid,.shipping-intel-mini-grid,.shipping-intel-hero__grid{grid-template-columns:1fr}.ai-reco-item{grid-template-columns:1fr}.ai-growth-hero__score{justify-items:start;text-align:start}.score-ring--ai{width:132px;height:132px}}

/* Part 11 — payment readiness + order payment journey */
.payment-readiness-band{display:grid;grid-template-columns:minmax(0,1.3fr) minmax(260px,.9fr);gap:14px;padding:16px;border:1px solid rgba(15,23,42,.08);border-radius:18px;background:linear-gradient(135deg,rgba(37,99,235,.06),rgba(15,23,42,.02));}
.payment-readiness-score{display:flex;gap:14px;align-items:center;min-width:0}
.payment-readiness-score__ring{width:82px;height:82px;border-radius:999px;display:grid;place-items:center;font-weight:900;font-size:20px;border:8px solid rgba(37,99,235,.14);background:#fff;color:#0f172a;box-shadow:0 12px 30px rgba(15,23,42,.08)}
.payment-readiness-score__ring.ok{border-color:rgba(22,163,74,.22);color:#166534}
.payment-readiness-score__ring.warn{border-color:rgba(245,158,11,.26);color:#92400e}
.payment-readiness-score__ring.danger{border-color:rgba(220,38,38,.22);color:#991b1b}
.payment-readiness-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.payment-mini-stat,.payment-checklist__item,.payment-flow-event{padding:12px;border:1px solid rgba(15,23,42,.08);border-radius:14px;background:#fff}
.payment-mini-stat span{display:block;font-size:12px;color:#64748b;margin-bottom:6px}
.payment-mini-stat b{font-size:20px}
.payment-checklist,.payment-next-list,.payment-flow-events{display:flex;flex-direction:column;gap:10px}
.payment-checklist__item{display:flex;gap:10px;align-items:flex-start}
.payment-next-list{margin:12px 0 0;padding-inline-start:18px}
.payment-next-list li{margin:0;color:#334155}
.payment-flow-panel{margin-top:12px}
.payment-flow-stats{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.payment-flow-events{margin-top:12px}
.payment-flow-event{display:flex;justify-content:space-between;gap:10px;align-items:center;flex-wrap:wrap}
.payment-diagnostics-page .table td,.payment-diagnostics-page .table th{vertical-align:top}
@media (max-width: 980px){
  .payment-readiness-band{grid-template-columns:1fr}
  .payment-readiness-stats{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width: 720px){
  .payment-readiness-score{align-items:flex-start}
  .payment-readiness-stats{grid-template-columns:1fr}
}


/* Part 12 — final landing/storefront/CRM polish */
.merchant-outcomes-wrap{display:grid;gap:18px}
.merchant-outcomes-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.merchant-outcome-card{padding:20px;border-radius:24px;border:1px solid rgba(15,23,42,.08);background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(245,248,252,.96));box-shadow:0 16px 44px rgba(15,23,42,.05);display:grid;gap:10px}
.merchant-outcome-card__tag{display:inline-flex;align-items:center;justify-content:center;width:max-content;max-width:100%;padding:7px 12px;border-radius:999px;background:rgba(11,85,148,.08);color:var(--brand);font-size:11px;font-weight:900;letter-spacing:.06em;text-transform:uppercase}
.merchant-outcome-card b{font-size:18px;color:var(--text)}
.merchant-outcome-card p{margin:0;color:var(--muted);line-height:1.8;font-size:14px}
.launch-decision-band{padding:22px;border-radius:28px;background:linear-gradient(135deg,rgba(7,22,52,.98),rgba(15,57,121,.95));color:#fff;display:grid;gap:16px;border:1px solid rgba(125,174,255,.18)}
.launch-decision-band h3{margin:6px 0 0;font-size:28px;line-height:1.25}
.launch-decision-band__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.launch-decision-card{padding:16px;border-radius:22px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.09)}
.launch-decision-card b{display:block;margin-bottom:8px}
.launch-decision-card p{margin:0;color:rgba(255,255,255,.82);line-height:1.8;font-size:14px}
.store-service-rail{display:grid;gap:12px;margin-top:12px}
.store-service-rail__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.store-service-card{padding:16px 18px;border-radius:22px;display:flex;align-items:flex-start;gap:12px;background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(246,249,252,.94));box-shadow:0 12px 34px rgba(15,23,42,.05)}
.store-service-card__icon{width:44px;height:44px;border-radius:16px;display:grid;place-items:center;background:linear-gradient(135deg,rgba(11,85,148,.16),rgba(59,193,198,.18));font-size:20px}
.store-service-card__label{font-size:12px;font-weight:900;color:var(--muted);text-transform:uppercase;letter-spacing:.06em}
.store-service-card__value{font-size:19px;font-weight:900;color:var(--text);margin:4px 0 6px}
.store-service-card p{margin:0;color:var(--muted);font-size:13px;line-height:1.7}
.store-order-guide{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,.95fr);gap:18px;padding:18px 20px;border-radius:24px;background:linear-gradient(135deg,rgba(11,85,148,.07),rgba(59,193,198,.09),rgba(255,255,255,.98));border:1px solid rgba(11,85,148,.12)}
.store-order-guide__steps{display:grid;gap:10px}
.store-order-guide__step{display:grid;grid-template-columns:32px minmax(0,1fr);gap:12px;align-items:flex-start;padding:12px 14px;border-radius:18px;background:#fff;border:1px solid rgba(15,23,42,.08)}
.store-order-guide__step span{width:32px;height:32px;border-radius:999px;display:grid;place-items:center;font-weight:900;color:#fff;background:linear-gradient(135deg,var(--brand),var(--brand2))}
.store-order-guide__step p{margin:0;color:var(--muted);line-height:1.75;font-size:13px}
.store-filter-empty{display:flex;align-items:center;justify-content:space-between;gap:14px;margin:12px 0;padding:16px 18px;border-radius:22px;border:1px dashed rgba(15,23,42,.14);background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(247,250,255,.95))}
.store-filter-empty.is-hidden{display:none}
.store-filter-empty__icon{width:48px;height:48px;border-radius:18px;display:grid;place-items:center;background:rgba(11,85,148,.08);font-size:24px}
.retention-hero{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(280px,.95fr);gap:16px;padding:18px 20px;border-radius:24px;background:linear-gradient(135deg,rgba(8,30,67,.98),rgba(15,57,121,.95));color:#fff;border:1px solid rgba(125,174,255,.16)}
.retention-hero__score{display:grid;grid-template-columns:110px minmax(0,1fr);gap:16px;align-items:center}
.retention-score-ring{width:110px;height:110px;border-radius:50%;display:grid;place-items:center;background:radial-gradient(circle at center,#fff 0 44px,transparent 45px),conic-gradient(var(--gold,#f5c15d) calc(var(--retention-deg,0) * 1deg),rgba(255,255,255,.14) 0);font-size:28px;font-weight:950;color:#fff;position:relative}
.retention-score-ring small{font-size:12px;display:block;color:rgba(255,255,255,.78)}
.retention-hero h3{margin:0 0 6px;font-size:26px;line-height:1.25}
.retention-hero p{margin:0;color:rgba(255,255,255,.82);line-height:1.8}
.retention-hero__focus{display:grid;gap:10px}
.retention-focus-item{padding:14px 16px;border-radius:18px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.09);color:rgba(255,255,255,.88);line-height:1.75}
.retention-signal-grid,.customer-signal-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.retention-signal-card,.customer-signal-card{padding:16px 18px;border-radius:20px}
.retention-signal-card .page-title small{font-size:12px;color:var(--muted);font-weight:700}
.crm-command-strip{display:grid;gap:16px;padding:18px 20px;border-radius:24px;background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(245,248,252,.96));border:1px solid rgba(15,23,42,.08)}
.crm-command-strip__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.crm-mini-stat{padding:14px 16px;border-radius:18px;background:#fff;border:1px solid rgba(15,23,42,.08);box-shadow:0 12px 30px rgba(15,23,42,.04)}
.crm-mini-stat span,.returns-mini-stat span{display:block;font-size:12px;color:var(--muted);margin-bottom:6px}
.crm-mini-stat b,.returns-mini-stat b{font-size:22px}
.crm-command-strip__list,.returns-ops-strip__tips{display:grid;gap:10px}
.crm-command-tip,.returns-ops-tip,.customer-health-tip{padding:13px 15px;border-radius:16px;background:rgba(11,85,148,.05);border:1px solid rgba(11,85,148,.08);color:var(--text);line-height:1.8}
.customer-health-band{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(300px,.95fr);gap:16px;padding:18px 20px;border-radius:24px;background:linear-gradient(180deg,rgba(255,255,255,.99),rgba(246,249,253,.96));border:1px solid rgba(15,23,42,.08)}
.customer-health-band__main{display:grid;grid-template-columns:110px minmax(0,1fr);gap:16px;align-items:center}
.customer-health-score{width:110px;height:110px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,var(--brand),var(--brand2));color:#fff;font-size:30px;font-weight:950;box-shadow:0 20px 40px rgba(11,85,148,.18)}
.customer-health-score small{display:block;font-size:12px;color:rgba(255,255,255,.82)}
.customer-health-band h3{margin:0 0 6px;font-size:24px;line-height:1.3}
.customer-health-band p{margin:0;color:var(--muted);line-height:1.8}
.customer-health-band__focus{display:grid;gap:10px}
.returns-ops-strip{display:grid;gap:16px;padding:18px 20px;border-radius:24px;background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(248,250,253,.96));border:1px solid rgba(15,23,42,.08)}
.returns-ops-strip__grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:12px}
.returns-mini-stat{padding:14px 16px;border-radius:18px;background:#fff;border:1px solid rgba(15,23,42,.08)}
@media (max-width: 1180px){
  .merchant-outcomes-grid,.store-service-rail__grid,.retention-signal-grid,.customer-signal-grid,.crm-command-strip__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .launch-decision-band__grid,.returns-ops-strip__grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .retention-hero,.customer-health-band,.store-order-guide{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .merchant-outcomes-grid,.store-service-rail__grid,.retention-signal-grid,.customer-signal-grid,.crm-command-strip__grid,.launch-decision-band__grid,.returns-ops-strip__grid{grid-template-columns:1fr}
  .retention-hero__score,.customer-health-band__main{grid-template-columns:1fr}
  .retention-score-ring,.customer-health-score{width:88px;height:88px}
  .store-filter-empty{flex-direction:column;align-items:flex-start}
}


/* Part 13 — pre-launch closeout */
.prelaunch-closeout-page .prelaunch-closeout-hero{align-items:stretch}
.prelaunch-kv-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.prelaunch-kv-grid .mini-stat{padding:14px 16px;border-radius:16px;border:1px solid rgba(15,23,42,.08);background:#fff;display:grid;gap:4px}
.prelaunch-kv-grid .mini-stat span{font-size:12px;color:var(--muted,#6b7280);font-weight:700}
.prelaunch-kv-grid .mini-stat b{font-size:18px;color:var(--ink,#101828)}
@media (max-width: 768px){.prelaunch-kv-grid{grid-template-columns:1fr}}


/* Part 14 — live payment matrix + release cleanup */
.matrix-hero,
.release-cleanup-hero{margin-bottom:0}
.live-payment-matrix-page .table td code,
.release-cleanup-page .table td code{font-size:12px;white-space:normal;word-break:break-all}
.matrix-url-box summary{cursor:pointer;font-weight:700}
.matrix-url-box{border:1px dashed rgba(255,255,255,.12);border-radius:14px;padding:8px 10px;background:rgba(255,255,255,.03)}
.release-cleanup-page .payment-checklist__item,
.live-payment-matrix-page .payment-checklist__item{align-items:flex-start}
.release-cleanup-page .table-wrap,
.live-payment-matrix-page .table-wrap{overflow:auto}
.release-cleanup-page .notice,
.live-payment-matrix-page .notice{box-shadow:0 16px 40px rgba(0,0,0,.12)}


.provider-execution-card .execution-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.provider-execution-card .execution-step{display:flex;flex-direction:column;gap:6px;padding:12px;border:1px solid rgba(255,255,255,.08);border-radius:14px;background:rgba(255,255,255,.03)}
.provider-execution-card .execution-step select{width:100%;min-height:40px;border-radius:10px;border:1px solid rgba(255,255,255,.12);background:var(--panel-card,#111827);color:inherit;padding:0 10px}
.manifest-code{padding:14px;border-radius:14px;background:rgba(17,24,39,.82);border:1px dashed rgba(255,255,255,.12);font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.7;max-height:360px;overflow:auto}
@media (max-width: 900px){.provider-execution-card .execution-grid{grid-template-columns:1fr}}

/* Part 16 — launch signoff + ops handoff */
.launch-signoff-page .notice,
.ops-handoff-page .notice { border-radius: 22px; }
.launch-signoff-page textarea { min-height: 140px; }
.launch-signoff-page .check input { margin-top: 4px; }
.ops-handoff-page .code-block { white-space: pre-wrap; word-break: break-word; }


/* Patch — OTP fallback + phone country input */
.otp .otp-boxes{display:none}
.otp.is-ready .otp-boxes{display:flex}
.otp .otp-hidden{position:static; inset:auto; width:100%; height:56px; opacity:1; background:transparent; color:inherit; caret-color:auto; letter-spacing:normal; border:1px solid var(--border); border-radius:14px; padding:0 14px}
.otp.is-ready .otp-hidden{position:absolute; inset:0; width:100%; height:56px; opacity:.01; background:transparent; color:transparent; caret-color:transparent; letter-spacing:10px; border:0; padding:0}
.phone-country{display:flex; align-items:center; gap:10px; border:1px solid var(--border); border-radius:14px; padding:0 12px; background:rgba(255,255,255,.04)}
.phone-country__prefix{font-weight:800; white-space:nowrap; direction:ltr}
.phone-country input[data-phone-country-local]{border:0 !important; background:transparent !important; box-shadow:none !important; flex:1; min-width:0; direction:ltr}
:root[data-theme="light"] .phone-country{background:#fff}

/* Patch 09: conversion UX, sticky category rail, product action row */
.menu-filters{border:1px solid var(--border); background: color-mix(in srgb, var(--card_bg) 88%, transparent)}
.menu-filters .chip.active{background:linear-gradient(135deg,var(--brand),var(--brand2)); color:var(--on_brand); border-color:transparent}
.store-category-rail{margin-top:12px; display:flex; gap:12px; align-items:center; padding:12px; position:sticky; top:10px; z-index:22; border:1px solid var(--border); backdrop-filter: blur(10px); background: color-mix(in srgb, var(--card_bg) 84%, transparent)}
.store-category-rail__label{font-weight:800; white-space:nowrap; color:var(--text)}
.store-category-rail__items{display:flex; gap:8px; overflow:auto; padding-bottom:2px; scrollbar-width:none; -ms-overflow-style:none}
.store-category-rail__items::-webkit-scrollbar{display:none}
.store-category-rail__item{display:inline-flex; align-items:center; gap:8px; white-space:nowrap; padding:10px 12px; border-radius:999px; border:1px solid var(--border); text-decoration:none; color:var(--text); background:color-mix(in srgb, var(--page_bg) 70%, var(--card_bg)); box-shadow:0 6px 16px rgba(15,23,42,.06)}
.store-category-rail__item b{display:inline-flex; min-width:22px; height:22px; border-radius:999px; align-items:center; justify-content:center; background:color-mix(in srgb, var(--brand2) 18%, transparent); color:var(--text); font-size:11px; padding:0 6px}
.store-category-rail__item:hover{transform:translateY(-1px); border-color:color-mix(in srgb, var(--brand) 34%, var(--border))}
.product-actions-row{display:flex; gap:8px; margin-top:10px; align-items:center; flex-wrap:wrap}
.product-link-primary,.product-link-secondary{appearance:none; border:none; cursor:pointer; text-decoration:none; border-radius:999px; padding:9px 12px; font-weight:800; font-size:13px; display:inline-flex; align-items:center; justify-content:center; transition:transform .12s ease, opacity .12s ease, border-color .12s ease}
.product-link-primary{background:linear-gradient(135deg,var(--brand),var(--brand2)); color:var(--on_brand); box-shadow:0 10px 24px rgba(15,23,42,.12)}
.product-link-secondary{background:transparent; color:var(--text); border:1px solid var(--border)}
.product-link-primary:hover,.product-link-secondary:hover{transform:translateY(-1px)}
.product-card .product-desc{display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; min-height:38px}
.product-card .product-badges{min-height:34px}
@media (max-width: 900px){
  .store-category-rail{top:8px; padding:10px; flex-direction:column; align-items:stretch}
  .store-category-rail__label{font-size:13px}
  .product-actions-row{flex-direction:column; align-items:stretch}
  .product-link-primary,.product-link-secondary{width:100%}
}

/* Patch 12 — Storefront family direction + builder realization */
.store-family-band{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:10px}
.store-family-pill{display:inline-flex;align-items:center;gap:6px;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);color:var(--hero_text);font-size:12px;font-weight:900;backdrop-filter:blur(10px)}
.store-family-pill.is-soft{background:rgba(15,23,42,.24)}
.store-family-pill.is-hero{background:linear-gradient(135deg,rgba(255,255,255,.24),rgba(255,255,255,.12));border-color:rgba(255,255,255,.28)}
.store-hero-summary{font-size:15px;line-height:1.9;color:var(--hero_text);font-weight:700;max-width:720px;margin-top:8px}
.store-hero-note{font-size:13px;line-height:1.9;color:var(--hero_muted);max-width:760px;margin-top:6px}
.store-hero-metrics{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-top:14px;max-width:760px}
.store-hero-metric{padding:12px 14px;border-radius:18px;background:linear-gradient(180deg,rgba(255,255,255,.14),rgba(255,255,255,.08));border:1px solid rgba(255,255,255,.14);backdrop-filter:blur(12px)}
.store-hero-metric b{display:block;font-size:18px;line-height:1.1;color:#fff;margin-bottom:5px}
.store-hero-metric span{display:block;font-size:12px;color:var(--hero_muted);font-weight:700}
.store-category-showcase{margin-top:14px}
.store-category-showcase__head{margin-bottom:10px}
.store-category-showcase__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.store-category-showcase__card{position:relative;min-height:160px;display:flex;align-items:flex-end;padding:16px;border-radius:24px;overflow:hidden;background:linear-gradient(180deg,rgba(15,23,42,.18),rgba(15,23,42,.52)),var(--cover) center/cover no-repeat;text-decoration:none;box-shadow:0 18px 48px rgba(15,23,42,.14)}
.store-category-showcase__overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(8,15,31,.08),rgba(8,15,31,.74));pointer-events:none}
.store-category-showcase__content{position:relative;z-index:1;color:#fff}
.store-category-showcase__name{font-size:18px;font-weight:900;line-height:1.25;margin-bottom:4px}
.store-category-showcase__meta{font-size:12px;font-weight:800;color:rgba(255,255,255,.86)}
.builder-sec-head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;flex-wrap:wrap;margin-bottom:14px}
.builder-testimonials,.builder-faq,.builder-brand-marks{padding:18px 20px;border-radius:24px;box-shadow:0 14px 38px rgba(15,23,42,.06)}
.builder-testimonials__grid,.builder-brand-marks__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.builder-testimonial-card{padding:16px;border-radius:20px;background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(246,249,252,.94));border:1px solid var(--border)}
.builder-testimonial-card__quote{font-size:14px;line-height:1.9;color:var(--text);font-weight:700}
.builder-testimonial-card__name{margin-top:12px;font-size:12px;font-weight:900;color:var(--muted);text-transform:uppercase;letter-spacing:.04em}
.builder-faq__list{display:grid;gap:10px}
.builder-faq-item{border:1px solid var(--border);border-radius:18px;background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(246,249,252,.94));padding:0 16px}
.builder-faq-item summary{cursor:pointer;list-style:none;padding:16px 0;font-size:15px;font-weight:900;color:var(--text)}
.builder-faq-item summary::-webkit-details-marker{display:none}
.builder-faq-item__body{padding:0 0 16px;color:var(--muted);font-size:14px;line-height:1.9}
.builder-brand-mark{display:flex;align-items:center;justify-content:center;min-height:74px;padding:14px 16px;border-radius:18px;border:1px solid var(--border);background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(246,249,252,.94));font-size:16px;font-weight:900;color:var(--text);text-align:center}
.builder-footer-note{padding:14px 16px;border-radius:18px;color:var(--muted);font-size:13px;line-height:1.9;text-align:center}
.menu-scope.store-family--electronics .menu-hero{box-shadow:0 24px 60px rgba(37,99,235,.18)}
.menu-scope.store-family--fashion .menu-hero,.menu-scope.store-family--beauty .menu-hero{box-shadow:0 24px 60px rgba(168,85,247,.16)}
.menu-scope.store-family--grocery .menu-hero,.menu-scope.store-family--food .menu-hero,.menu-scope.store-family--cafe .menu-hero{box-shadow:0 24px 60px rgba(16,185,129,.16)}
.menu-scope.store-design--premium .menu-hero-bg{background:radial-gradient(circle at top right,rgba(255,215,106,.22),transparent 32%),radial-gradient(circle at bottom left,rgba(255,255,255,.08),transparent 28%)}
.menu-scope.store-design--bold .menu-hero-bg{background:radial-gradient(circle at top left,rgba(255,255,255,.18),transparent 30%),radial-gradient(circle at bottom right,rgba(59,193,198,.22),transparent 28%)}
.industry-builder-band{margin-top:18px}
.industry-builder-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.industry-builder-card{padding:18px 18px 16px;border-radius:24px;background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(245,248,252,.96));border:1px solid rgba(11,85,148,.10);box-shadow:0 18px 48px rgba(15,23,42,.06)}
.industry-builder-card__eyebrow{font-size:12px;font-weight:1000;letter-spacing:.05em;text-transform:uppercase;color:#0B5594;margin-bottom:8px}
.industry-builder-card__title{font-size:16px;font-weight:900;color:#0f172a;line-height:1.8;margin-bottom:6px}
.industry-builder-card__desc{font-size:13px;line-height:1.8;color:#475569}
@media (max-width: 980px){
  .store-hero-metrics,.store-category-showcase__grid,.builder-testimonials__grid,.builder-brand-marks__grid,.industry-builder-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 720px){
  .store-hero-metrics,.store-category-showcase__grid,.builder-testimonials__grid,.builder-brand-marks__grid,.industry-builder-grid{grid-template-columns:1fr}
  .store-category-showcase__card{min-height:132px}
}
