/* ─────────────────────────────────────────────
   MSI Maid Directory & Membership v2.0.0
   maidservicesin.com | Coder Machine
───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700&display=swap');

:root {
  --mm-primary:   #e8431a;
  --mm-accent:    #ff6b35;
  --mm-green:     #16a34a;
  --mm-blue:      #2563eb;
  --mm-purple:    #7c3aed;
  --mm-gold:      #d97706;
  --mm-dark:      #1a1a2e;
  --mm-text:      #1f2937;
  --mm-muted:     #6b7280;
  --mm-border:    #e5e7eb;
  --mm-bg:        #f8fafc;
  --mm-card:      #ffffff;
  --mm-radius:    14px;
  --mm-shadow:    0 4px 20px rgba(0,0,0,0.08);
  --mm-shadow-lg: 0 8px 36px rgba(0,0,0,0.13);
  --font-h:       'Poppins', sans-serif;
  --font-b:       'Nunito', sans-serif;
}

#msi-mm-wrap *,
#msi-mm-maid-reg-wrap *,
.msi-mm-dashboard *,
.msi-mm-plans-section * { box-sizing: border-box; }

#msi-mm-wrap,
#msi-mm-maid-reg-wrap,
.msi-mm-dashboard,
.msi-mm-plans-section {
  font-family: var(--font-b);
  color: var(--mm-text);
  max-width: 1100px;
  margin: 0 auto;
}

/* ── HINDI LABELS ── */
.msi-hindi {
  font-size: 0.88em;
  color: var(--mm-muted);
  font-weight: 400;
}
.msi-mm-radio-card small,
.msi-mm-check-card small {
  display: block;
  font-size: 11px;
  color: var(--mm-muted);
  font-weight: 400;
  margin-top: 2px;
}

/* ── DISCLAIMER ── */
.msi-mm-disclaimer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fefce8;
  border: 1.5px solid #fbbf24;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13px;
  color: #78350f;
  margin-bottom: 18px;
  line-height: 1.6;
}
.msi-mm-disc-icon { font-size: 20px; flex-shrink: 0; }

/* ── MEMBERSHIP BAR ── */
.msi-mm-membership-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #1a1a2e, #2563eb);
  color: #fff;
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}
.msi-mm-mb-info { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.msi-mm-mb-badge {
  background: rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-h);
}
.msi-mm-mb-exp { opacity: .75; font-size: 12px; }
.msi-mm-mb-upgrade {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.msi-mm-no-member-bar {
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 14px;
  color: #9a3412;
  margin-bottom: 18px;
}
.msi-mm-bar-link { color: var(--mm-primary); font-weight: 700; }
.msi-mm-login-prompt { padding: 24px; text-align: center; font-size: 15px; }

/* ── FILTERS ── */
.msi-mm-filters { margin-bottom: 20px; }
.msi-mm-filter-inner { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.msi-mm-filter-select {
  border: 2px solid var(--mm-border);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 14px;
  font-family: var(--font-b);
  background: #fff;
  color: var(--mm-text);
  outline: none;
  min-width: 155px;
}
.msi-mm-filter-select:focus { border-color: var(--mm-primary); }
.msi-mm-filter-btn {
  background: var(--mm-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-h);
  cursor: pointer;
}
.msi-mm-clear-btn { color: var(--mm-muted); font-size: 13px; text-decoration: none; padding: 10px; }
.msi-mm-count { font-size: 13px; color: var(--mm-muted); margin-bottom: 14px; }

/* ── GRID ── */
.msi-mm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

/* ── MAID CARD ── */
.msi-mm-card {
  background: var(--mm-card);
  border-radius: var(--mm-radius);
  border: 2px solid var(--mm-border);
  padding: 20px;
  box-shadow: var(--mm-shadow);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.msi-mm-card:hover { transform: translateY(-3px); box-shadow: var(--mm-shadow-lg); }
.msi-mm-card.msi-mm-connected { border-color: #86efac; }
.msi-mm-card-badge {
  position: absolute;
  top: -1px; right: 16px;
  background: var(--mm-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 0 0 8px 8px;
  font-family: var(--font-h);
}

.msi-mm-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.msi-mm-avatar {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--mm-primary), var(--mm-accent));
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.msi-mm-card-name {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 3px;
  color: var(--mm-dark);
}
.msi-mm-card-location { font-size: 12px; color: var(--mm-muted); }
.msi-mm-card-rating { margin-top: 4px; }
.msi-star { font-size: 14px; }
.msi-star.filled { color: #f59e0b; }
.msi-star.empty  { color: #d1d5db; }
.msi-mm-rating-num { font-size: 12px; color: var(--mm-muted); margin-left: 4px; }

.msi-mm-card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.msi-mm-tag {
  background: #fff1ee;
  color: var(--mm-primary);
  border: 1px solid #fecaca;
  border-radius: 20px;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-h);
}

.msi-mm-card-meta { margin-bottom: 12px; }
.msi-mm-meta-row { font-size: 13px; padding: 3px 0; border-bottom: 1px solid #f9fafb; color: var(--mm-text); }
.msi-mm-meta-row:last-child { border: none; }

/* ── BLUR ── */
.msi-mm-blur { filter: blur(5px); user-select: none; }

/* ── CONTACT ── */
.msi-mm-contact-area { margin: 12px 0; }
.msi-mm-contact-revealed {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 10px;
  padding: 12px;
}
.msi-mm-contact-row { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 8px; }
.msi-mm-phone-link { color: var(--mm-green); font-weight: 700; font-size: 16px; font-family: var(--font-h); text-decoration: none; }
.msi-mm-wa-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-h);
}
.msi-mm-wa-btn:hover { background: #1da950; color: #fff; }

.msi-mm-contact-locked { text-align: center; }
.msi-mm-phone-blur { font-size: 14px; color: var(--mm-muted); letter-spacing: 3px; margin-bottom: 10px; }

.msi-mm-connect-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--mm-primary), var(--mm-accent));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-h);
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.msi-mm-connect-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,67,26,.3); }
.msi-mm-connect-btn.outline {
  background: transparent;
  border: 2px solid var(--mm-border);
  color: var(--mm-muted);
}
.msi-mm-connect-btn.outline:hover { border-color: var(--mm-primary); color: var(--mm-primary); }

