
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root{
  --bg:#eef2f7;
  --surface:#ffffff;
  --surface2:#f8fafc;
  --text:#0f172a;
  --muted:#64748b;
  --line:#e2e8f0;
  --blue:#2563eb;
  --blue2:#1d4ed8;
  --cyan:#06b6d4;
  --green:#10b981;
  --orange:#f97316;
  --red:#ef4444;
  --radius:24px;
  --shadow:0 18px 42px rgba(15,23,42,.10);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,Arial,sans-serif;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.14), transparent 30rem),
    radial-gradient(circle at top right, rgba(6,182,212,.13), transparent 28rem),
    var(--bg);
  color:var(--text);
}
a{text-decoration:none;color:inherit}

.topbar{
  position:sticky;
  top:0;
  z-index:100;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:14px 24px;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(226,232,240,.9);
}
.brand{
  font-size:25px;
  font-weight:900;
  letter-spacing:-.06em;
  color:var(--blue);
  display:flex;
  align-items:center;
  gap:10px;
}
.brand:before{
  content:"";
  width:34px;
  height:34px;
  border-radius:13px;
  background:linear-gradient(135deg,var(--blue),var(--cyan));
  box-shadow:0 12px 24px rgba(37,99,235,.24);
}
.topbar nav{
  display:flex;
  align-items:center;
  gap:7px;
  flex-wrap:wrap;
}
.topbar nav a{
  font-size:13px;
  font-weight:800;
  color:#334155;
  padding:9px 12px;
  border-radius:14px;
}
.topbar nav a:hover{
  background:#eff6ff;
  color:var(--blue);
}

.container{
  width:100%;
  max-width:1380px;
  margin:0 auto;
  padding:28px 24px 44px;
}

.btn,button{
  border:0;
  min-height:42px;
  padding:11px 16px;
  border-radius:15px;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:white;
  font-weight:900;
  font-size:14px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  box-shadow:0 12px 24px rgba(37,99,235,.18);
}
.btn:hover,button:hover{filter:brightness(.98)}
.btn.light{
  background:white;
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn.small,button.small{
  min-height:34px;
  padding:8px 11px;
  border-radius:12px;
  font-size:12px;
}

.hero{
  position:relative;
  overflow:hidden;
  color:white;
  border-radius:32px;
  padding:56px;
  margin-bottom:26px;
  background:
    linear-gradient(135deg,rgba(15,23,42,.96),rgba(37,99,235,.88)),
    radial-gradient(circle at right,rgba(6,182,212,.4),transparent 25rem);
  box-shadow:var(--shadow);
}
.hero:after{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  right:-70px;
  top:-70px;
  background:rgba(255,255,255,.08);
}
.hero h1{
  position:relative;
  z-index:1;
  margin:0 0 16px;
  max-width:780px;
  font-size:clamp(40px,7vw,76px);
  line-height:.95;
  letter-spacing:-.07em;
}
.hero p{
  position:relative;
  z-index:1;
  max-width:760px;
  font-size:19px;
  line-height:1.65;
  color:rgba(255,255,255,.88);
}
.hero-actions,.actions-row{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.search{
  position:relative;
  z-index:1;
  max-width:850px;
  margin-top:22px;
  background:white;
  border-radius:18px;
  padding:10px;
  display:flex;
  gap:10px;
  box-shadow:0 18px 38px rgba(15,23,42,.18);
}
.search input{
  border:0;
  flex:1;
  padding:12px;
  font-size:16px;
  outline:none;
}

.app-shell{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:24px;
  align-items:start;
}
.sidebar{
  position:sticky;
  top:86px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(226,232,240,.9);
  border-radius:28px;
  padding:18px;
  box-shadow:var(--shadow);
}
.side-profile{
  padding:14px;
  border-radius:22px;
  background:linear-gradient(135deg,#eff6ff,#ecfeff);
  margin-bottom:14px;
}
.avatar{
  width:58px;
  height:58px;
  border-radius:20px;
  background:linear-gradient(135deg,var(--blue),var(--cyan));
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:22px;
  margin-bottom:12px;
}
.side-profile h3{
  margin:0 0 5px;
  font-size:18px;
  line-height:1.2;
}
.side-profile p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
  overflow-wrap:anywhere;
}
.side-menu{
  display:grid;
  gap:8px;
}
.side-menu a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 13px;
  border-radius:16px;
  color:#334155;
  font-weight:800;
  font-size:14px;
}
.side-menu a:hover,.side-menu a.active{
  background:#eff6ff;
  color:var(--blue);
}

.main-panel{
  min-width:0;
}
.welcome-card{
  background:linear-gradient(135deg,#ffffff,#eff6ff);
  border:1px solid rgba(226,232,240,.9);
  border-radius:30px;
  padding:28px;
  box-shadow:var(--shadow);
  margin-bottom:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.welcome-card h2{
  margin:0 0 8px;
  font-size:34px;
  line-height:1.1;
  letter-spacing:-.05em;
}
.welcome-card p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}
.stats-modern{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-bottom:22px;
}
.stat-modern{
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:20px;
  box-shadow:var(--shadow);
}
.stat-modern .label{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  color:var(--muted);
  font-weight:800;
  font-size:13px;
  margin-bottom:14px;
}
.stat-modern strong{
  display:block;
  font-size:38px;
  line-height:1;
  letter-spacing:-.06em;
}
.stat-dot{
  width:36px;
  height:36px;
  border-radius:14px;
  background:#eff6ff;
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
}

.action-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-bottom:26px;
}
.action-card{
  background:white;
  border:1px solid var(--line);
  border-radius:26px;
  padding:22px;
  box-shadow:var(--shadow);
  min-height:180px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.action-top{
  display:flex;
  align-items:flex-start;
  gap:14px;
}
.action-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  background:#eff6ff;
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  flex:0 0 52px;
}
.action-card h3{
  margin:0 0 7px;
  font-size:20px;
  line-height:1.2;
}
.action-card p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
  font-size:14px;
}
.action-bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid #f1f5f9;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:14px;
  margin:28px 0 16px;
}
.section-head h2,.section-head h3{
  margin:0;
  font-size:28px;
  letter-spacing:-.04em;
}
.section-head p{
  margin:5px 0 0;
  color:var(--muted);
}

