:root{
  --primary:#0f6fff;
  --primary-dark:#0a4fd1;
  --accent:#15c2b8;
  --accent-soft:#e8fbf8;
  --bg:#edf3fb;
  --surface:#ffffff;
  --surface-soft:#f7faff;
  --text:#10233f;
  --muted:#68809d;
  --border:rgba(16,35,63,0.08);
  --shadow-lg:0 24px 60px rgba(19,42,79,0.14);
  --shadow-md:0 14px 30px rgba(19,42,79,0.1);
  --radius-xl:28px;
  --radius-lg:20px;
  --radius-md:16px;
  --motion-fast:.18s;
  --motion-base:.28s;
  --motion-slow:.42s;
  --header-offset:84px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,body{
  scroll-behavior:smooth;
}

body{
  font-family:"Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
  background:
    radial-gradient(circle at top left, rgba(21,194,184,0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(15,111,255,0.18), transparent 32%),
    linear-gradient(180deg,#eef4fb 0%, #edf3fb 36%, #e8eef8 100%);
  color:var(--text);
  padding:0 0 88px;
  min-height:100vh;
}

.startup-splash{
  position:fixed;
  inset:0;
  z-index:3000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:
    radial-gradient(circle at top right, rgba(40,214,197,0.22), transparent 28%),
    radial-gradient(circle at bottom left, rgba(15,111,255,0.24), transparent 34%),
    linear-gradient(160deg, rgba(7,18,39,0.98), rgba(10,24,48,0.96));
  backdrop-filter:blur(20px);
  transition:opacity .7s ease, visibility .7s ease;
  animation:splashFailsafeHide .7s ease 3.8s forwards;
}

.startup-splash.hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.startup-splash.hidden .startup-splash__card{
  opacity:0;
  transform:translateY(-34px) scale(.88);
}

.startup-splash.hidden .startup-splash__glow{
  opacity:0;
  transform:scale(.78);
}

.startup-splash__glow{
  position:absolute;
  width:min(72vw, 420px);
  aspect-ratio:1;
  border-radius:50%;
  background:radial-gradient(circle, rgba(47,190,255,0.34), rgba(21,194,184,0.16) 42%, transparent 68%);
  filter:blur(12px);
  animation:splashGlow 2.5s ease both;
  transition:opacity .7s ease, transform .7s ease;
}

.startup-splash__card{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  padding:28px 30px;
  min-width:min(82vw, 320px);
  border-radius:32px;
  border:1px solid rgba(255,255,255,0.12);
  background:linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  box-shadow:0 24px 70px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
  animation:splashCardIn 1.05s cubic-bezier(.2,.85,.2,1) both;
  transition:opacity .7s ease, transform .7s ease;
}

.startup-splash__logo{
  width:74px;
  height:74px;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#0f6fff,#15c2b8);
  color:#fff;
  font-size:34px;
  box-shadow:0 20px 40px rgba(15,111,255,0.32);
  animation:splashLogoPop 1.2s cubic-bezier(.22,1,.36,1) both;
}

.startup-splash__wordmark{
  font-size:28px;
  font-weight:900;
  letter-spacing:-.03em;
  color:#fff;
  animation:splashTextRise .9s ease both;
  animation-delay:.2s;
}

.startup-splash__tagline{
  font-size:13px;
  color:rgba(255,255,255,0.72);
  letter-spacing:.04em;
  animation:splashTextRise .9s ease both;
  animation-delay:.3s;
}

.startup-splash__loader{
  width:min(100%, 220px);
  height:8px;
  margin-top:8px;
  padding:1px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.08);
  overflow:hidden;
  animation:splashTextRise .9s ease both;
  animation-delay:.4s;
}

.startup-splash__loader-bar{
  display:block;
  width:38%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#ffffff,#7ee8de);
  box-shadow:0 0 18px rgba(126,232,222,0.55);
  animation:splashLoaderMove 2.1s ease-in-out infinite;
}

a{
  color:inherit;
}

img{
  display:block;
  max-width:100%;
}

input,select,textarea,button{
  font:inherit;
}

button{
  cursor:pointer;
  border:none;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}

button:active{
  transform:scale(.97);
}

.legal-links{
  margin:18px 16px 18px;
  padding:12px 8px 0;
  border-top:1px solid rgba(16,35,63,0.08);
  text-align:center;
}
.legal-links p{
  margin:0 0 8px;
  color:#7890ab;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.legal-links nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:6px 10px;
}
.legal-links a{
  color:#5f7491;
  text-decoration:none;
  font-size:12px;
  font-weight:800;
}
.legal-links a:hover{
  color:var(--primary-dark);
}
.legal-links a + a::before{
  content:"·";
  margin-right:10px;
  color:#a8b6c7;
}

.auth-legal-links{
  margin:14px 0 0;
  text-align:center;
}
.auth-legal-links a{
  color:#6a7f99;
  text-decoration:none;
  font-size:11px;
  font-weight:800;
}
.auth-legal-links a:hover{
  color:var(--primary-dark);
}
.auth-legal-links a + a::before{
  content:"·";
  margin:0 8px 0 6px;
  color:#a8b6c7;
}

.app{
  width:min(100%, 520px);
  min-height:100vh;
  margin:0 auto;
  background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,250,255,0.98));
  box-shadow:var(--shadow-lg);
  position:relative;
  overflow-x:hidden;
  overflow-y:visible;
  animation:appFadeIn .5s ease both;
}

