:root{
  --bg:#f6f7fb;
  --panel:#ffffff;
  --ink:#101828;
  --muted:#667085;
  --line:#e5e7eb;
  --brand:#5b5df7;
  --brand2:#00c2a8;
  --danger:#ef4444;
  --shadow:0 24px 70px rgba(16,24,40,.10);
  --radius:24px
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  background:var(--bg);
  color:var(--ink)
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
input,select,textarea,button{font:inherit}
textarea{min-height:110px;resize:vertical}

.page,.store-page{
  width:min(1180px,calc(100% - 28px));
  margin:0 auto;
  padding:28px 0 60px
}

.topbar,.store-top{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px min(5vw,44px);
  background:rgba(255,255,255,.82);
  border-bottom:1px solid rgba(229,231,235,.8);
  backdrop-filter:blur(16px)
}

.brand,.store-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:-.04em
}

.brand-mark{
  width:38px;
  height:38px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  font-weight:900
}

.topnav,.store-nav{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap
}

.topnav a,.store-nav a{
  padding:10px 13px;
  border-radius:999px;
  color:#344054;
  font-weight:700
}

.topnav a:hover,.store-nav a:hover{
  background:#f1f3ff;
  color:var(--brand)
}

.store-brand img{
  width:42px;
  height:42px;
  border-radius:14px;
  object-fit:cover;
  background:#fff;
  border:1px solid var(--line)
}

.hero{
  min-height:520px;
  align-items:center
}

.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px
}

.hero h1,.section-head h1,.section-head h2,.auth-card h1,.dash-top h1,.shop-hero h1,.detail-card h1{
  letter-spacing:-.055em;
  line-height:.95
}

.hero h1{
  font-size:clamp(42px,7vw,82px);
  margin:10px 0 18px
}

.lead{
  font-size:clamp(18px,2.4vw,23px);
  line-height:1.5;
  color:var(--muted);
  max-width:720px
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  font-weight:900;
  color:var(--brand)
}

.hero-card,.panel,.auth-card,.plan-card,.feature-card,.stat,.manage-card,.detail-card,.method-card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(229,231,235,.9);
  border-radius:var(--radius);
  box-shadow:var(--shadow)
}

.hero-card{
  padding:32px;
  transform:rotate(1deg)
}

.section{padding:34px 0}
.section-head{margin-bottom:18px}

.section-head h1,.section-head h2{
  font-size:clamp(32px,4vw,52px);
  margin:8px 0
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px
}

.btn{
  border:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 18px;
  border-radius:16px;
  background:#111827;
  color:#fff;
  font-weight:900;
  cursor:pointer;
  transition:.18s transform,.18s box-shadow,.18s background
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(17,24,39,.18)
}

.btn.primary{
  background:linear-gradient(135deg,var(--brand),#7c3aed)
}

.btn.ghost{
  background:#fff;
  color:#344054;
  border:1px solid var(--line)
}

.btn.danger{background:var(--danger)}
.btn.small{padding:9px 12px;border-radius:12px;font-size:13px}
.btn.full{width:100%}
.btn.secondary{background:#fff;color:#344054;border:1px solid var(--line)}

.nice-list{
  padding:0;
  margin:16px 0;
  list-style:none
}

.nice-list li{
  display:flex;
  gap:10px;
  margin:11px 0;
  color:#344054
}

.nice-list li:before{
  content:"";
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--brand2);
  margin-top:8px;
  flex:0 0 auto
}

.feature-grid,.plan-grid,.stat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px
}

.feature-card,.plan-card,.stat,.panel{padding:22px}

.plan-card{
  display:flex;
  flex-direction:column;
  gap:16px;
  min-height:420px
}

