
:root{
  --blue:#0878e8;
  --blue-dark:#0564c4;
  --blue-soft:#eef6ff;
  --ink:#172235;
  --muted:#6e7988;
  --line:#e1e8f0;
  --soft:#f4f7fb;
  --green:#2c9a50;
  --orange:#ff7a00;
}
*{box-sizing:border-box}
body{margin:0;font-family:Arial,Helvetica,sans-serif;color:var(--ink)}
button,input,select,textarea{font:inherit}
button{cursor:pointer}
.hidden{display:none!important}

.auth-body{
  min-height:100vh;
  background:
    radial-gradient(circle at 10% 0%,rgba(8,120,232,.07),transparent 26%),
    var(--soft);
}
.auth-header{
  background:linear-gradient(135deg,#0878e8,#0564c4);
  color:#fff;
  box-shadow:0 3px 16px rgba(2,92,184,.17);
}
.auth-header-inner{
  width:min(1180px,calc(100% - 28px));
  min-height:92px;
  margin:auto;
  display:grid;
  grid-template-columns:44px 1fr auto;
  align-items:center;
  gap:12px;
}
.auth-back{
  width:38px;height:38px;
  display:grid;place-items:center;
  color:#fff;text-decoration:none;
  border:1px solid rgba(255,255,255,.4);
  border-radius:50%;
  font-size:20px;
}
.auth-header-copy{display:flex;flex-direction:column;gap:4px}
.auth-kicker{font-size:9px;letter-spacing:1.6px;opacity:.82}
.auth-header-title{font-size:20px;font-weight:400}
.auth-logo{font-size:28px;font-weight:400;letter-spacing:1px}

.auth-page{padding:28px 14px 55px}
.auth-shell{max-width:1040px;margin:auto}
.auth-intro{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:17px;
}
.auth-intro h1{margin:0;font-size:28px;font-weight:400}
.auth-intro p{margin:7px 0 0;color:var(--muted);font-size:12px}
.auth-home-link{color:var(--blue);font-size:11px;text-decoration:none}

.account-type-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-bottom:12px;
}
.account-type{
  position:relative;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  padding:13px 14px;
  display:grid;
  grid-template-columns:38px 1fr 22px;
  gap:10px;
  align-items:center;
  text-align:left;
  color:var(--ink);
  box-shadow:0 2px 8px rgba(15,23,42,.025);
}
.account-type.active{
  border-color:var(--blue);
  background:#fafdff;
  box-shadow:0 0 0 3px rgba(8,120,232,.09);
}
.type-icon{
  width:36px;height:36px;
  display:grid;place-items:center;
  border-radius:10px;
  background:var(--blue-soft);
  font-size:18px;
}
.type-copy{display:flex;flex-direction:column;gap:3px}
.type-title{font-size:13px;font-weight:400}
.type-sub{font-size:9px;color:var(--muted)}
.type-check{
  width:20px;height:20px;
  display:none;place-items:center;
  border-radius:50%;
  background:var(--blue);color:#fff;font-size:10px;
}
.account-type.active .type-check{display:grid}

.auth-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:15px;
  box-shadow:0 8px 30px rgba(15,23,42,.055);
  padding:22px;
}
.panel-heading{margin-bottom:18px}
.panel-step-badge{
  display:inline-flex;
  background:var(--blue-soft);
  color:var(--blue);
  border-radius:999px;
  padding:6px 9px;
  font-size:9px;
  margin-bottom:8px;
}
.panel-heading h2,.wizard-title-row h2{
  margin:0;
  font-size:21px;
  font-weight:400;
}
.panel-heading p{
  margin:6px 0 0;
  color:var(--muted);
  font-size:11px;
}

