/* ============================================================
   shop-register.css, trang đăng ký shop (form riêng)
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Be Vietnam Pro', sans-serif;
  background: #f4f4f4;
  color: #1c1c1c;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.sr-wrap { max-width: 600px; margin: 0 auto; padding: 32px 18px 64px; }

.sr-brand {
  text-align: center; font-weight: 800; font-size: 30px; letter-spacing: .12em;
  color: #8a1f1f; margin-bottom: 22px;
}

.sr-card {
  background: #fff; border: 1px solid #ececec; border-radius: 16px;
  padding: 30px 28px; box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.sr-center { text-align: center; color: #888; padding: 48px 28px; }

.sr-card h1 { font-size: 23px; font-weight: 800; color: #1f1b2e; }
.sr-sub { margin: 8px 0 22px; font-size: 13.5px; color: #777; line-height: 1.55; }

.sr-group { margin-bottom: 16px; }
.sr-group label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 7px; color: #444; }
.sr-req { color: #d14828; }
.sr-group input, .sr-group textarea {
  width: 100%; box-sizing: border-box; padding: 11px 13px;
  border: 1.5px solid #e2e2e2; border-radius: 10px; font-size: 15px;
  outline: none; background: #fafafa; font-family: inherit; transition: border-color .15s, background .15s;
}
.sr-group input:focus, .sr-group textarea:focus { border-color: #d14828; background: #fff; }
.sr-group input:disabled { background: #f0f0f0; color: #888; }
.sr-group textarea { resize: vertical; }

.sr-row { display: flex; gap: 14px; }
.sr-row .sr-group { flex: 1; }

/* PROMPT 26: dòng gợi ý dưới nhóm radio (loại hình shop). */
.sr-hint { font-size: 12px; font-weight: 400; color: #7a7a7a; line-height: 1.5; margin: 7px 0 0; }

.sr-acts { display: flex; gap: 12px; flex-wrap: wrap; }
.sr-act { flex: 1; min-width: 140px; }
.sr-act input { display: none; }
.sr-act label {
  display: block; text-align: center; padding: 14px 10px; border: 1.5px solid #e2e2e2;
  border-radius: 12px; cursor: pointer; font-weight: 600; font-size: 14.5px; color: #555; transition: .15s;
}
.sr-act input:checked + label { border-color: #d14828; background: #fdece7; color: #b83d20; }

.sr-err { font-size: 13px; color: #d12828; margin: 4px 0 0; display: none; }

.sr-submit {
  width: 100%; margin-top: 16px; padding: 14px; border: none; border-radius: 12px;
  background: #d14828; color: #fff; font-size: 15.5px; font-weight: 700; cursor: pointer;
  transition: opacity .15s; font-family: inherit;
}
.sr-submit:hover { opacity: .92; }
.sr-submit:disabled { opacity: .55; cursor: default; }

.sr-logout {
  display: block; width: 100%; margin-top: 12px; background: none; border: none;
  color: #999; font-size: 12.5px; cursor: pointer; text-decoration: underline; font-family: inherit;
}

.sr-check {
  width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%;
  background: #e7f6ec; color: #1d7a44; font-size: 30px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 520px) {
  .sr-row { flex-direction: column; gap: 0; }
  .sr-card { padding: 24px 18px; }
}

/* select + section + upload */
.sr-group select{ width:100%; box-sizing:border-box; padding:11px 13px; border:1.5px solid #e2e2e2; border-radius:10px; font-size:15px; outline:none; background:#fafafa; font-family:inherit; transition:border-color .15s; }
.sr-group select:focus{ border-color:#d14828; background:#fff; }
.sr-section{ margin-top:26px; padding-top:22px; border-top:1px solid #eee; }
.sr-section-head{ display:flex; align-items:center; gap:9px; font-size:15.5px; font-weight:800; color:#1f1b2e; margin-bottom:16px; flex-wrap:wrap; }
.sr-section-no{ display:inline-flex; align-items:center; justify-content:center; width:24px; height:24px; border-radius:50%; background:#d14828; color:#fff; font-size:13px; font-weight:700; flex:none; }
.sr-section-note{ font-size:12px; font-weight:500; color:#999; }
.sr-sub2{ font-size:12.5px; font-weight:700; color:#666; margin:8px 0 10px; }
.sr-file{ width:100%; font-size:13px; padding:10px; border:1.5px dashed #d8d8d8; border-radius:10px; background:#fafafa; cursor:pointer; }
.sr-up-status{ font-size:12px; color:#777; margin-top:5px; min-height:14px; }