.plan-card.pro{
  border-color:rgba(91,93,247,.45);
  background:linear-gradient(180deg,#fff,#f4f4ff)
}

.price{
  font-size:42px;
  font-weight:950;
  letter-spacing:-.06em
}

.price small{
  font-size:15px;
  color:var(--muted);
  font-weight:800
}

.badge{
  display:inline-flex;
  align-items:center;
  width:max-content;
  border-radius:999px;
  background:#eef2ff;
  color:#4338ca;
  font-weight:900;
  padding:6px 10px;
  font-size:12px
}

.badge.locked{
  background:#fff7ed;
  color:#c2410c
}

.muted{color:var(--muted)}

.tabs{
  display:flex;
  gap:10px;
  margin:20px 0
}

.tabs a{
  padding:12px 18px;
  border-radius:999px;
  border:1px solid var(--line);
  font-weight:900;
  background:#fff
}

.tabs a.active{
  background:#111827;
  color:#fff
}

.auth-card{
  width:min(520px,100%);
  margin:34px auto;
  padding:28px
}

.auth-card.wide{width:min(900px,100%)}

label{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-weight:850;
  color:#344054
}

input,select,textarea{
  width:100%;
  border:1px solid #d0d5dd;
  border-radius:14px;
  background:#fff;
  padding:12px 13px;
  color:#101828;
  outline:none
}

input:focus,select:focus,textarea:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 4px rgba(91,93,247,.12)
}

label small{
  font-weight:600;
  color:var(--muted)
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px
}

.form-grid.compact{gap:12px}
.full-span{grid-column:1/-1}

.inline-form,.mini-form{
  display:flex;
  gap:10px;
  align-items:end;
  flex-wrap:wrap
}

.mini-form input,.mini-form select{min-width:120px}

.check{
  flex-direction:row;
  align-items:center
}

.check input{width:auto}

.flash{
  width:min(1180px,calc(100% - 28px));
  margin:14px auto;
  padding:14px 16px;
  border-radius:16px;
  font-weight:800;
  border:1px solid
}

.flash.success{
  background:#ecfdf3;
  color:#027a48;
  border-color:#abefc6
}

.flash.error{
  background:#fef3f2;
  color:#b42318;
  border-color:#fecdca
}

.flash.info{
  background:#eff8ff;
  color:#175cd3;
  border-color:#b2ddff
}

.footer,.store-footer{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  padding:26px min(5vw,44px);
  color:var(--muted);
  border-top:1px solid var(--line)
}

.dashboard-shell{
  display:grid;
  grid-template-columns:285px 1fr;
  gap:22px
}

.dash-side{
  align-self:start;
  position:sticky;
  top:86px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:16px;
  box-shadow:var(--shadow)
}

.store-mini{
  display:flex;
  align-items:center;
  gap:12px;
  padding:8px 8px 16px;
  border-bottom:1px solid var(--line);
  margin-bottom:12px
}

.store-mini img{
  width:48px;
  height:48px;
  border-radius:16px;
  object-fit:cover;
  background:#f2f4f7
}

.store-mini small{
  display:block;
  color:var(--muted)
}

.dash-nav{
  display:flex;
  flex-direction:column;
  gap:6px;
  max-height:calc(100vh - 190px);
  overflow-y:auto;
  padding-right:4px
}

.dash-nav::-webkit-scrollbar{width:6px}
.dash-nav::-webkit-scrollbar-thumb{background:#d0d5dd;border-radius:99px}

.dash-nav a{
  padding:11px 12px;
  border-radius:14px;
  font-weight:850;
  color:#344054
}

.dash-nav a:hover{
  background:#f4f4ff;
  color:var(--brand)
}

.dash-main{min-width:0}

.dash-top{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:start;
  margin-bottom:20px
}

.copy-box{
  display:flex;
  gap:8px;
  background:#fff;
  border:1px solid var(--line);
  padding:8px;
  border-radius:18px;
  max-width:520px
}

.copy-box.wide{max-width:none}

.copy-box input{
  border:0;
  box-shadow:none;
  background:#f9fafb
}

.stat-grid{
  grid-template-columns:repeat(4,1fr);
  margin-bottom:18px
}

.stat span{
  display:block;
  color:var(--muted);
  font-weight:850
}

.stat strong{
  display:block;
  font-size:28px;
  letter-spacing:-.04em;
  margin:8px 0
}

.stat small{color:var(--muted)}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px
}

.quota-list p{
  display:flex;
  justify-content:space-between;
  border-bottom:1px dashed var(--line);
  padding-bottom:10px
}