.msi-mm-verify-note {
  font-size: 11px;
  color: #92400e;
  background: #fef9c3;
  border-radius: 6px;
  padding: 5px 10px;
  margin-top: 10px;
  text-align: center;
}

/* ── REVIEWS ON CARD ── */
.msi-mm-reviews {
  border-top: 1px solid var(--mm-border);
  margin-top: 12px;
  padding-top: 12px;
}
.msi-mm-reviews-title { font-size: 12px; font-weight: 700; color: var(--mm-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
.msi-mm-review-item { margin-bottom: 8px; }
.msi-mm-review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2px; }
.msi-mm-review-author { font-size: 12px; font-weight: 700; color: var(--mm-dark); }
.msi-mm-review-stars .msi-star { font-size: 12px; }
.msi-mm-review-text { font-size: 12px; color: var(--mm-muted); line-height: 1.5; margin: 0; }

/* ── EMPTY STATE ── */
.msi-mm-empty { text-align: center; padding: 60px 20px; color: var(--mm-muted); }
.msi-mm-empty-icon { font-size: 48px; margin-bottom: 12px; }

/* ── MODAL ── */
.msi-mm-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 9998; }
.msi-mm-modal-box {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 9999;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  max-width: 480px;
  width: 92%;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.msi-mm-modal-box h3 { font-family: var(--font-h); font-size: 18px; font-weight: 700; margin: 0 0 12px; }
.msi-mm-modal-box p  { font-size: 14px; color: var(--mm-muted); margin: 0 0 14px; }
.msi-mm-modal-disclaimer {
  background: #fef9c3;
  border: 1.5px solid #fbbf24;
  border-radius: 10px;
  padding: 11px;
  font-size: 12px;
  color: #78350f;
  margin-bottom: 18px;
  line-height: 1.6;
}
.msi-mm-modal-actions { display: flex; gap: 10px; justify-content: flex-end; }
.msi-mm-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--mm-muted);
  line-height: 1;
  padding: 4px;
}
.msi-mm-modal-close:hover { color: var(--mm-text); }

/* ── CLIENT REGISTRATION MODAL ── */
.msi-mm-reg-modal-box { max-width: 480px; }
.msi-mm-reg-modal-header { text-align: center; margin-bottom: 20px; }
.msi-mm-reg-modal-header h3 { font-family: var(--font-h); font-size: 20px; font-weight: 800; margin: 0 0 6px; }
.msi-mm-reg-modal-header p  { font-size: 13px; color: var(--mm-muted); margin: 0; }