@media (min-width:768px){
  .app{
    margin:18px auto 24px;
    min-height:calc(100vh - 42px);
    border-radius:34px;
  }
}

@keyframes splashCardIn{
  0%{opacity:0;transform:translateY(28px) scale(.88);}
  100%{opacity:1;transform:translateY(0) scale(1);}
}

@keyframes splashLogoPop{
  0%{opacity:0;transform:scale(.62) rotate(-12deg);}
  60%{opacity:1;transform:scale(1.08) rotate(0);}
  100%{opacity:1;transform:scale(1);}
}

@keyframes splashTextRise{
  0%{opacity:0;transform:translateY(16px);}
  100%{opacity:1;transform:translateY(0);}
}

@keyframes splashGlow{
  0%{opacity:0;transform:scale(.64);}
  55%{opacity:1;transform:scale(1.04);}
  100%{opacity:1;transform:scale(1);}
}

@keyframes splashLoaderMove{
  0%{transform:translateX(-105%);}
  60%{transform:translateX(165%);}
  100%{transform:translateX(165%);}
}

@keyframes splashFailsafeHide{
  to{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
  }
}

@keyframes logoFloat{
  0%,100%{transform:translateY(0) scale(1);}
  50%{transform:translateY(-2px) scale(1.02);}
}

@keyframes logoGlowPulse{
  0%,100%{opacity:.4;transform:scale(.94);}
  50%{opacity:.88;transform:scale(1.06);}
}

@keyframes logoTextShimmer{
  0%{background-position:200% 0;}
  100%{background-position:-200% 0;}
}

.header,
.navbar{
  padding:14px 16px;
  background:
    radial-gradient(circle at top right, rgba(64,213,188,0.08), transparent 24%),
    linear-gradient(180deg, rgba(8,20,42,0.95), rgba(13,31,60,0.92));
  backdrop-filter:blur(20px) saturate(140%);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 18px 34px rgba(6,18,38,0.18),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition:background var(--motion-base) ease, box-shadow var(--motion-base) ease, transform var(--motion-base) ease;
}

.header{
  position:sticky;
  top:0;
  z-index:1000;
}

.header.has-header-back{
  position:fixed;
  top:0;
  left:50%;
  z-index:1400;
  width:min(100%, 520px);
  transform:translateX(-50%);
}

.navbar{
  position:sticky;
  top:0;
  z-index:1000;
}

.app:has(> .header.has-header-back){
  padding-top:var(--header-offset);
}

.cbz-sticky-header-page{
  overflow-y:visible;
}

.cbz-sticky-header-page > .header{
  position:sticky;
  top:0;
  z-index:1800;
}

.cbz-sticky-header-page:has(> .header.has-header-back){
  padding-top:0;
}

.cbz-sticky-header-page > .header.has-header-back{
  left:auto;
  transform:none;
  width:100%;
}

.top-bar,
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-width:0;
}

.header-back{
  flex:0 0 auto;
  width:38px;
  height:38px;
  border-radius:14px;
  font-size:18px;
}

.brand{
  min-width:0;
  flex:1 1 auto;
  overflow:hidden;
  padding:7px 10px 7px 8px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.06);
  transition:opacity .7s ease, transform .7s ease, filter .7s ease;
}

body.startup-active .header .brand,
body.startup-active .header .header-back,
body.startup-active .navbar .nav-title{
  opacity:0;
  transform:translateY(12px) scale(.95);
  filter:blur(8px);
}

.logo{
  display:flex;
  align-items:center;
  gap:11px;
  min-width:0;
}

.logo-mark{
  width:40px;
  height:40px;
  border-radius:15px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  background:
    linear-gradient(135deg, rgba(15,111,255,0.34), rgba(21,194,184,0.28));
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    0 14px 24px rgba(7,19,38,0.2);
  font-size:21px;
  position:relative;
  animation:logoFloat 4.8s ease-in-out infinite;
}

.logo-mark::after{
  content:"";
  position:absolute;
  inset:-5px;
  border-radius:18px;
  background:radial-gradient(circle, rgba(64,213,188,0.18), transparent 68%);
  opacity:.7;
  z-index:-1;
  animation:logoGlowPulse 4.8s ease-in-out infinite;
}

.logo-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:4px;
}

