/* ─────────────────────────────────────────────
   MSI Maid Directory & Membership — Frontend CSS
   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.09);
  --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;
}

/* ── 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: 16px; flex-wrap: wrap; }
.msi-mm-mb-badge {
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-h);
}
.msi-mm-mb-exp { opacity: 0.75; font-size: 12px; }
.msi-mm-mb-upgrade {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.msi-mm-membership-bar a:hover { background: rgba(255,255,255,0.25); }

.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);
  cursor: pointer;
  outline: none;
  min-width: 160px;
}
.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 12px;
}
.msi-mm-count { font-size: 13px; color: var(--mm-muted); margin-bottom: 14px; }

/* ── MAID 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 0.2s, box-shadow 0.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: 14px;
}
.msi-mm-avatar {
  width: 52px; height: 52px;
  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: 17px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--mm-dark);
}
.msi-mm-card-location { font-size: 13px; color: var(--mm-muted); }

.msi-mm-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 14px;
}
.msi-mm-tag {
  background: #fff1ee;
  color: var(--mm-primary);
  border: 1px solid #fed7aa;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-h);
}

.msi-mm-card-meta { margin-bottom: 12px; }
.msi-mm-meta-row {
  display: flex;
  gap: 8px;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 1px solid #f3f4f6;
}
.msi-mm-meta-row:last-child { border-bottom: none; }

.msi-mm-card-about { font-size: 13px; color: var(--mm-muted); margin: 0 0 12px; line-height: 1.6; }

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

/* ── CONTACT AREA ── */
.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-family: var(--font-h);
  font-size: 16px;
  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: 15px;
  color: var(--mm-muted);
  letter-spacing: 2px;
  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: 14px;
  font-weight: 700;
  font-family: var(--font-h);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.msi-mm-connect-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,67,26,0.35); }
.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;
}

.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,0.5);
  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,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: 12px;
  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-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);
}
.msi-mm-btn-primary {
  background: linear-gradient(135deg,var(--mm-primary),var(--mm-accent));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-h);
  transition: all 0.2s;
}
.msi-mm-btn-primary:hover { box-shadow: 0 4px 14px rgba(232,67,26,0.35); }

/* ── 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: 24px; }
.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: 14px 18px;
  font-size: 13px;
  color: #9a3412;
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.6;
  text-align: center;
}

.msi-mm-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 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: 28px 22px;
  text-align: center;
  position: relative;
  transition: all 0.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,0.12);
}
.msi-mm-plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--mm-purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  font-family: var(--font-h);
  white-space: nowrap;
}
.msi-mm-plan-icon { font-size: 36px; margin-bottom: 8px; }
.msi-mm-plan-name { font-family: var(--font-h); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.msi-mm-plan-price {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 800;
  color: var(--mm-primary);
  line-height: 1;
  margin-bottom: 20px;
}
.msi-mm-price-sym { font-size: 22px; vertical-align: super; }
.msi-mm-plan-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  text-align: left;
}
.msi-mm-plan-features li { padding: 6px 0; font-size: 14px; border-bottom: 1px solid #f3f4f6; }
.msi-mm-plan-features li:last-child { border-bottom: 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: 15px;
  font-weight: 700;
  font-family: var(--font-h);
  cursor: pointer;
  transition: all 0.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,0.35); color: #fff; }
.msi-mm-buy-btn.outline { background: transparent; border: 2px solid var(--mm-border); color: var(--mm-muted); }
.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: 24px; font-weight: 800; margin: 0 0 8px; }
.msi-mm-maid-reg-hero p { opacity: 0.88; font-size: 14px; margin: 0; }

.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: 14px;
  font-weight: 700;
  color: var(--mm-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 22px 0 14px;
  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: 6px; }
.req { color: var(--mm-primary); }

.msi-mm-field input[type=text],
.msi-mm-field input[type=tel],
.msi-mm-field input[type=email],
.msi-mm-field input[type=number],
.msi-mm-field textarea,
.msi-mm-field select {
  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 0.2s, box-shadow 0.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,0.1);
  background: #fff;
}

.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: center;
  gap: 10px;
  border: 2px solid var(--mm-border);
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.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; }
.ck-icon { font-size: 20px; }

.msi-mm-radio-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.msi-mm-radio-card {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--mm-border);
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.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); }

.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.6;
  color: #166534;
  margin-top: 4px;
  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;
}

.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: 26px; font-weight: 800; color: var(--mm-green); margin: 0 0 12px; }

/* ── 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: 24px 28px;
  margin-bottom: 24px;
}
.msi-mm-dash-avatar {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  font-family: var(--font-h);
  font-size: 24px;
  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: 20px; font-weight: 800; margin: 0 0 4px; }
.msi-mm-dash-email { font-size: 13px; opacity: 0.75; }

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

.msi-mm-dash-plan-card {
  background: linear-gradient(135deg,var(--plan-color,#2563eb) 0%,rgba(0,0,0,0.1) 100%);
  border-radius: 12px;
  padding: 20px;
  color: #fff;
}
.msi-mm-dash-plan-name { font-family: var(--font-h); font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.msi-mm-dash-plan-slots { margin-bottom: 8px; }
.msi-mm-slot-bar { height: 8px; background: rgba(255,255,255,0.25); border-radius: 4px; margin-bottom: 6px; }
.msi-mm-slot-fill { height: 100%; background: #fff; border-radius: 4px; }
.msi-mm-dash-plan-exp { font-size: 13px; opacity: 0.8; }
.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: 14px; }
.msi-mm-dash-maid-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #f9fafb;
  border-radius: 12px;
  padding: 14px;
  flex-wrap: wrap;
}
.msi-mm-dash-maid-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg,var(--mm-primary),var(--mm-accent));
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.msi-mm-dash-maid-info { flex: 1; 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-muted { color: var(--mm-muted); }
.msi-mm-dash-maid-actions { flex-shrink: 0; }
.msi-mm-wa-btn-sm {
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.msi-mm-dash-verify-box {
  background: #fef9c3;
  border: 1.5px solid #fbbf24;
  border-radius: var(--mm-radius);
  padding: 20px 24px;
  margin-bottom: 20px;
}
.msi-mm-dash-verify-box h4 { font-family: var(--font-h); font-size: 15px; margin: 0 0 12px; 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: 13px; color: #92400e; margin: 0; }

.msi-mm-dash-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.msi-mm-dash-table th { background: var(--mm-bg); padding: 10px 12px; text-align: left; font-weight: 700; border-bottom: 2px solid var(--mm-border); }
.msi-mm-dash-table td { padding: 10px 12px; 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: 24px; right: 24px;
  background: #1a1a2e;
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  z-index: 99999;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  max-width: 340px;
  animation: msi-slide-in 0.3s ease;
}
.msi-mm-toast.success { border-left: 4px solid var(--mm-green); }
.msi-mm-toast.error   { border-left: 4px solid #dc2626; }
@keyframes msi-slide-in { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

@media(max-width:600px){
  .msi-mm-grid { grid-template-columns: 1fr; }
  .msi-mm-plans-grid { grid-template-columns: 1fr; }
  .msi-mm-toast { left: 16px; right: 16px; bottom: 16px; }
}