/* ── BUTTONS ── */
.msi-mm-btn-outline {
  border: 2px solid var(--mm-border);
  background: transparent;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-h);
  color: var(--mm-muted);
}
.msi-mm-btn-outline:hover { border-color: var(--mm-primary); color: var(--mm-primary); }
.msi-mm-btn-primary {
  background: linear-gradient(135deg, var(--mm-primary), var(--mm-accent));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-h);
  transition: all .2s;
}
.msi-mm-btn-primary:hover { box-shadow: 0 4px 14px rgba(232,67,26,.35); transform: translateY(-1px); }

/* ── PLANS SECTION ── */
.msi-mm-plans-section {
  margin: 40px 0;
  padding: 40px 20px;
  background: var(--mm-bg);
  border-radius: var(--mm-radius);
}
.msi-mm-plans-inline { margin: 48px 0 0; padding: 32px 0 0; background: transparent; }
.msi-mm-plans-header { text-align: center; margin-bottom: 20px; }
.msi-mm-plans-header h2 { font-family: var(--font-h); font-size: 26px; font-weight: 800; margin: 0 0 8px; }
.msi-mm-plans-header p  { color: var(--mm-muted); font-size: 15px; margin: 0; }
.msi-mm-plans-disclaimer {
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 13px;
  color: #9a3412;
  max-width: 700px;
  margin: 0 auto 28px;
  text-align: center;
  line-height: 1.6;
}
.msi-mm-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.msi-mm-plan-card {
  background: var(--mm-card);
  border: 2.5px solid var(--mm-border);
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  position: relative;
  transition: all .25s;
}
.msi-mm-plan-card:hover { transform: translateY(-4px); box-shadow: var(--mm-shadow-lg); }
.msi-mm-plan-featured { border-color: var(--mm-purple); box-shadow: 0 0 0 3px rgba(124,58,237,.1); }
.msi-mm-plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--mm-purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 16px;
  border-radius: 20px;
  font-family: var(--font-h);
  white-space: nowrap;
}
.msi-mm-plan-icon  { font-size: 34px; margin-bottom: 8px; }
.msi-mm-plan-name  { font-family: var(--font-h); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.msi-mm-plan-price { font-family: var(--font-h); font-size: 40px; font-weight: 800; color: var(--mm-primary); line-height: 1; margin-bottom: 18px; }
.msi-mm-price-sym  { font-size: 20px; vertical-align: super; }
.msi-mm-plan-features { list-style: none; margin: 0 0 20px; padding: 0; text-align: left; }
.msi-mm-plan-features li { padding: 6px 0; font-size: 13px; border-bottom: 1px solid #f3f4f6; }
.msi-mm-plan-features li:last-child { border: none; }
.msi-mm-buy-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--mm-primary), var(--mm-accent));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-h);
  cursor: pointer;
  transition: all .2s;
  display: block;
  text-align: center;
  text-decoration: none;
}
.msi-mm-buy-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(232,67,26,.35); color: #fff; }
.msi-mm-plans-note { text-align: center; font-size: 12px; color: var(--mm-muted); margin-top: 20px; }

/* ── MAID REGISTER FORM ── */
.msi-mm-maid-reg-hero {
  background: linear-gradient(135deg, #1a1a2e, var(--mm-primary));
  color: #fff;
  border-radius: var(--mm-radius) var(--mm-radius) 0 0;
  padding: 36px 28px;
  text-align: center;
}
.msi-mm-maid-reg-hero h2 { font-family: var(--font-h); font-size: 22px; font-weight: 800; margin: 0 0 8px; }
.msi-mm-maid-reg-hero p  { opacity: .88; font-size: 13px; margin: 0; line-height: 1.7; }
.msi-mm-maid-reg-card {
  background: var(--mm-card);
  border-radius: 0 0 var(--mm-radius) var(--mm-radius);
  box-shadow: var(--mm-shadow-lg);
  padding: 28px;
}

.msi-mm-section-title {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--mm-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 22px 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #fff1ee;
}
.msi-mm-section-title:first-child { margin-top: 0; }

.msi-mm-field { margin-bottom: 16px; }
.msi-mm-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:600px){ .msi-mm-field-row { grid-template-columns: 1fr; } }

.msi-mm-field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 5px; }
.req { color: var(--mm-primary); }
.opt { font-weight: 400; color: var(--mm-muted); font-size: 12px; }