.logo-wordmark{
  display:block;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:20px;
  font-weight:900;
  letter-spacing:-.035em;
  line-height:1;
  text-shadow:0 2px 18px rgba(12,85,255,0.14);
  background:linear-gradient(90deg,#ffffff 0%,#dbe9ff 26%,#ffffff 48%,#c4fff2 72%,#ffffff 100%);
  background-size:220% 100%;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation:logoTextShimmer 7s linear infinite;
}

.tagline{
  display:block;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  margin-top:0;
  margin-left:0;
  font-size:11px;
  color:rgba(255,255,255,0.64);
  letter-spacing:.035em;
  line-height:1.15;
}

.right-section,
.nav-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex:0 0 auto;
  min-width:40px;
  max-width:48px;
  position:relative;
  z-index:2;
}

.desktop-header-nav{
  display:none;
}

.notif-trigger{
  position:relative;
  border:none;
  cursor:pointer;
}

.nav-left{
  min-width:52px;
}

.nav-title{
  flex:1;
  font-size:16px;
  font-weight:700;
  text-align:center;
}

.back-btn,
.icon,
.notif-bell{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:15px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
  color:#fff;
  text-decoration:none;
  font-size:18px;
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 12px 22px rgba(5,16,33,0.2);
  transition:transform var(--motion-fast) ease, background var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.back-btn:hover,
.icon:hover,
.notif-bell:hover{
  transform:translateY(-2px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.12));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 16px 26px rgba(10,24,48,0.24);
}

.header-back,
.nav-left .back-btn{
  background:linear-gradient(180deg, rgba(18,28,46,0.96), rgba(10,18,33,0.94));
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.12),0 12px 22px rgba(0,0,0,0.2);
}

.header-back:hover,
.nav-left .back-btn:hover{
  background:linear-gradient(180deg, rgba(24,36,58,1), rgba(12,20,37,0.98));
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.16),0 16px 28px rgba(0,0,0,0.24);
}

.notif-icon-glyph{
  font-size:19px;
  line-height:1;
  filter:drop-shadow(0 2px 8px rgba(255,214,92,0.18));
}

.badge{
  position:absolute;
  top:-3px;
  right:-3px;
  min-width:19px;
  height:19px;
  padding:0 5px;
  border-radius:999px;
  background:#ff4d6d;
  color:#fff;
  font-size:10px;
  font-weight:700;
  display:none;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 16px rgba(255,77,109,0.45);
}

#notif-dropdown{
  position:absolute;
  top:72px;
  right:14px;
  width:min(320px, calc(100% - 28px));
  background:#fff;
  color:var(--text);
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:var(--shadow-lg);
  overflow:hidden;
  display:none;
  z-index:2200;
  transform-origin:top right;
  animation:dropdownReveal .22s ease;
}

.notif-item,
.empty{
  padding:14px 16px;
  font-size:14px;
}

.notif-item{
  border-bottom:1px solid rgba(16,35,63,0.06);
  cursor:pointer;
}

.notif-item:last-child{
  border-bottom:none;
}

.notif-item:hover{
  background:var(--surface-soft);
}

.empty{
  color:var(--muted);
  text-align:center;
}

.hero{
  margin:16px;
  padding:22px;
  border-radius:var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(135deg, #0f6fff 0%, #15c2b8 100%);
  color:#fff;
  box-shadow:0 20px 45px rgba(15,111,255,0.25);
  animation:liftIn .5s ease both;
}

.hero h2{
  font-size:24px;
  line-height:1.2;
  margin-bottom:6px;
}

.hero p{
  font-size:14px;
  color:rgba(255,255,255,0.84);
}

.hero input{
  width:100%;
  margin-top:16px;
  padding:14px 18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.28);
  background:rgba(255,255,255,0.95);
  color:var(--text);
  outline:none;
}

.filters{
  display:flex;
  gap:10px;
  padding:0 16px 8px;
  overflow-x:auto;
  scrollbar-width:none;
}

.filters::-webkit-scrollbar{
  display:none;
}

.filters button,
.filters select,
.filters input{
  min-height:44px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  box-shadow:var(--shadow-md);
  outline:none;
  transition:border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.filters button:hover,
.filters select:hover,
.filters input:hover{
  transform:translateY(-1px);
}

.filters input{
  min-width:112px;
}

.filters button{
  min-width:44px;
  padding:0 12px;
  background:linear-gradient(135deg,#0f6fff,#15c2b8);
  color:#fff;
}

.products{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
  padding:12px 16px 18px;
}

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow-md);
  transition:transform .22s ease, box-shadow .22s ease;
  animation:cardReveal .45s ease both;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 36px rgba(19,42,79,0.16);
}

.img-box{
  position:relative;
  overflow:hidden;
}

.img-box img{
  width:100%;
  height:154px;
  object-fit:cover;
  transition:transform .28s ease;
}