.video-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px;
}
.video-field{
  display:flex;
  flex-direction:column;
  gap:6px;
  color:#46566a;
  font-size:10px;
}
.video-field>span{padding-left:1px}
.video-field small{font-size:8px;color:var(--muted);line-height:1.35}
.video-field input,
.video-field select,
.video-field textarea{
  width:100%;
  border:1px solid #d5dee9;
  background:#fff;
  color:var(--ink);
  border-radius:9px;
  padding:12px 12px;
  outline:none;
  transition:.15s;
}
.video-field input:focus,
.video-field select:focus,
.video-field textarea:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(8,120,232,.08);
}
.field-wide{grid-column:1/-1}
.phone-field,
.password-field{
  display:flex;
  align-items:center;
  border:1px solid #d5dee9;
  border-radius:9px;
  overflow:hidden;
  background:#fff;
}
.phone-field>span{
  padding:0 10px;
  font-size:10px;
  white-space:nowrap;
  color:#405166;
  border-right:1px solid var(--line);
}
.phone-field input,
.password-field input{
  border:0!important;
  box-shadow:none!important;
  border-radius:0!important;
  flex:1;
  min-width:0;
}
.eye-btn{
  border:0;
  background:#fff;
  color:#718096;
  width:42px;height:40px;
}
.primary-wide{
  width:100%;
  border:0;
  border-radius:10px;
  background:var(--blue);
  color:#fff;
  padding:13px 16px;
  margin-top:16px;
  font-weight:400;
}
.primary-wide:hover,.primary-btn:hover,.login-action:hover{background:var(--blue-dark)}
.form-status{
  min-height:17px;
  margin-top:10px;
  color:#526174;
  font-size:10px;
}

/* Wizard */
.wizard-head{
  padding-bottom:16px;
  margin-bottom:18px;
  border-bottom:1px solid var(--line);
}
.wizard-title-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}
.wizard-count{
  background:#f7f9fc;
  color:#64748b;
  border:1px solid var(--line);
  padding:6px 9px;
  border-radius:999px;
  font-size:9px;
}
.wizard-progress{
  display:grid;
  grid-template-columns:auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items:start;
  margin-top:18px;
}
.progress-step{
  width:58px;
  text-align:center;
  color:#99a4b2;
}
.progress-step span{
  width:26px;height:26px;
  display:grid;place-items:center;
  margin:auto;
  border:1px solid #d5dee9;
  background:#fff;
  border-radius:50%;
  font-size:9px;
}
.progress-step small{
  display:block;
  margin-top:5px;
  font-size:7px;
}
.progress-step.active{color:var(--blue)}
.progress-step.active span{
  border-color:var(--blue);
  background:var(--blue);
  color:#fff;
}
.progress-step.done{color:var(--green)}
.progress-step.done span{
  border-color:var(--green);
  background:var(--green);
  color:#fff;
}
.progress-line{
  height:1px;
  background:#dce4ed;
  margin-top:13px;
}
.progress-line.done{background:var(--green)}
.wizard-step{display:none}
.wizard-step.active{display:block}

.toggle-card{
  min-height:45px;
  border:1px solid #d5dee9;
  border-radius:9px;
  padding:10px 11px;
  display:flex;
  align-items:center;
  gap:9px;
  color:#405166;
}
.enterprise-info{
  display:flex;
  gap:11px;
  align-items:center;
  padding:13px;
  background:#f7fbff;
  border:1px solid #d8eafd;
  border-radius:10px;
}
.enterprise-icon{
  width:38px;height:38px;
  display:grid;place-items:center;
  border-radius:10px;
  background:#e8f4ff;
}
.enterprise-info>div{display:flex;flex-direction:column;gap:4px}
.enterprise-title{font-size:11px;font-weight:400}
.enterprise-copy{font-size:9px;color:var(--muted)}

.wizard-actions{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:20px;
  padding-top:15px;
  border-top:1px solid var(--line);
}
.secondary-btn,.primary-btn{
  min-width:105px;
  border-radius:9px;
  padding:11px 16px;
}
.secondary-btn{
  border:1px solid #cdd7e3;
  background:#fff;
  color:#425166;
}
.primary-btn{
  border:0;
  background:var(--blue);
  color:#fff;
  margin-left:auto;
  font-weight:400;
}