.grid,.store-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}
.card{
  background:white;
  border:1px solid var(--line);
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.card img{
  width:100%;
  height:230px;
  object-fit:cover;
  display:block;
  background:#e2e8f0;
}
.card-body{
  padding:18px;
}
.card h3{
  margin:0 0 8px;
  font-size:19px;
  line-height:1.25;
}
.card p{
  margin:0 0 13px;
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
}
.meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:12px 0 14px;
}
.badge{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:6px 10px;
  border-radius:999px;
  background:#eff6ff;
  color:var(--blue);
  font-size:12px;
  font-weight:900;
}

.form{
  background:white;
  border:1px solid var(--line);
  border-radius:26px;
  padding:26px;
  box-shadow:var(--shadow);
  max-width:900px;
}
.field{margin-bottom:16px}
.field label{
  display:block;
  margin-bottom:8px;
  color:#334155;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-size:12px;
  font-weight:900;
}
input,textarea,select{
  width:100%;
  border:1px solid #cbd5e1;
  border-radius:15px;
  padding:14px;
  font:inherit;
  background:white;
}
textarea{min-height:120px}
input:focus,textarea:focus,select:focus{
  outline:none;
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(37,99,235,.12);
}
.flash{
  background:#eff6ff;
  border:1px solid #bfdbfe;
  color:#1e40af;
  border-radius:16px;
  padding:14px 16px;
  margin-bottom:18px;
  font-weight:800;
}
.table{
  width:100%;
  border-collapse:collapse;
  background:white;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.table th,.table td{
  padding:15px;
  border-bottom:1px solid #f1f5f9;
  text-align:left;
  vertical-align:middle;
}
.table th{
  background:#eff6ff;
  color:#1e3a8a;
  font-size:12px;
  text-transform:uppercase;
}

.business-hero{
  background:linear-gradient(135deg,#0f172a,#2563eb);
  color:white;
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
  margin-bottom:24px;
}
.business-cover{
  min-height:260px;
  background:#dbeafe;
  background-size:cover;
  background-position:center;
}
.business-info{
  padding:26px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:18px;
  align-items:center;
}
.business-logo{
  width:96px;
  height:96px;
  border-radius:24px;
  object-fit:cover;
  background:white;
  border:4px solid rgba(255,255,255,.9);
}
.business-info h1{
  margin:0 0 8px;
  font-size:clamp(34px,5vw,56px);
  letter-spacing:-.06em;
}
.business-layout{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
}
.business-layout>.card{padding:24px}
.info-list{display:grid;gap:10px}
.info-row{
  background:#f8fafc;
  border:1px solid #eef2f7;
  border-radius:16px;
  padding:12px 14px;
  line-height:1.55;
}
.listing-detail{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
}
.listing-gallery{
  display:grid;
  gap:14px;
  padding:14px;
}
.listing-gallery img{
  width:100%;
  height:auto;
  max-height:560px;
  object-fit:cover;
  border-radius:20px;
}
.image-current-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:12px;
  margin:12px 0;
}
.image-current-grid img{
  width:100%;
  height:120px;
  object-fit:cover;
  border-radius:14px;
}
.checkbox-card{
  display:block;
  background:#f8fafc;
  border:1px solid #eef2f7;
  border-radius:14px;
  padding:10px;
}
.footer{
  text-align:center;
  color:var(--muted);
  padding:34px 20px;
}

@media(max-width:1050px){
  .app-shell{grid-template-columns:1fr}
  .sidebar{position:relative;top:auto}
  .side-menu{grid-template-columns:repeat(auto-fit,minmax(150px,1fr))}
  .stats-modern,.action-grid{grid-template-columns:1fr}
}
@media(max-width:760px){
  .topbar{
    flex-direction:column;
    align-items:flex-start;
    padding:14px 16px;
  }
  .topbar nav{
    width:100%;
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:3px;
  }
  .topbar nav a{
    white-space:nowrap;
    background:#f8fafc;
  }
  .container{padding:18px 16px 34px}
  .hero{padding:38px 22px;border-radius:24px}
  .hero h1{font-size:44px}
  .hero p{font-size:17px}
  .welcome-card{flex-direction:column;align-items:flex-start}
  .business-layout,.listing-detail{grid-template-columns:1fr}
  .business-info{grid-template-columns:1fr}
  .table{display:block;overflow-x:auto;white-space:nowrap}
}


/* TRUE-KEE v2.0 VISUAL UNIVERSE */

body{
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.20), transparent 34rem),
    radial-gradient(circle at top right, rgba(168,85,247,.16), transparent 28rem),
    radial-gradient(circle at bottom, rgba(6,182,212,.12), transparent 30rem),
    #edf3fb !important;
}