.card:hover .img-box img{
  transform:scale(1.05);
}

.wishlist-btn{
  position:absolute;
  top:9px;
  right:9px;
  width:36px;
  height:36px;
  border-radius:50%;
  background:rgba(255,255,255,0.96);
  color:#ff4d6d;
  box-shadow:0 10px 20px rgba(16,35,63,0.16);
  font-size:16px;
  transition:transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease, background var(--motion-fast) ease;
}

.wishlist-btn:hover{
  transform:scale(1.06);
  box-shadow:0 14px 24px rgba(16,35,63,0.20);
}

.wishlist-btn.active{
  animation:pop .3s ease;
}

.card-body{
  padding:12px 12px 13px;
}

.card-body h3,
.card-body h4{
  font-size:14px;
  line-height:1.35;
  min-height:38px;
  margin-bottom:7px;
  color:var(--text);
}

.title-link{
  text-decoration:none;
}

.price{
  font-size:17px;
  font-weight:800;
  color:var(--primary-dark);
  margin-bottom:3px;
}

.location{
  font-size:12px;
  color:var(--muted);
  margin-bottom:10px;
}

.card-body button,
.empty-box a,
.profile-actions a,
.remove-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:11px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  transition:transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease, filter var(--motion-fast) ease;
}

.card-body button{
  width:100%;
  background:linear-gradient(135deg,#0f6fff,#15c2b8);
  color:#fff;
  box-shadow:0 12px 24px rgba(15,111,255,0.22);
  min-height:42px;
  padding:10px 14px;
  border-radius:13px;
}

.card-body button:hover,
.empty-box a:hover,
.profile-actions a:hover,
.remove-btn:hover{
  transform:translateY(-2px);
  filter:saturate(1.05);
}

.loading,
.page-title{
  padding:16px;
  color:var(--text);
}

.page-title{
  font-size:20px;
  font-weight:800;
}

.page-shell{
  padding:18px 16px 24px;
}

.page-nav{
  padding:14px 16px 0;
}

.page-nav a,
.app-back{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:40px;
  height:40px;
  min-width:40px;
  min-height:40px;
  padding:0;
  border-radius:15px;
  text-decoration:none;
  font-weight:700;
  font-size:0;
  line-height:1;
  color:#fff;
  background:linear-gradient(180deg, rgba(18,28,46,0.96), rgba(10,18,33,0.94));
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.12),0 12px 22px rgba(0,0,0,0.2);
  transition:transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease, border-color var(--motion-fast) ease;
}

.page-nav a:hover,
.app-back:hover{
  transform:translateY(-2px);
  background:linear-gradient(180deg, rgba(24,36,58,1), rgba(12,20,37,0.98));
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.16),0 16px 28px rgba(0,0,0,0.24);
}

.page-nav a::before,
.app-back::before{
  content:"\2190";
  font-size:18px;
  line-height:1;
}

.page-hero{
  margin:14px 16px 18px;
  padding:22px 20px;
  border-radius:26px;
  color:#fff;
  box-shadow:0 22px 48px rgba(19,42,79,0.18);
  animation:liftIn .55s ease both;
}

.page-hero h1{
  font-size:28px;
  line-height:1.15;
  margin-bottom:8px;
}

.page-hero p{
  color:rgba(255,255,255,0.84);
  font-size:14px;
  line-height:1.5;
}

.admin-grid,
.panel-list{
  display:grid;
  gap:14px;
  padding:0 16px 22px;
}

.admin-stats{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.panel-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--shadow-md);
  transition:transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease, border-color var(--motion-fast) ease;
  animation:cardReveal .42s ease both;
}

.panel-card:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 38px rgba(19,42,79,0.14);
}

.stat-card{
  padding:18px;
  text-align:center;
}

.stat-icon{
  font-size:24px;
  margin-bottom:10px;
}

.stat-value{
  font-size:28px;
  font-weight:800;
  color:var(--primary-dark);
  line-height:1.1;
}

.stat-label{
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
}

.panel-card-body{
  padding:18px;
}

.panel-title{
  font-size:17px;
  font-weight:800;
  color:var(--text);
}

.panel-meta{
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}

.panel-price{
  margin-top:10px;
  color:var(--primary-dark);
  font-size:21px;
  font-weight:800;
}

.panel-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:10px;
  padding:7px 10px;
  border-radius:999px;
  background:#eef4fb;
  color:#355170;
  font-size:12px;
  font-weight:700;
}

.panel-actions{
  display:flex;
  gap:10px;
  margin-top:16px;
}

.panel-actions form,
.panel-actions a{
  flex:1 1 0;
}

.admin-shell{
  padding-bottom:24px;
}

.admin-overview{
  display:grid;
  gap:14px;
  padding:0 16px 18px;
}