/* Review */
.review-card{
  border:1px solid var(--line);
  border-radius:11px;
  overflow:hidden;
}
.review-title{
  background:#f8fafc;
  padding:12px 13px;
  font-size:12px;
  font-weight:400;
}
.review-row{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:12px;
  padding:10px 13px;
  border-top:1px solid var(--line);
  font-size:10px;
}
.review-row span{color:var(--muted)}
.review-row strong{font-weight:400;overflow-wrap:anywhere}
.approval-note{
  margin-top:12px;
  display:flex;
  gap:10px;
  background:#f2fbf4;
  border:1px solid #cce9d3;
  border-radius:10px;
  padding:12px;
}
.approval-note>span{
  width:25px;height:25px;
  display:grid;place-items:center;
  border-radius:50%;
  background:var(--green);color:#fff;
}
.approval-note strong{font-size:10px}
.approval-note p{margin:4px 0 0;font-size:9px;color:#5b6877}

/* Enterprise */
.enterprise-feature-list{
  display:grid;
  gap:9px;
}
.enterprise-feature-list>div{
  display:grid;
  grid-template-columns:38px 1fr;
  gap:10px;
  align-items:center;
  border:1px solid var(--line);
  border-radius:10px;
  padding:12px;
}
.enterprise-feature-list>div>span{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius:10px;
  background:var(--blue-soft);
  color:var(--blue);
  font-size:9px;
}
.enterprise-feature-list>div>div{
  display:flex;
  flex-direction:column;
  gap:3px;
}
.enterprise-feature-list strong{font-size:11px}
.enterprise-feature-list small{font-size:9px;color:var(--muted);line-height:1.4}

/* Login */
.login-separator{
  display:flex;
  align-items:center;
  gap:10px;
  margin:23px 0 14px;
  color:#8a95a4;
  font-size:9px;
}
.login-separator:before,.login-separator:after{
  content:"";
  height:1px;
  background:var(--line);
  flex:1;
}
.login-card{
  background:#f9fbfd;
  border:1px solid var(--line);
  border-radius:11px;
  padding:14px;
}
.login-card-copy h3{margin:0;font-size:14px;font-weight:400}
.login-card-copy p{margin:4px 0 11px;font-size:9px;color:var(--muted)}
.login-grid{
  display:grid;
  grid-template-columns:1fr 1fr 95px;
  gap:8px;
}
.login-grid>input{
  border:1px solid #d5dee9;
  border-radius:9px;
  padding:11px;
  outline:none;
}
.login-action{
  border:0;
  border-radius:9px;
  background:var(--blue);
  color:#fff;
  font-weight:400;
}
.company-status{
  margin-top:11px;
  border:1px solid #d6e6f6;
  border-radius:9px;
  background:#fff;
  padding:11px;
  font-size:9px;
  line-height:1.6;
}

@media(max-width:760px){
  .auth-header-inner{min-height:76px}
  .auth-header-title{font-size:17px}
  .auth-logo{font-size:23px}
  .auth-intro{align-items:flex-start;flex-direction:column}
  .account-type-grid{grid-template-columns:1fr}
  .account-type{grid-template-columns:38px 1fr 22px}
  .auth-card{padding:15px}
  .video-form-grid{grid-template-columns:1fr}
  .field-wide{grid-column:auto}
  .wizard-progress{
    overflow-x:auto;
    grid-template-columns:auto 30px auto 30px auto 30px auto 30px auto;
    padding-bottom:5px;
  }
  .progress-step{width:48px}
  .review-row{grid-template-columns:100px 1fr}
  .login-grid{grid-template-columns:1fr}
  .login-action{min-height:42px}
}


/* ===== v1.0.2 logged-in account dashboard ===== */
.account-dashboard{max-width:1040px;margin:0 auto}
.dash-hero{
  background:linear-gradient(135deg,#0b70d9,#075fbe);
  color:#fff;border-radius:15px;padding:20px;
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;margin-bottom:14px;
}
.dash-kicker{font-size:8px;letter-spacing:1.4px;opacity:.82}
.dash-hero h2{margin:5px 0 3px;font-size:23px;font-weight:400}
.dash-hero p{margin:0;font-size:10px;opacity:.86}
.dash-id-box{
  min-width:150px;background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.22);
  border-radius:11px;padding:12px 14px
}
.dash-id-box span{display:block;font-size:8px;opacity:.8}
.dash-id-box strong{display:block;margin-top:4px;font-size:12px;font-weight:400}

.dash-grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px
}
.dash-card{
  background:#fff;border:1px solid #e1e8f0;border-radius:13px;
  padding:15px;box-shadow:0 3px 12px rgba(15,23,42,.04)
}
.dash-card-head>div{display:flex;align-items:center;gap:10px}
.dash-card-head h3{margin:0;font-size:14px;font-weight:400}
.dash-card-head p{margin:3px 0 0;font-size:8px;color:#6e7988}
.dash-icon{
  width:38px;height:38px;display:grid;place-items:center;
  border-radius:10px;background:#eef6ff;font-size:18px
}

.info-list{margin-top:12px}
.info-list>div{
  display:grid;grid-template-columns:120px 1fr;gap:10px;
  padding:8px 0;border-top:1px solid #edf1f5;font-size:9px
}
.info-list span,.business-summary span,.credit-strip span{color:#6e7988}
.info-list strong{font-weight:400;overflow-wrap:anywhere}

.dash-actions{margin-top:12px;display:grid;gap:7px}
.dash-actions.two-col{grid-template-columns:1fr 1fr}
.dash-actions a{
  text-decoration:none;color:#263449;border:1px solid #e0e7ef;
  border-radius:8px;padding:10px 11px;font-size:9px;
  display:flex;justify-content:space-between;gap:10px;align-items:center;
  background:#fbfcfe
}
.dash-actions a:hover{border-color:#1268d8;color:#1268d8;background:#f7fbff}

.business-summary{
  display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:12px
}
.business-summary>div{
  border:1px solid #e3e9ef;border-radius:8px;padding:9px
}
.business-summary span,.business-summary strong{
  display:block;font-size:8px
}
.business-summary strong{margin-top:4px;font-size:10px;font-weight:400}

.credit-strip{
  display:grid;grid-template-columns:repeat(3,1fr);gap:7px;margin-top:8px
}
.credit-strip>div{
  background:#f8fafc;border:1px solid #e3e9ef;border-radius:8px;padding:9px
}
.credit-strip span{display:block;font-size:7px}
.credit-strip strong{display:block;margin-top:4px;font-size:10px;font-weight:400}

.settings-buttons{display:flex;gap:8px;margin-top:13px}
.outline-action,.danger-action{
  flex:1;border-radius:8px;padding:10px 12px;font-size:9px
}
.outline-action{border:1px solid #1268d8;background:#fff;color:#1268d8}
.danger-action{border:1px solid #ef4444;background:#fff5f5;color:#dc2626}
.delete-note{
  margin-top:9px;border:1px solid #fee2e2;background:#fff7f7;
  color:#9f2d2d;border-radius:8px;padding:9px;font-size:8px;line-height:1.45
}

@media(max-width:760px){
  .dash-hero{align-items:flex-start;flex-direction:column}
  .dash-id-box{width:100%}
  .dash-grid{grid-template-columns:1fr}
  .dash-actions.two-col{grid-template-columns:1fr}
  .info-list>div{grid-template-columns:95px 1fr}
  .credit-strip{grid-template-columns:1fr}
}


/* v1.1.3 global readability */
body,button,input,select,textarea{font-size:15px}
body *{font-weight:400!important}
.brand-main,.pd-brand-main{font-size:32px!important}
.brand-sub,.pd-brand-sub{font-size:12px!important}
.search-box input,.pd-search input{font-size:15px!important}
.login-btn,.plain-action,.pd-back{font-size:14px!important}
.product-card h3,.pd-title{font-size:18px!important}
.product-meta,.product-make,.pd-vendor,.pd-chip,.pd-stock-line{font-size:13px!important}
.product-price,.pd-sale{font-size:20px!important}
.product-mrp,.pd-mrp{font-size:14px!important}
.category-name,.industry-name{font-size:12px!important}
.shop-head p,.cart-meta,.cart-sub,.summary-note,.checkout-section p,.option-card small,.checkout-msg{font-size:13px!important}
.cart-name,.summary-title,.checkout-section h3{font-size:17px!important}
.summary-row,.checkout-field,.option-card strong,.vendor-title{font-size:14px!important}
.account-sub,.type-sub,.panel-heading p,.form-help,.video-field,.login-card-copy p{font-size:13px!important}
.type-title,.panel-heading h2,.wizard-title-row h2,.login-card-copy h3{font-size:17px!important}
.video-field input,.video-field select,.video-field textarea{font-size:15px!important}
.dash-card-head h3{font-size:16px!important}.dash-card-head p{font-size:12px!important}
.info-list>div,.dash-actions a,.business-summary span,.business-summary strong,.credit-strip span,.credit-strip strong{font-size:13px!important}
.dash-icon img{width:22px;height:22px;display:block}
.dash-icon{color:#1268d8}