.msi-mm-field input,
.msi-mm-field select,
.msi-mm-field textarea {
  width: 100%;
  border: 2px solid var(--mm-border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-b);
  color: var(--mm-text);
  background: #fafafa;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.msi-mm-field input:focus,
.msi-mm-field textarea:focus { border-color: var(--mm-primary); box-shadow: 0 0 0 3px rgba(232,67,26,.1); background: #fff; }
.msi-mm-field input.msi-error { border-color: #dc2626; }

.msi-mm-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 6px;
}
.msi-mm-check-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 2px solid var(--mm-border);
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s;
  user-select: none;
  background: #fafafa;
}
.msi-mm-check-card:hover { border-color: var(--mm-accent); background: #fff7f5; }
.msi-mm-check-card:has(input:checked) { border-color: var(--mm-primary); background: #fff1ee; color: var(--mm-primary); }
.msi-mm-check-card input { accent-color: var(--mm-primary); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.ck-icon { font-size: 20px; flex-shrink: 0; }

.msi-mm-radio-row { display: flex; gap: 10px; flex-wrap: wrap; }
.msi-mm-radio-card {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 2px solid var(--mm-border);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  user-select: none;
  background: #fafafa;
}
.msi-mm-radio-card:hover { border-color: var(--mm-accent); background: #fff7f5; }
.msi-mm-radio-card:has(input:checked) { border-color: var(--mm-primary); background: #fff1ee; color: var(--mm-primary); }
.msi-mm-radio-card input { accent-color: var(--mm-primary); margin-top: 2px; }

.msi-mm-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f0fdf4;
  border: 2px solid #86efac;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.65;
  color: #166534;
  user-select: none;
}
.msi-mm-consent-label input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--mm-green); }
.msi-mm-consent-label.error { border-color: #dc2626; background: #fef2f2; color: #991b1b; }

.msi-mm-submit-row { margin-top: 20px; }
.msi-mm-form-note { font-size: 12px; color: var(--mm-muted); text-align: center; margin-top: 10px; }

.msi-mm-error-box {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  color: #991b1b;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.msi-mm-success-inner { text-align: center; padding: 48px 20px; }
.msi-mm-success-tick  { font-size: 56px; margin-bottom: 14px; }
.msi-mm-success-inner h2 { font-family: var(--font-h); font-size: 24px; font-weight: 800; color: var(--mm-green); margin: 0 0 12px; }
.msi-mm-success-inner p  { font-size: 14px; color: var(--mm-muted); }

/* ── DASHBOARD ── */
.msi-mm-dashboard { max-width: 900px; margin: 0 auto; }
.msi-mm-dash-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #1a1a2e, #2563eb);
  color: #fff;
  border-radius: var(--mm-radius);
  padding: 22px 28px;
  margin-bottom: 22px;
}
.msi-mm-dash-avatar {
  width: 54px; height: 54px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.msi-mm-dash-header h2 { font-family: var(--font-h); font-size: 19px; font-weight: 800; margin: 0 0 4px; }
.msi-mm-dash-email { font-size: 13px; opacity: .75; }

.msi-mm-dash-section {
  background: var(--mm-card);
  border: 2px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 20px;
  margin-bottom: 18px;
}
.msi-mm-dash-section h3 {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--mm-border);
}

.msi-mm-dash-plan-card {
  background: linear-gradient(135deg, var(--plan-color,#2563eb), #1a1a2e);
  border-radius: 12px;
  padding: 18px;
  color: #fff;
}
.msi-mm-dash-plan-name { font-family: var(--font-h); font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.msi-mm-slot-bar { height: 7px; background: rgba(255,255,255,.25); border-radius: 4px; margin-bottom: 5px; }
.msi-mm-slot-fill { height: 100%; background: #fff; border-radius: 4px; transition: width .4s; }
.msi-mm-dash-plan-slots { margin-bottom: 6px; font-size: 13px; opacity: .9; }
.msi-mm-dash-plan-exp  { font-size: 12px; opacity: .7; }
.msi-mm-dash-no-plan { background: #f9fafb; border-radius: 10px; padding: 16px; text-align: center; color: var(--mm-muted); }

.msi-mm-dash-maids { display: flex; flex-direction: column; gap: 12px; }
.msi-mm-dash-maid-card {
  background: #f9fafb;
  border: 1.5px solid var(--mm-border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
  transition: border-color .2s;
}
.msi-mm-dash-maid-card:hover { border-color: #d1d5db; }
.msi-mm-hired-card { border-color: #86efac; background: #f0fdf4; }
.msi-mm-dash-maid-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--mm-primary), var(--mm-accent));
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.msi-mm-dash-maid-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 13px;
}
.msi-mm-dash-maid-info strong { font-size: 15px; font-family: var(--font-h); }
.msi-mm-dash-maid-info span   { color: var(--mm-text); }
.msi-mm-muted { color: var(--mm-muted); }
.msi-mm-hired-badge {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.msi-mm-dash-maid-actions { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; }
.msi-mm-wa-btn-sm {
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.msi-mm-hire-btn {
  background: linear-gradient(135deg, var(--mm-green), #15803d);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-h);
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
}
.msi-mm-hire-btn:hover { box-shadow: 0 3px 10px rgba(22,163,74,.3); }
.msi-mm-hire-btn.hired { background: #d1fae5; color: #166534; cursor: default; box-shadow: none; }

/* ── REVIEW FORM ── */
.msi-mm-review-form-wrap { margin-top: 10px; margin-left: 54px; }
@media(max-width:600px){ .msi-mm-review-form-wrap { margin-left: 0; } }
.msi-mm-review-form {
  background: #fff;
  border: 2px solid #e0e7ff;
  border-radius: 12px;
  padding: 16px;
}
.msi-mm-review-form h4 { font-family: var(--font-h); font-size: 14px; font-weight: 700; margin: 0 0 12px; color: var(--mm-dark); }
.msi-mm-star-picker { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; cursor: pointer; }
.msi-star-pick { font-size: 28px; color: #d1d5db; transition: color .15s, transform .1s; user-select: none; }
.msi-star-pick.on { color: #f59e0b; }
.msi-star-pick:hover { transform: scale(1.2); }
.msi-mm-review-textarea {
  width: 100%;
  border: 2px solid var(--mm-border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-family: var(--font-b);
  resize: vertical;
  outline: none;
  transition: border-color .2s;
}
.msi-mm-review-textarea:focus { border-color: var(--mm-primary); }
.msi-mm-review-submit-btn {
  background: var(--mm-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-h);
}
.msi-mm-review-status-pending  { font-size: 12px; color: var(--mm-gold); }
.msi-mm-review-status-approved { font-size: 12px; color: var(--mm-green); }

/* ── DASHBOARD VERIFY BOX ── */
.msi-mm-dash-verify-box {
  background: #fef9c3;
  border: 1.5px solid #fbbf24;
  border-radius: var(--mm-radius);
  padding: 18px 22px;
  margin-bottom: 18px;
}
.msi-mm-dash-verify-box h4 { font-family: var(--font-h); font-size: 14px; margin: 0 0 10px; color: #78350f; }
.msi-mm-dash-verify-box ul  { margin: 0 0 10px; padding-left: 20px; }
.msi-mm-dash-verify-box li  { font-size: 13px; padding: 3px 0; color: #78350f; }
.msi-mm-dash-verify-box p   { font-size: 12px; color: #92400e; margin: 0; }

/* ── DASHBOARD TABLE ── */
.msi-mm-dash-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.msi-mm-dash-table th { background: var(--mm-bg); padding: 9px 11px; text-align: left; font-weight: 700; border-bottom: 2px solid var(--mm-border); }
.msi-mm-dash-table td { padding: 9px 11px; border-bottom: 1px solid var(--mm-border); }
.msi-mm-status-active  { color: var(--mm-green);  font-weight: 700; }
.msi-mm-status-pending { color: var(--mm-gold);   font-weight: 700; }
.msi-mm-status-expired { color: var(--mm-muted);  font-weight: 700; }

/* ── TOAST ── */
.msi-mm-toast {
  position: fixed;
  bottom: 22px; right: 22px;
  background: #1a1a2e;
  color: #fff;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  z-index: 99999;
  box-shadow: 0 8px 30px rgba(0,0,0,.22);
  max-width: 340px;
  animation: msi-in .3s ease;
}
.msi-mm-toast.success { border-left: 4px solid var(--mm-green); }
.msi-mm-toast.error   { border-left: 4px solid #dc2626; }
@keyframes msi-in { from { transform: translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ── RESPONSIVE ── */
@media(max-width:680px){
  .msi-mm-grid         { grid-template-columns: 1fr; }
  .msi-mm-plans-grid   { grid-template-columns: 1fr; }
  .msi-mm-modal-box    { width: 96%; padding: 20px; }
  .msi-mm-toast        { left: 12px; right: 12px; bottom: 12px; }
  .msi-mm-check-grid   { grid-template-columns: 1fr 1fr; }
}
@media print {
  .msi-mm-connect-btn, .msi-mm-buy-btn, .msi-mm-hire-btn,
  .msi-mm-modal-actions, .msi-mm-mb-upgrade { display: none; }
}