.admin-overview-card{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid rgba(16,35,63,0.08);
  border-radius:24px;
  padding:18px;
  box-shadow:var(--shadow-md);
}

.admin-overview-card::after{
  content:"";
  position:absolute;
  right:-28px;
  top:-28px;
  width:110px;
  height:110px;
  border-radius:32px;
  background:rgba(15,111,255,0.06);
  transform:rotate(18deg);
}

.admin-overview-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 11px;
  border-radius:999px;
  background:#eef5ff;
  color:var(--primary-dark);
  font-size:11px;
  font-weight:800;
  letter-spacing:.04em;
}

.admin-overview-title{
  position:relative;
  z-index:1;
  margin-top:14px;
  font-size:24px;
  line-height:1.15;
  font-weight:800;
  color:var(--text);
}

.admin-overview-copy{
  position:relative;
  z-index:1;
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.admin-mini-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px;
  margin-top:16px;
  position:relative;
  z-index:1;
}

.admin-mini-card{
  padding:12px 12px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(16,35,63,0.06);
  box-shadow:0 10px 22px rgba(19,42,79,0.06);
}

.admin-mini-card strong{
  display:block;
  font-size:18px;
  color:var(--text);
}

.admin-mini-card span{
  display:block;
  margin-top:4px;
  font-size:12px;
  color:var(--muted);
}

.admin-link-grid{
  display:grid;
  gap:12px;
}

.admin-link-card{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(16,35,63,0.06);
  box-shadow:var(--shadow-md);
  text-decoration:none;
  transition:transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.admin-link-card:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 36px rgba(19,42,79,0.12);
}

.admin-link-icon{
  width:48px;
  height:48px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#0f6fff,#15c2b8);
  color:#fff;
  font-size:22px;
  flex:0 0 48px;
}

.admin-link-content strong{
  display:block;
  font-size:16px;
  color:var(--text);
}

.admin-link-content span{
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}

.admin-record{
  display:grid;
  gap:14px;
}

.admin-media{
  width:100%;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(16,35,63,0.06);
  background:#f6f9fe;
  box-shadow:0 12px 26px rgba(19,42,79,0.08);
}

.admin-media img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}

.admin-record-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.admin-record-title{
  font-size:18px;
  font-weight:800;
  color:var(--text);
  line-height:1.3;
}

.admin-record-subtitle{
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}

.admin-record-value{
  font-size:24px;
  font-weight:800;
  color:var(--primary-dark);
  white-space:nowrap;
}

.admin-chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.admin-chip{
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border-radius:999px;
  background:#eef4fb;
  color:#385577;
  font-size:12px;
  font-weight:700;
}

.admin-chip.status-active{
  background:#ebf7ff;
  color:#0a6cae;
}

.admin-chip.status-sold{
  background:#fff1ea;
  color:#c75a1a;
}

.admin-chip.status-expired{
  background:#f2f4f7;
  color:#56657a;
}

.admin-chip.status-reported{
  background:#fff2f4;
  color:#b73a58;
}

.admin-avatar{
  width:52px;
  height:52px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#10233f,#0f6fff);
  color:#fff;
  font-size:20px;
  font-weight:800;
  flex:0 0 52px;
  box-shadow:0 14px 26px rgba(16,35,63,0.18);
}

.admin-user{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.admin-reason{
  padding:14px 15px;
  border-radius:18px;
  background:#fff5f6;
  border:1px solid rgba(255,77,109,0.10);
  color:#7b3550;
  font-size:13px;
  line-height:1.6;
}

.danger-btn,
.neutral-btn,
.ghost-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:46px;
  padding:12px 14px;
  border:none;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
}