.rank-list{
  list-style:none;
  padding:0;
  margin:0
}

.rank-list li{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  border-bottom:1px solid var(--line)
}

.manage-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:18px
}

.manage-card{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:14px;
  padding:14px
}

.manage-card img{
  width:100%;
  height:180px!important;
  max-height:180px!important;
  min-height:180px!important;
  object-fit:cover;
  align-self:start;
  border-radius:18px;
  background:#f2f4f7
}

.manage-card form{
  display:grid;
  gap:10px
}

.manage-card.is-locked{
  opacity:.72;
  border-color:#fed7aa
}

.row-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px
}

.sub-card{grid-template-columns:120px 1fr}
.manage-card.sub-card>img{height:180px!important}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 8px
}

.table th{
  text-align:left;
  color:var(--muted);
  font-size:13px
}

.table td,.table th{
  padding:10px;
  vertical-align:top
}

.table tr:not(:first-child){background:#fff}

.table tr:not(:first-child) td:first-child{
  border-top-left-radius:14px;
  border-bottom-left-radius:14px
}

.table tr:not(:first-child) td:last-child{
  border-top-right-radius:14px;
  border-bottom-right-radius:14px
}

pre{
  white-space:pre-wrap;
  background:#0b1220;
  color:#e5e7eb;
  padding:16px;
  border-radius:18px;
  overflow:auto
}

.storefront{--bg:#fbfbfd}

.mode-digital{
  --brand:#6d5dfc;
  --brand2:#06b6d4
}

.mode-physical{
  --brand:#111827;
  --brand2:#f59e0b;
  background:#f8fafc
}

.shop-hero{
  display:grid;
  align-items:end;
  min-height:280px;
  margin:18px 0 26px;
  padding:34px;
  border-radius:34px;
  background:radial-gradient(circle at 85% 10%,rgba(91,93,247,.17),transparent 30%),linear-gradient(135deg,#fff,#eef2ff);
  box-shadow:var(--shadow);
  border:1px solid var(--line)
}

.mode-physical .shop-hero{
  background:linear-gradient(135deg,#fff7ed,#ffffff)
}

.shop-hero h1{
  font-size:clamp(38px,6vw,72px);
  margin:10px 0
}

.item-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px
}

.item-card{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 16px 44px rgba(16,24,40,.08);
  transition:.2s transform,.2s box-shadow
}

.item-card:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 60px rgba(16,24,40,.14)
}

.item-img{
  position:relative;
  overflow:hidden;
  aspect-ratio:1.15/1;
  background:#f2f4f7
}

.item-img img{
  width:100%;
  height:100%;
  object-fit:cover
}

.item-info{padding:14px}

.item-info h3{
  margin:0 0 8px;
  font-size:18px;
  letter-spacing:-.03em
}

.item-info span{
  color:var(--muted);
  font-weight:850
}

.locked-card:after{
  content:"Locked";
  position:absolute;
  top:12px;
  right:12px;
  background:#111827;
  color:#fff;
  border-radius:999px;
  padding:7px 10px;
  font-size:12px;
  font-weight:900
}

.locked-card{
  filter:grayscale(.55);
  cursor:not-allowed
}

.backlink{
  font-weight:900;
  color:var(--brand)
}

.product-detail{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
  align-items:start;
  padding:30px 0
}

.detail-image{
  position:relative;
  border-radius:34px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
  border:1px solid var(--line)
}

.detail-image img{
  width:100%;
  aspect-ratio:1/1;
  max-height:680px;
  object-fit:cover
}

.detail-card{padding:28px}

.detail-card h1{
  font-size:clamp(34px,5vw,58px);
  margin:12px 0
}

.big-price{
  font-size:38px;
  font-weight:950;
  letter-spacing:-.05em;
  margin:16px 0
}

.buy-form{
  display:grid;
  gap:12px
}

.total-preview{
  padding:14px;
  border-radius:16px;
  background:#f2f4f7;
  font-weight:900
}

.method-card{
  padding:16px;
  margin-bottom:12px
}

.method-card p{
  font-size:18px;
  font-weight:900;
  word-break:break-word
}

.payment-box pre{font-size:15px}

.brand-logo{
  width:42px!important;
  height:42px!important;
  max-width:42px!important;
  max-height:42px!important;
  min-width:42px;
  border-radius:16px;
  object-fit:cover!important;
  background:#fff;
  border:1px solid var(--line);
  padding:4px
}

.store-brand img{
  width:42px!important;
  height:42px!important;
  max-width:42px!important;
  max-height:42px!important;
  object-fit:cover!important
}

.mobile-menu-btn{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:8px 11px;
  font-weight:900;
  line-height:1;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center
}

.narrow{
  width:min(720px,100%);
  margin:34px auto
}

.old-price{
  position:relative;
  text-decoration:line-through;
  text-decoration-thickness:2px;
  color:var(--muted);
  font-weight:850
}

.sale-price{
  display:inline-flex;
  background:#fef2f2;
  color:#dc2626;
  border:1px solid #fecaca;
  border-radius:999px;
  padding:5px 10px;
  font-weight:950
}

.big-price.sale{
  display:flex;
  align-items:baseline;
  gap:14px;
  flex-wrap:wrap
}

.big-price.sale .sale-price{font-size:42px}

.discount-badge,.discount-ribbon{
  position:absolute;
  z-index:2;
  top:16px!important;
  left:16px!important;
  right:auto!important;
  background:linear-gradient(135deg,#ef4444,#f97316);
  color:#fff;
  border-radius:14px;
  padding:7px 11px;
  font-size:12px;
  font-weight:950;
  letter-spacing:.08em;
  box-shadow:0 10px 25px rgba(220,38,38,.22)
}

.discount-timer{
  display:inline-flex;
  background:#fff7ed;
  color:#c2410c;
  border:1px solid #fed7aa;
  border-radius:999px;
  padding:8px 12px;
  font-weight:900
}

.item-info span .old-price{margin-right:6px}

.price-stack{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap
}

.payment-instruction[hidden]{display:none!important}
.payment-methods-info{display:block}
.mode-physical .item-card{background:linear-gradient(180deg,#fff,#fffdf9)}

.notify-permission{
  margin:12px auto;
  padding:12px 14px;
  border:1px solid #dbeafe;
  background:#eff6ff;
  color:#1e3a8a;
  border-radius:16px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap
}

.notify-permission[hidden]{display:none!important}
.notify-permission small{color:#475569}

.notification-center{
  display:grid;
  gap:8px;
  margin:10px 0
}

.inapp-notification{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:space-between;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:10px 12px;
  box-shadow:0 10px 28px rgba(16,24,40,.08)
}

.inapp-notification p{
  margin:0;
  color:var(--muted);
  flex:1
}

.admin-dashboard .topbar{display:none!important}
.admin-dashboard .page{padding-top:28px}

.mt-2{margin-top:12px}

/* Homepage limited offer */
.trial-offer{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:center;
  margin:22px auto 18px;
  padding:30px;
  border-radius:34px;
  border:1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(circle at top right,rgba(255,77,109,.22),transparent 30%),
    radial-gradient(circle at bottom left,rgba(0,194,168,.18),transparent 34%),
    linear-gradient(135deg,#0f172a 0%,#171f3e 48%,#251353 100%);
  color:#fff;
  box-shadow:0 30px 90px rgba(16,24,40,.24)
}

.trial-offer:before{
  content:"LIMITED OFFER";
  position:absolute;
  top:22px;
  right:-52px;
  transform:rotate(35deg);
  background:linear-gradient(90deg,#ff4d6d,#ff8c42);
  color:#fff;
  padding:10px 70px;
  font-size:12px;
  font-weight:950;
  letter-spacing:.12em;
  box-shadow:0 10px 34px rgba(255,77,109,.28)
}

.trial-offer:after{
  content:"30 DAYS";
  position:absolute;
  right:18px;
  bottom:-22px;
  font-size:82px;
  font-weight:950;
  letter-spacing:-.08em;
  color:rgba(255,255,255,.06);
  pointer-events:none
}

.trial-offer .offer-pill{
  display:inline-flex;
  align-items:center;
  width:max-content;
  border-radius:999px;
  background:linear-gradient(90deg,#ff4d6d,#ff8c42);
  color:#fff;
  font-size:12px;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:9px 13px;
  box-shadow:0 12px 30px rgba(255,77,109,.28)
}

.trial-offer h2{
  position:relative;
  z-index:1;
  margin:14px 0 10px;
  font-size:clamp(32px,4.8vw,62px);
  line-height:.98;
  letter-spacing:-.065em;
  max-width:820px
}

.trial-offer h2 strong,
.trial-offer h2 span{
  color:#ffd166
}

.trial-offer p{
  position:relative;
  z-index:1;
  margin:0;
  max-width:740px;
  color:rgba(255,255,255,.88);
  font-size:18px;
  line-height:1.55
}

.offer-actions{
  position:relative;
  z-index:1;
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:18px
}

.offer-actions .btn{
  min-height:54px;
  padding:0 24px;
  border-radius:18px;
  white-space:nowrap
}

.offer-actions .btn.primary{
  background:linear-gradient(90deg,#ff4d6d,#ff8c42);
  box-shadow:0 0 0 0 rgba(255,77,109,.48);
  animation:offer-pulse 1.8s infinite
}

.offer-actions .btn.ghost{
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.18)
}

@keyframes offer-pulse{
  0%{box-shadow:0 0 0 0 rgba(255,77,109,.45)}
  70%{box-shadow:0 0 0 14px rgba(255,77,109,0)}
  100%{box-shadow:0 0 0 0 rgba(255,77,109,0)}
}

.trial-offer-card{
  position:relative;
  z-index:1;
  background:rgba(255,255,255,.95);
  color:#101828;
  border-radius:26px;
  padding:22px;
  box-shadow:0 20px 55px rgba(0,0,0,.18)
}

.trial-offer-card .old-price{
  font-size:18px
}

.trial-offer-card .free-price{
  display:block;
  color:#12b886;
  font-size:42px;
  font-weight:950;
  letter-spacing:-.06em;
  margin:4px 0
}

/* Support both old and new homepage header class names */
.site-header{
  background:#fff;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:40
}

.container{
  width:min(1180px,calc(100% - 28px));
  margin:0 auto
}

.header-row{
  min-height:82px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px
}

.site-header .brand img{
  width:48px;
  height:48px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff
}

.top-nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap
}

.top-nav a{
  text-decoration:none;
  color:#283144;
  font-weight:800;
  font-size:18px
}

.offer-wrap{padding:34px 0 16px}

.offer-banner{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1.3fr .9fr;
  gap:26px;
  align-items:center;
  padding:34px;
  border-radius:34px;
  background:
    radial-gradient(circle at top right,rgba(255,77,109,.18),transparent 28%),
    radial-gradient(circle at bottom left,rgba(108,77,246,.2),transparent 32%),
    linear-gradient(135deg,#0f172a 0%,#141d39 40%,#201547 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 24px 80px rgba(17,24,39,.22)
}

.offer-topline{
  display:inline-block;
  font-weight:900;
  letter-spacing:.12em;
  font-size:13px;
  color:#ffd166;
  margin-bottom:12px
}

.offer-pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px
}

.offer-banner .offer-pill{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.15);
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em
}

.offer-banner .offer-pill.hot{
  background:linear-gradient(90deg,#ff4d6d,#ff8c42);
  border:0
}

.offer-banner h1{
  margin:0 0 14px;
  font-size:clamp(34px,5vw,60px);
  line-height:1.02;
  font-weight:900;
  max-width:760px
}

.offer-banner h1 span{color:#ffd166}

.offer-copy{
  margin:0 0 22px;
  max-width:760px;
  font-size:20px;
  line-height:1.6;
  color:rgba(255,255,255,.92)
}

.urgency-card{
  background:rgba(255,255,255,.94);
  color:var(--ink);
  border-radius:26px;
  padding:26px;
  box-shadow:0 18px 50px rgba(0,0,0,.15)
}

.mini-label{
  color:#ff4d6d;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  margin-bottom:10px
}

.price-line{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:10px
}

.free-price{
  color:#12b886;
  font-size:38px;
  font-weight:900
}

.card-title{
  font-size:22px;
  font-weight:900;
  margin-bottom:14px
}

.slot-warning{
  margin-top:16px;
  background:#fff3cd;
  color:#7a5500;
  border:1px solid #ffe08a;
  border-radius:16px;
  padding:12px 14px;
  font-size:14px;
  font-weight:700
}

.hero-fallback{padding:28px 0 70px}

@media (min-width:900px){
  .item-grid{grid-template-columns:repeat(4,1fr)}
}

@media (max-width:980px){
  .split,.dashboard-shell,.two-col,.product-detail{grid-template-columns:1fr}
  .dash-side{position:relative;top:auto}
  .dash-nav{display:grid;grid-template-columns:repeat(2,1fr)}
  .stat-grid,.feature-grid,.plan-grid{grid-template-columns:repeat(2,1fr)}
  .dash-top{flex-direction:column}
  .copy-box{width:100%}
  .manage-list{grid-template-columns:1fr}
  .manage-card{grid-template-columns:110px 1fr}
  .topbar,.store-top{align-items:flex-start}
  .topnav,.store-nav{justify-content:flex-end}
  .trial-offer{grid-template-columns:1fr}
  .offer-banner{grid-template-columns:1fr;padding:24px}
}

@media (max-width:620px){
  .page,.store-page{width:min(100% - 18px,1180px);padding-top:14px}
  .topbar,.store-top{padding:12px 10px;flex-wrap:wrap}
  .brand span:last-child,.store-brand span{font-size:15px}
  .topnav a,.store-nav a{padding:8px 9px;font-size:13px}
  .hero{min-height:auto;padding:32px 0}
  .hero-card{transform:none}
  .form-grid,.stat-grid,.feature-grid,.plan-grid{grid-template-columns:1fr}
  .item-grid{grid-template-columns:repeat(2,1fr);gap:10px}
  .item-info{padding:10px}
  .item-info h3{font-size:15px}
  .item-info span{font-size:12px}
  .auth-card,.panel,.feature-card,.plan-card,.stat{padding:16px;border-radius:20px}
  .dash-nav{grid-template-columns:1fr 1fr;max-height:none;overflow:visible}
  .dash-side{padding:12px}
  .manage-card{grid-template-columns:1fr}
  .manage-card img,.manage-card>img{height:170px!important;max-height:170px!important;min-height:170px!important}
  .inline-form,.mini-form,.copy-box{flex-direction:column;align-items:stretch}
  .table{font-size:13px;display:block;overflow-x:auto}
  .shop-hero{border-radius:24px;padding:22px}
  .footer,.store-footer{font-size:13px}
  .product-detail{gap:12px}
  .detail-card h1{font-size:34px}
  .mobile-menu-btn{display:inline-flex}
  .topnav{display:none;width:100%;grid-template-columns:1fr 1fr;gap:8px}
  .topnav.is-open{display:grid}
  .store-nav{width:100%;justify-content:flex-start}
  .brand-logo{width:36px!important;height:36px!important}
  .big-price.sale{gap:8px}
  .big-price.sale .sale-price{font-size:30px}
  .discount-badge,.discount-ribbon{left:10px!important;top:10px!important}
  .inapp-notification{align-items:flex-start;flex-direction:column}
  .trial-offer{padding:20px;border-radius:24px}
  .trial-offer:before{right:-62px;top:17px}
  .trial-offer:after{font-size:54px;right:8px;bottom:-10px}
  .trial-offer h2{font-size:34px}
  .trial-offer p{font-size:16px}
  .offer-actions{width:100%}
  .offer-actions .btn{width:100%}
  .header-row{min-height:74px}
  .top-nav{gap:14px}
  .top-nav a{font-size:16px}
  .offer-wrap{padding-top:20px}
  .offer-banner{border-radius:24px}
  .offer-banner h1{font-size:34px}
  .offer-copy{font-size:16px}
}

@media (min-width:621px){
  .mobile-menu-btn{display:none!important}
  .topnav{display:flex!important}
  .store-nav{display:flex!important}
}