.hero{
  overflow:hidden;
  position:relative;
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(10px);
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.16), transparent 18rem),
    radial-gradient(circle at 80% 20%, rgba(6,182,212,.24), transparent 20rem);
  pointer-events:none;
}

.hero h1{
  text-shadow:0 10px 30px rgba(0,0,0,.25);
}

.hero .btn{
  transform:translateY(0);
  transition:.25s ease;
}

.hero .btn:hover{
  transform:translateY(-2px) scale(1.02);
}

.card,
.action-card,
.stat-modern,
.sidebar,
.welcome-card,
.form,
.table,
.dashboard-panel{
  background:rgba(255,255,255,.84) !important;
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.35) !important;
  box-shadow:
    0 20px 40px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.4) !important;
}

.card:hover,
.action-card:hover{
  transform:translateY(-4px);
  transition:.28s ease;
  box-shadow:
    0 28px 54px rgba(37,99,235,.14),
    0 12px 24px rgba(15,23,42,.08) !important;
}

.card img{
  transition:transform .5s ease;
}

.card:hover img{
  transform:scale(1.04);
}

.brand{
  background:linear-gradient(135deg,#2563eb,#06b6d4);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.brand:before{
  box-shadow:
    0 18px 30px rgba(37,99,235,.28),
    0 0 34px rgba(6,182,212,.30);
}

.action-icon,
.dashboard-icon,
.stat-dot,
.avatar{
  box-shadow:
    0 14px 26px rgba(37,99,235,.18),
    0 0 28px rgba(6,182,212,.16);
}

.badge{
  background:linear-gradient(135deg,#eff6ff,#ecfeff) !important;
}

.search{
  border:1px solid rgba(255,255,255,.4);
}

.topbar{
  background:rgba(255,255,255,.72) !important;
  backdrop-filter:blur(20px);
}

.section-head h2,
.section-head h3,
.hero h1{
  background:linear-gradient(135deg,#0f172a,#2563eb);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero h1{
  -webkit-text-fill-color:white !important;
}

.welcome-card{
  position:relative;
  overflow:hidden;
}

.welcome-card:after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  border-radius:50%;
  right:-80px;
  top:-80px;
  background:rgba(37,99,235,.10);
}

.grid{
  perspective:1000px;
}

.card{
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.sidebar{
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,252,.88)) !important;
}

.side-menu a{
  transition:.2s ease;
}

.side-menu a:hover,
.side-menu a.active{
  transform:translateX(3px);
  box-shadow:0 10px 24px rgba(37,99,235,.10);
}

.footer{
  color:#64748b;
}