.danger-btn{
  background:linear-gradient(135deg,#ff5b6b,#ff7b54);
  color:#fff;
}

.neutral-btn{
  background:#eef4fb;
  color:var(--text);
}

.ghost-btn{
  background:linear-gradient(135deg,#0f6fff,#15c2b8);
  color:#fff;
  box-shadow:0 14px 24px rgba(15,111,255,0.18);
}

.empty-box{
  grid-column:1/-1;
  padding:48px 18px;
  text-align:center;
}

.empty-box p{
  color:var(--muted);
  margin-bottom:12px;
  line-height:1.5;
}

.empty-box a{
  background:linear-gradient(135deg,#0f6fff,#15c2b8);
  color:#fff;
}

.footer{
  position:fixed;
  left:50%;
  right:auto;
  bottom:0;
  transform:translateX(-50%);
  width:min(100vw, 520px);
  box-sizing:border-box;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:10px 12px calc(12px + env(safe-area-inset-bottom));
  background:linear-gradient(180deg, rgba(250,253,255,0.95), rgba(239,246,255,0.98));
  backdrop-filter:blur(24px) saturate(1.18);
  -webkit-backdrop-filter:blur(24px) saturate(1.18);
  border:1px solid rgba(255,255,255,0.72);
  border-bottom:none;
  border-radius:28px 28px 0 0;
  box-shadow:0 -22px 46px rgba(13,35,71,0.14), 0 -4px 16px rgba(29,84,182,0.08);
  z-index:999;
  animation:footerRise .42s ease both;
  will-change:transform;
}

@media (hover:none), (max-width:768px){
  .footer{
    background:#f8fbff;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
    box-shadow:0 -6px 16px rgba(13,35,71,0.08);
    animation:none;
  }
  .nav-item,
  .nav-icon-shell{
    transition:none;
  }
  .nav-item:hover,
  .nav-item:hover .nav-icon-shell{
    transform:none;
  }
}

.nav-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
  min-width:0;
  flex:1 1 0;
  text-decoration:none;
  color:#6f7f97;
  font-size:10px;
  font-weight:700;
  text-align:center;
  transition:transform var(--motion-fast) ease, color var(--motion-fast) ease, opacity var(--motion-fast) ease;
}

.nav-item:hover{
  transform:translateY(-2px);
}

.nav-item .icon{
  width:auto;
  height:auto;
  background:transparent;
  color:inherit;
  font-size:19px;
}

.nav-item.active{
  color:var(--primary-dark);
}

.nav-item span:last-child{
  line-height:1.1;
  white-space:nowrap;
}

.nav-icon-shell{
  width:42px;
  height:42px;
  border-radius:15px;
  display:grid;
  place-items:center;
  background:transparent;
  border:1px solid transparent;
  box-shadow:none;
  transition:transform var(--motion-fast) ease, color var(--motion-fast) ease, background var(--motion-fast) ease;
}

.nav-glyph{
  display:block;
  font-size:18px;
  line-height:1;
  filter:saturate(1.02);
}

.chat-icon-shell{
  position:relative;
}

.footer-badge{
  top:1px;
  right:1px;
  min-width:17px;
  height:17px;
  padding:0 4px;
  font-size:9px;
  box-shadow:0 4px 10px rgba(255,77,109,0.28);
}

.nav-item:hover .nav-icon-shell{
  transform:translateY(-1px);
}

.nav-item.active .nav-icon-shell{
  background:rgba(15,111,255,0.08);
  border-color:rgba(15,111,255,0.08);
}

.sell-btn{
  width:60px;
  height:60px;
  border-radius:21px;
  margin-top:-30px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 60px;
  background:linear-gradient(135deg,#0f6fff,#15c2b8);
  color:#fff;
  font-size:28px;
  font-weight:400;
  text-decoration:none;
  border:1px solid rgba(255,255,255,0.5);
  box-shadow:0 18px 32px rgba(15,111,255,0.26), 0 0 0 6px rgba(21,194,184,0.10), inset 0 1px 0 rgba(255,255,255,0.3);
  transition:transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease, filter var(--motion-fast) ease;
  animation:sellSoftPulse 3.6s ease-in-out infinite;
}

.sell-btn:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 20px 36px rgba(15,111,255,0.28), 0 0 0 8px rgba(21,194,184,0.12), inset 0 1px 0 rgba(255,255,255,0.32);
  filter:saturate(1.04);
}

.sell-btn:active{
  transform:translateY(-1px) scale(.96);
}

.sell-btn-core{
  display:grid;
  place-items:center;
  width:100%;
  height:100%;
  font-size:29px;
  line-height:1;
  font-weight:300;
  text-shadow:0 2px 10px rgba(7,42,107,0.24);
}

@keyframes sellSoftPulse{
  0%,100%{box-shadow:0 18px 32px rgba(15,111,255,0.24), 0 0 0 5px rgba(21,194,184,0.08), inset 0 1px 0 rgba(255,255,255,0.3);}
  50%{box-shadow:0 20px 36px rgba(15,111,255,0.30), 0 0 0 9px rgba(21,194,184,0.13), inset 0 1px 0 rgba(255,255,255,0.34);}
}

.skeleton{
  height:170px;
  border-radius:18px;
  background:linear-gradient(90deg,#edf2f8,#dde8f6,#edf2f8);
  background-size:200% 100%;
  animation:shimmer 1.2s infinite linear;
}

@keyframes shimmer{
  0%{background-position:200% 0;}
  100%{background-position:-200% 0;}
}

@keyframes pop{
  0%{transform:scale(1);}
  50%{transform:scale(1.2);}
  100%{transform:scale(1);}
}

@keyframes appFadeIn{
  0%{opacity:0;}
  100%{opacity:1;}
}

@keyframes liftIn{
  0%{opacity:0;transform:translateY(18px) scale(.985);}
  100%{opacity:1;transform:translateY(0) scale(1);}
}

@keyframes cardReveal{
  0%{opacity:0;transform:translateY(18px);}
  100%{opacity:1;transform:translateY(0);}
}

@keyframes dropdownReveal{
  0%{opacity:0;transform:translateY(-8px) scale(.98);}
  100%{opacity:1;transform:translateY(0) scale(1);}
}

@keyframes footerRise{
  0%{opacity:0;transform:translateX(-50%) translateY(14px);}
  100%{opacity:1;transform:translateX(-50%) translateY(0);}
}

.products .card:nth-child(1){animation-delay:.02s;}
.products .card:nth-child(2){animation-delay:.06s;}
.products .card:nth-child(3){animation-delay:.1s;}
.products .card:nth-child(4){animation-delay:.14s;}
.products .card:nth-child(5){animation-delay:.18s;}
.products .card:nth-child(6){animation-delay:.22s;}

::-webkit-scrollbar{
  width:6px;
  height:6px;
}

::-webkit-scrollbar-thumb{
  background:rgba(15,111,255,0.45);
  border-radius:999px;
}

@media (max-width:420px){
  :root{
    --header-offset:66px;
  }

  body{
    padding-bottom:86px;
  }

  .app{
    width:100%;
    min-height:100vh;
    box-shadow:none;
    background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,249,255,0.99));
  }

  .header,
  .navbar{
    padding:10px 12px;
  }

  .top-bar,
  .navbar{
    gap:8px;
  }

  .brand{
    max-width:none;
    flex:1 1 auto;
    padding:6px 8px 6px 6px;
    border-radius:16px;
    overflow:hidden;
  }

  .header-back{
    width:36px;
    height:36px;
    border-radius:13px;
    font-size:17px;
  }

  .back-btn,
  .icon,
  .notif-bell{
    width:36px;
    height:36px;
    border-radius:13px;
    font-size:17px;
  }

  .right-section,
  .nav-right,
  .nav-left{
    flex:0 0 auto;
    min-width:36px;
    max-width:40px;
  }

  .logo-mark{
    width:36px;
    height:36px;
    border-radius:13px;
    font-size:18px;
  }

  .logo-wordmark{
    font-size:18px;
  }

  .tagline{
    font-size:10px;
    letter-spacing:.02em;
  }

  .products{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:9px;
    padding:10px;
  }

  .hero h2{
    font-size:20px;
  }

  .hero{
    margin:12px;
    padding:18px 16px;
    border-radius:24px;
  }

  .hero p{
    font-size:13px;
  }

  .logo{
    gap:7px;
  }

  .logo-mark{
    width:34px;
    height:34px;
    border-radius:13px;
    font-size:17px;
  }

  .logo-wordmark{
    max-width:170px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:17px;
  }

  .tagline{
    max-width:170px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:10px;
  }

  .page-nav{
    padding:12px 12px 0;
  }

  .app-back,
  .page-nav a{
    width:36px;
    height:36px;
    min-width:36px;
    min-height:36px;
    padding:0;
    border-radius:13px;
  }

  .app-back::before,
  .page-nav a::before{
    font-size:17px;
  }

  .img-box img{
    height:118px;
  }

  .card{
    border-radius:18px;
  }

  .card-body{
    padding:10px 10px 11px;
  }

  .card-body h3,
  .card-body h4{
    min-height:32px;
    font-size:12.5px;
    margin-bottom:6px;
  }

  .price{
    font-size:14px;
  }

  .location{
    font-size:11px;
  }

  .card-body button,
  .empty-box a,
  .profile-actions a,
  .remove-btn{
    min-height:40px;
    padding:10px 12px;
    border-radius:12px;
    font-size:13px;
  }

  .section,
  .panel-card{
    margin:10px 12px;
    padding:16px 14px;
    border-radius:20px;
  }

  .footer{
    width:100vw;
    gap:3px;
    padding:7px 10px calc(9px + env(safe-area-inset-bottom));
    border-radius:20px 20px 0 0;
  }

  .nav-item{
    min-width:0;
    gap:3px;
    font-size:10px;
    font-weight:800;
  }

  .nav-icon-shell{
    width:36px;
    height:36px;
    border-radius:12px;
  }

  .nav-glyph{
    font-size:17px;
  }

  .sell-btn{
    width:52px;
    height:52px;
    flex-basis:52px;
    margin-top:-22px;
    border-radius:17px;
    font-size:24px;
    box-shadow:0 12px 24px rgba(15,111,255,0.22), 0 0 0 5px rgba(21,194,184,0.08), inset 0 1px 0 rgba(255,255,255,0.3);
  }

  .sell-btn-core{
    font-size:25px;
  }

  .footer-badge{
    top:0;
    right:0;
    min-width:16px;
    height:16px;
    font-size:8px;
  }

  .admin-mini-grid{
    grid-template-columns:1fr 1fr;
  }

  .admin-record-top{
    flex-direction:column;
  }

  .admin-record-value{
    font-size:21px;
  }
}

@media (min-width:421px) and (max-width:520px){
  .header,
  .navbar{
    padding:14px 16px;
  }

  .hero{
    margin:14px;
    padding:20px 18px;
  }

  .products{
    gap:11px;
    padding:12px;
  }

  .img-box img{
    height:132px;
  }

  .section,
  .panel-card{
    margin:12px 14px;
    padding:17px 16px;
  }
}

@media (min-width:768px){
  .footer{
    width:min(calc(100vw - 36px), 520px);
  }
}

@media (min-width:900px){
  body{
    padding-bottom:0;
  }

  .app{
    width:min(calc(100vw - 48px), 1180px);
    margin:0 auto 30px;
    border-radius:0 0 32px 32px;
    padding-bottom:28px;
    box-shadow:0 30px 80px rgba(13,35,71,.14);
  }

  .app:has(> .header.has-header-back){
    padding-top:0;
  }

  .cbz-sticky-header-page{
    overflow:visible;
  }

  .header.has-header-back{
    position:sticky;
    left:auto;
    transform:none;
    width:100%;
    top:0;
    border-radius:0;
  }

  .header,
  .navbar{
    padding:14px 18px;
    background:
      radial-gradient(circle at 92% 10%, rgba(21,194,184,.15), transparent 22%),
      linear-gradient(180deg, rgba(7,18,38,.98), rgba(13,31,60,.96));
    border-bottom:1px solid rgba(255,255,255,.08);
    border-radius:0;
  }

  .top-bar{
    gap:14px;
    min-height:58px;
  }

  .brand{
    flex:0 0 auto;
    min-width:245px;
    max-width:310px;
    padding:8px 12px 8px 8px;
    border-radius:8px;
  }

  .desktop-header-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    flex:1 1 auto;
    min-width:0;
    max-width:650px;
    height:58px;
    margin:0 auto;
    padding:8px;
    border-radius:10px;
    background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.04));
    border:1px solid rgba(255,255,255,.08);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 14px 30px rgba(0,0,0,.10);
  }

  .desktop-header-nav a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 20px;
    border-radius:8px;
    color:rgba(255,255,255,.72);
    text-decoration:none;
    font-size:12px;
    font-weight:900;
    letter-spacing:-.01em;
    white-space:nowrap;
    border:1px solid transparent;
    transition:background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }

  .desktop-header-nav a strong{
    font:inherit;
  }

  .desktop-header-nav a:hover,
  .desktop-header-nav a.active{
    color:#fff;
    background:rgba(255,255,255,.09);
    border-color:rgba(255,255,255,.08);
  }

  .desktop-header-nav .desktop-sell-link{
    gap:8px;
    padding:0 24px;
    color:#fff;
    background:linear-gradient(135deg,#0f6fff,#15c2b8);
    border-color:rgba(255,255,255,.14);
    box-shadow:0 14px 28px rgba(15,111,255,.26), inset 0 1px 0 rgba(255,255,255,.22);
  }

  .desktop-header-nav .desktop-sell-link span{
    display:grid;
    place-items:center;
    width:22px;
    height:22px;
    border-radius:9px;
    background:rgba(255,255,255,.20);
    color:#fff;
    font-size:17px;
    font-weight:500;
    line-height:1;
  }

  .cbz-sticky-header-page > .header,
  .cbz-sticky-header-page > .header.has-header-back{
    border-radius:0 !important;
  }

  .desktop-header-nav .desktop-sell-link:hover,
  .desktop-header-nav .desktop-sell-link.active{
    transform:translateY(-1px);
    background:linear-gradient(135deg,#0f6fff,#15c2b8);
    box-shadow:0 18px 34px rgba(15,111,255,.32), 0 0 0 5px rgba(21,194,184,.08), inset 0 1px 0 rgba(255,255,255,.24);
  }

  .right-section,
  .nav-right{
    min-width:44px;
    max-width:none;
  }

  .right-section .icon,
  .nav-right .icon{
    width:42px;
    height:42px;
    border-radius:15px;
  }

  .footer{
    display:none;
  }

  .products{
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:16px;
    padding:16px 24px 24px;
  }

  .page-hero{
    margin:18px 24px 20px;
    padding:30px 34px;
    border-radius:30px;
  }

  .page-hero h1{
    font-size:40px;
    max-width:720px;
  }

  .page-hero p{
    max-width:640px;
    font-size:16px;
  }

  .img-box img{
    height:178px;
  }

  .section,
  .panel-card,
  .legal-links{
    margin-left:24px;
    margin-right:24px;
  }

  .legal-links{
    margin-bottom:24px;
  }
}

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

  .startup-splash,
  .startup-splash__glow,
  .startup-splash__card,
  .startup-splash__logo,
  .startup-splash__wordmark,
  .startup-splash__tagline,
  .startup-splash__loader,
  .startup-splash__loader-bar{
    animation:none !important;
  }
}
