/* =========================================================
   MyFindZo app-parity shell (shared across Finder/Shop/Orders/Business/Account)
   ========================================================= */

:root {
  --mf-gutter: 16px;
}
@media (min-width: 992px) {
  :root { --mf-gutter: 24px; }
}
@media (min-width: 1400px) {
  :root { --mf-gutter: 32px; }
}

.mf-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 64px;
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
  background: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.mf-bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #8e919a;
  text-decoration: none !important;
  font-size: 10px;
  font-weight: 500;
  min-width: 0;
}

.mf-bottom-nav__icon {
  width: 36px;
  height: 28px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.mf-bottom-nav__item.is-active {
  color: #f52c94;
  font-weight: 700;
  font-size: 11px;
}

.mf-bottom-nav__item.is-active .mf-bottom-nav__icon {
  background: rgba(245, 44, 148, 0.1);
}

@media (min-width: 992px) {
  .mf-bottom-nav {
    display: none !important;
  }
}

/* Shared buttons / chips / empty */
.mf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  text-decoration: none !important;
  border: 0;
  cursor: pointer;
}
.mf-btn .mf-ico {
  display: block;
  flex-shrink: 0;
}

.mf-btn--primary { background: #f52c94; color: #fff !important; }
.mf-btn--ghost { background: #fff; color: #1a1d26 !important; border: 1px solid #e8ecf2; }
.mf-btn--blue { background: #1976d2; color: #fff !important; }
.mf-btn--light { background: #fff; color: #c2185b !important; }
.mf-btn--outline-light { background: transparent; color: #fff !important; border: 1px solid rgba(255,255,255,.55); }

.mf-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.mf-chip--ok { background: #e8f5e9; color: #2e7d32; }
.mf-chip--warn { background: #fff3e0; color: #ef6c00; }
.mf-chip--danger { background: #ffebee; color: #c62828; }

.mf-empty {
  text-align: center;
  padding: 48px 20px;
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 20px;
}
.mf-empty__icon { font-size: 28px; color: #f52c94; margin-bottom: 8px; }
.mf-empty__title { margin: 0 0 6px; font-size: 18px; font-weight: 800; }
.mf-empty__text { margin: 0 0 16px; color: #9e9e9e; }

.mf-page-head { margin-bottom: 16px; }
.mf-page-head__title { margin: 0; font-size: 24px; font-weight: 800; letter-spacing: -0.4px; color: #1a1d26; }
.mf-page-head__sub { margin: 4px 0 0; color: #9e9e9e; font-size: 13px; }

/* =========================================================
   Service Finder — mirrors PeopleFinderScreen / FinderPanelStateMixin
   and ServiceProviderListItem from the Flutter app.
   ========================================================= */
.mf-ico { display: block; flex: 0 0 auto; }

.mf-finder .mf-home { padding: 0 0 40px; }
.mf-finder .mf-home__inner { width: 100%; max-width: none; padding-inline: var(--mf-gutter); }

.mf-finder__head { padding: 16px 0 4px; }
.mf-finder__head h1 { margin: 0; font-size: 24px; font-weight: 800; color: #1a1d26; }
.mf-finder__head p { margin: 4px 0 0; font-size: 14px; color: #9e9e9e; }

/* Become-a-provider banner */
.mf-finder__banner {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid #2196f3;
  border-radius: 10px;
  text-decoration: none !important;
}
.mf-finder__banner-copy { flex: 1; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.mf-finder__banner-title { font-size: 15px; font-weight: 700; color: #1a1d26; }
.mf-finder__banner-badge {
  padding: 2px 7px; border-radius: 4px; background: #f44336;
  color: #fff; font-size: 11px; font-weight: 700;
}
.mf-finder__banner-cta {
  flex: 0 0 auto; padding: 10px 14px; border-radius: 8px;
  background: #1976d2; color: #fff; font-size: 14px; font-weight: 700;
}

/* Category strip — full-width horizontal scroll. Clips only after
   the row exceeds the viewport; never wraps tiles. */
.mf-hscroll {
  position: relative;
}
.mf-hscroll.is-overflowing:not(.is-at-end)::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 36px;
  background: linear-gradient(to right, rgba(245, 246, 250, 0), #f5f6fa);
  z-index: 1;
}
.mf-hscroll__track {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  touch-action: pan-x;
}
.mf-hscroll__track::-webkit-scrollbar { display: none; }

.mf-finder__cats-wrap {
  margin: 4px calc(var(--mf-gutter) * -1) 0;
}
.mf-finder__cats {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  width: max-content;
  min-height: 118px;
  padding: 10px 28px 14px var(--mf-gutter, 16px);
}
.mf-finder__cat {
  flex: 0 0 76px;
  width: 76px;
  min-width: 76px;
  text-align: center;
  color: #3a3f4b !important;
  text-decoration: none !important;
}
.mf-finder__cat-frame {
  position: relative;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border-radius: 14px;
  background: #fafbfd;
  border: 1px solid #e8ecf2;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.mf-finder__cat-frame img { position: relative; z-index: 1; width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.mf-finder__cat-glyph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(245, 44, 148, 0.85); }
.mf-finder__cat-name {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.1px;
  max-height: 2.4em;
  overflow: hidden;
}
.mf-finder__cat.is-active .mf-finder__cat-frame {
  background: #fff0f7;
  border: 1.5px solid #f52c94;
  box-shadow: 0 3px 8px rgba(245, 44, 148, 0.12);
}
.mf-finder__cat.is-active .mf-finder__cat-name { font-weight: 700; color: #f52c94; }
.mf-finder__cat--all .mf-finder__cat-frame {
  background: linear-gradient(135deg, #f52c94, #ff6eb4);
  border: 0;
  color: #fff;
  box-shadow: 0 3px 8px rgba(245, 44, 148, 0.22);
}
.mf-finder__cat--all .mf-finder__cat-name { font-weight: 700; color: #f52c94; }

/* Search + filter toggle — both action buttons are the same 48×48 as the field */
.mf-finder__search-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0 8px;
}
.mf-finder__field {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
  height: 48px;
  margin: 0;
  padding: 0 16px;
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 14px;
}
.mf-finder__field .mf-ico { color: #757575; }
.mf-finder__field:focus-within { border-color: #f52c94; box-shadow: inset 0 0 0 0.5px #f52c94; }
.mf-finder__field input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: transparent;
  font-size: 14px; color: #1a1d26;
}
.mf-finder__field input::placeholder { color: #9e9e9e; }
.mf-finder__clear-q {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: #eceff3;
  color: #757575;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.mf-finder__go,
.mf-finder__tune {
  box-sizing: border-box;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  line-height: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.mf-finder__go {
  border: 0;
  background: #f52c94;
  color: #fff;
}
.mf-finder__tune {
  border: 1px solid #e8ecf2;
  background: #fff;
  color: #2d3142;
}
.mf-finder__tune.is-on { background: #f52c94; border-color: #f52c94; color: #fff; }

.mf-finder__filters {
  display: none;
  margin-top: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 14px;
}
.mf-finder__filters.is-open { display: block; }
.mf-finder__filters-title { margin: 0 0 10px; font-size: 13px; font-weight: 600; color: #1a1d26; }
.mf-finder__pin {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border: 1px solid #e8ecf2; border-radius: 8px;
  margin-top: 8px;
}
.mf-finder__pin .mf-ico { color: #757575; }
.mf-finder__pin input { flex: 1; min-width: 0; border: 0; outline: 0; font-size: 13px; background: transparent; }
.mf-finder__select {
  display: flex; align-items: center; gap: 8px;
  margin-top: 8px;
  padding: 0 10px;
  border: 1px solid #e8ecf2;
  border-radius: 8px;
  background: #fff;
}
.mf-finder__select .mf-ico { color: #757575; flex-shrink: 0; }
.mf-finder__select select {
  flex: 1;
  min-width: 0;
  height: 40px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
  color: #1a1d26;
}
.mf-finder__select select:disabled { color: #9e9e9e; }
.mf-finder__filters-actions { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.mf-finder__apply {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 12px; border: 0; border-radius: 10px;
  background: #f52c94; color: #fff; font-size: 14px; font-weight: 600; cursor: pointer;
}
.mf-finder__clear { padding: 10px 12px; color: #f52c94 !important; font-size: 14px; font-weight: 600; text-decoration: none !important; }

.mf-finder__results { margin: 14px 0 6px; font-size: 14px; font-weight: 700; color: #1a1d26; }

.mf-finder__empty { padding: 56px 16px; text-align: center; }
.mf-finder__empty .mf-ico { margin: 0 auto; color: rgba(158, 158, 158, 0.4); }
.mf-finder__empty-title { margin: 16px 0 0; font-size: 16px; font-weight: 600; color: #2d3142; }
.mf-finder__empty-text { margin: 6px 0 0; font-size: 13px; color: #9e9e9e; }

.mf-finder__pager {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 16px 0 24px; padding: 12px 16px;
  background: #fff; border: 1px solid #e8ecf2; border-radius: 12px;
}
.mf-finder__pager strong { font-size: 14px; font-weight: 600; color: #1a1d26; }
.mf-finder__pager a { color: #f52c94 !important; }
.mf-finder__pager .is-disabled { color: #9e9e9e; }

/* Provider row (ServiceProviderListItem) — full-bleed rows like the app list */
.mf-provider-list { background: #fff; margin: 6px -16px 0; }
.mf-sp { background: #fff; border-bottom: 1px solid #eceff3; }
.mf-sp__main { display: flex; align-items: flex-start; gap: 12px; padding: 12px 12px 8px; }

.mf-sp__photo {
  position: relative;
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #fff0f7;
}
.mf-sp__photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.mf-sp__photo-ph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(245, 44, 148, 0.5); }
.mf-sp__popular {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 4px;
  padding: 4px 0;
  background: rgba(33, 150, 243, 0.92);
  color: #fff; font-size: 11px; font-weight: 700;
}

.mf-sp__info { flex: 1; min-width: 0; display: block; color: inherit !important; text-decoration: none !important; }
.mf-sp__verified {
  display: flex; align-items: center; gap: 4px; margin-bottom: 4px;
  font-size: 12px; font-weight: 700; color: #f52c94;
}
.mf-sp__name {
  display: flex; align-items: flex-start; gap: 4px; margin: 0;
  font-size: 15px; font-weight: 800; line-height: 1.25; color: #1a1d26;
}
.mf-sp__name .mf-ico { margin-top: 2px; color: #9e9e9e; }

.mf-sp__tags { display: flex; align-items: flex-start; gap: 6px; margin-top: 6px; }
.mf-sp__tags > .mf-ico { margin-top: 2px; color: rgba(245, 44, 148, 0.75); }
.mf-sp__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.mf-sp__chip {
  padding: 5px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  color: #2d3142;
}
.mf-sp__chip.is-emphasis {
  border-color: rgba(245, 44, 148, 0.4);
  background: linear-gradient(135deg, rgba(245, 44, 148, 0.14), rgba(255, 110, 180, 0.1));
  box-shadow: 0 1px 4px rgba(245, 44, 148, 0.08);
  color: #f52c94;
  font-weight: 800;
  letter-spacing: -0.1px;
}

.mf-sp__rating { display: flex; align-items: center; gap: 6px; margin: 6px 0 0; }
.mf-sp__score {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 2px 6px; border-radius: 4px; background: #4caf50;
  color: #fff; font-size: 12px; font-weight: 800;
}
.mf-sp__score span { font-size: 11px; }
.mf-sp__muted-text { font-size: 12px; font-weight: 500; color: #9e9e9e; }
.mf-sp__muted { margin: 4px 0 0; font-size: 12px; font-weight: 500; color: #9e9e9e; }
.mf-sp__rating + .mf-sp__muted { margin-top: 4px; }
.mf-sp__open { margin: 4px 0 0; font-size: 12px; font-weight: 600; color: #4caf50; }
.mf-sp__exp + .mf-sp__open { margin-top: 2px; }
.mf-sp__review {
  display: flex; align-items: flex-start; gap: 4px; margin: 6px 0 0;
  font-size: 11.5px; font-style: italic; line-height: 1.35; color: #9e9e9e;
}
.mf-sp__review .mf-ico { margin-top: 1px; color: #ef5350; }
.mf-sp__more {
  display: flex; align-items: center; gap: 4px; margin: 6px 0 0;
  font-size: 11.5px; font-weight: 500; color: #9e9e9e;
}

.mf-sp__actions { display: flex; gap: 6px; padding: 0 12px 12px; }
.mf-sp__btn {
  flex: 1;
  min-width: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  padding: 10px 4px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  color: #1a1d26 !important;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none !important;
}
.mf-sp__btn span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mf-sp__btn--filled { border-color: #f52c94; background: #f52c94; color: #fff !important; }
.mf-sp__wa { color: #25d366; }
.mf-back { display: inline-block; margin-bottom: 12px; color: #f52c94; font-weight: 700; }

/* Finder provider detail — app ProviderDetailScreen */
.mf-finder-detail { background: #fff; padding-bottom: 0; }
.mf-finder-detail .mf-home__inner { padding-bottom: 88px; }
.mf-pdv__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  margin: 0 0 8px;
}
.mf-pdv__bar-title {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #212121;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mf-pdv__iconbtn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #212121;
  cursor: pointer;
}
.mf-pdv__header { padding: 4px 0 12px; }
.mf-pdv__verified {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: #f52c94;
}
.mf-pdv__name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #212121;
  line-height: 1.25;
}
.mf-pdv__rating { margin: 8px 0 0; font-size: 13px; font-weight: 600; color: #9e9e9e; }
.mf-pdv__rating span {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  padding: 3px 8px;
  border-radius: 4px;
  background: #2e7d32;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.mf-pdv__muted {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 6px 0 0;
  font-size: 13px;
  color: #9e9e9e;
}
.mf-pdv__loc {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: #9e9e9e;
}
.mf-pdv__meta { margin: 4px 0 0; font-size: 12.5px; font-weight: 500; color: #757575; }
.mf-pdv__open {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 4px 0 0;
  font-size: 12.5px;
  font-weight: 600;
  color: #2e7d32;
}
.mf-pdv__quick {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-top: 12px;
  padding: 10px;
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 12px;
}
.mf-pdv__qbtn {
  flex: 1;
  text-align: center;
  color: #212121 !important;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none !important;
}
.mf-pdv__qico {
  width: 44px;
  height: 44px;
  margin: 0 auto 6px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.mf-pdv__qico--pink { background: #fce4ec; color: #f52c94; }
.mf-pdv__qico--wa { background: #e8f5e9; color: #25d366; }
.mf-pdv__qico--outline { background: #f5f5f5; color: #212121; }
.mf-pdv__qico--blue { background: #e3f2fd; color: #0074d9; }
.mf-pdv__photos {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 8px;
  height: 220px;
  margin-top: 14px;
}
.mf-pdv__photos.is-one { grid-template-columns: 1fr; }
.mf-pdv__photo,
.mf-pdv__gitem {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
}
.mf-pdv__photo img,
.mf-pdv__gitem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.mf-pdv__tabs {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  border-bottom: 1px solid #eceff3;
  margin: 8px 0 0;
}
.mf-pdv__tabs button {
  flex: 0 0 auto;
  padding: 12px 0 10px;
  border: 0;
  background: none;
  font-size: 13px;
  font-weight: 500;
  color: #9e9e9e;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
}
.mf-pdv__tabs button.is-active {
  font-weight: 700;
  color: #212121;
  border-bottom-color: #212121;
}
.mf-pdv__panel { display: none; padding: 16px 0 24px; }
.mf-pdv__panel.is-active { display: block; }
.mf-pdv__h { margin: 0 0 16px; font-size: 17px; font-weight: 700; color: #212121; }
.mf-pdv__block { padding: 0 0 14px; margin: 0 0 14px; border-bottom: 1px solid #eeeeee; }
.mf-pdv__block h4 { margin: 0 0 8px; font-size: 14px; font-weight: 700; color: #212121; }
.mf-pdv__block p { margin: 0; font-size: 14px; color: #424242; line-height: 1.5; white-space: pre-wrap; }
.mf-pdv__block a { color: #0074d9 !important; font-weight: 500; }
.mf-pdv__links { display: flex; gap: 16px; margin-top: 10px !important; }
.mf-pdv__links a,
.mf-pdv__links button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: none;
  padding: 0;
  color: #0074d9 !important;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.mf-pdv__verified-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: #212121;
}
.mf-pdv__verified-note .mf-ico { color: #0074d9; }
.mf-pdv__review {
  padding: 12px 0;
  border-bottom: 1px solid #eeeeee;
}
.mf-pdv__review strong { display: block; font-size: 14px; color: #212121; }
.mf-pdv__review span { color: #f9a825; font-size: 13px; }
.mf-pdv__review p { margin: 6px 0 0; font-size: 14px; color: #424242; line-height: 1.45; }
.mf-pdv__chip {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  background: #f5f5f5;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}
.mf-pdv__slist { list-style: none; margin: 14px 0 0; padding: 0; }
.mf-pdv__slist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
}
.mf-pdv__slist .mf-ico { color: #2e7d32; flex-shrink: 0; }
.mf-pdv__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.mf-pdv__gitem { aspect-ratio: 1; height: auto; background: #111; }
.mf-pdv__gallery img { width: 100%; height: 100%; object-fit: contain; }
.mf-pdv__footer {
  position: sticky;
  bottom: 0;
  z-index: 30;
  display: flex;
  gap: 8px;
  padding: 10px var(--mf-gutter, 16px);
  background: #fff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}
.mf-pdv__cta {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  border-radius: 10px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
}
.mf-pdv__cta--call { background: #0d6efd; }
.mf-pdv__cta--enquire { background: #0b5ed7; }
.mf-pdv__cta--wa { background: #25d366; }
@media (max-width: 991.98px) {
  .mf-finder-detail .mf-home__inner { padding-bottom: 96px; }
  .mf-pdv__footer { bottom: calc(64px + env(safe-area-inset-bottom)); padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
}

/* Orders */
.mf-orders-bar {
  background: linear-gradient(135deg, #ff4081, #f52c94);
  color: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 14px;
}
.mf-orders-bar h1 { margin: 0; font-size: 20px; font-weight: 800; }
.mf-tabs { display: flex; gap: 8px; overflow-x: auto; margin-bottom: 14px; }
.mf-tabs__item {
  flex: 0 0 auto; padding: 8px 14px; border-radius: 999px; background: #fff;
  border: 1px solid #e8ecf2; color: #64748b; font-weight: 700; font-size: 12px;
}
.mf-tabs__item.is-active { background: #f52c94; border-color: #f52c94; color: #fff; }
.mf-tabs__item span { opacity: 0.85; }
.mf-order-list { display: grid; gap: 12px; }
.mf-order-card {
  background: #fff; border: 1px solid #e8ecf2; border-radius: 16px; padding: 14px;
  box-shadow: 0 6px 16px rgba(15,23,42,.04);
}
.mf-order-card__top { display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.mf-order-card__date { margin: 6px 0 0; color: #9e9e9e; font-size: 12px; }
.mf-order-card__bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.mf-order-card__total { color: #ff4081; font-weight: 800; font-size: 16px; }

/* Business — match Flutter BusinessHomeScreen */
.mf-business { background: #f2f4f8; }
.mf-business .mf-page-head { margin: 0 0 8px; }
.mf-business .mf-page-head__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #1b2838;
}

.mf-biz-kicker {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #1b2838;
}
.mf-biz-title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #1b2838;
}
.mf-biz-sub {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.35;
}

.mf-biz-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 18px 20px;
  margin: 20px 0 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mf-wallet-card {
  background: linear-gradient(135deg, #ff4081, #e91e63);
  color: #fff;
  border-radius: 20px;
  padding: 20px;
  margin: 4px 0 12px;
  box-shadow: 0 10px 20px rgba(255, 64, 129, 0.3);
}
.mf-wallet-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mf-wallet-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.mf-wallet-card__glyph,
.mf-wallet-card__hist {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
}
.mf-wallet-card__amount {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.mf-wallet-card__amount strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.mf-wallet-card__eye {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 4px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.mf-quick { margin-top: 4px; }
.mf-quick__grid {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.mf-quick__item {
  flex: 1;
  min-width: 0;
  text-align: center;
  color: #1b2838 !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.15px;
  line-height: 1.2;
  padding: 14px 4px;
  text-decoration: none !important;
}
.mf-quick__icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.mf-quick__divider {
  width: 1px;
  margin: 14px 0;
  background: rgba(226, 232, 240, 0.85);
  flex-shrink: 0;
}

.mf-social {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin-top: 18px;
}
.mf-social__item {
  flex: 1;
  min-width: 0;
  text-align: center;
  color: #37474f !important;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none !important;
}
.mf-social__orb {
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}
.mf-social__orb .fa {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 22px;
  width: 22px;
  height: 22px;
  text-align: center;
}

.mf-upgrade-card {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin: 20px 0 0;
  padding: 20px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #ff8f00, #ef6c00);
  box-shadow: 0 8px 16px rgba(239, 108, 0, 0.28);
}
.mf-upgrade-card::before,
.mf-upgrade-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.mf-upgrade-card::before { width: 100px; height: 100px; bottom: -30px; left: -30px; }
.mf-upgrade-card::after { width: 120px; height: 120px; top: -20px; right: -20px; }
.mf-upgrade-card__copy,
.mf-upgrade-card__rank { position: relative; z-index: 1; }
.mf-upgrade-card__kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
.mf-upgrade-card h3 { margin: 10px 0 16px; font-size: 20px; font-weight: 700; }
.mf-upgrade-card p { margin: 0; opacity: 0.92; font-size: 13px; }
.mf-upgrade-card__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.mf-upgrade-card__actions .mf-btn { min-height: 44px; padding: 0 20px; gap: 4px; }
.mf-upgrade-card__actions .mf-btn--outline-light { border-width: 2px; }
.mf-upgrade-card__rank {
  flex-shrink: 0;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  min-width: 88px;
}
.mf-upgrade-card__rank span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
}

.mf-recharge-card { margin-top: 20px; }
.mf-recharge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 4px;
  margin-top: 18px;
}
.mf-recharge-grid__item {
  text-align: center;
  color: #424242 !important;
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none !important;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.mf-recharge-grid__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #f0f4ff;
  display: grid;
  place-items: center;
  color: #37474f;
}
.mf-more-sheet {
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e8ecf2;
}

.mf-affiliate {
  position: relative;
  margin: 20px 0 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(27, 40, 56, 0.06);
}
.mf-affiliate__accent {
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #c2185b, #e91e8c, #f48fb1);
}
.mf-affiliate__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px 0;
}
.mf-affiliate__badge {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #e91e8c;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.12), #fce4ec);
  border: 1px solid rgba(233, 30, 140, 0.18);
}
.mf-affiliate__empty { padding: 8px 18px 20px; }
.mf-affiliate__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 10px;
  padding: 16px 18px 20px;
}
.mf-affiliate__tile {
  text-align: center;
  color: #334155 !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
}
.mf-affiliate__img {
  width: 64px;
  height: 64px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f5f8ff, #e8eef9);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #37474f;
}
.mf-affiliate__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mf-promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0 0;
  padding: 24px;
  border-radius: 18px;
}
.mf-promo-card h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.mf-promo-card p { margin: 12px 0 20px; font-size: 14px; line-height: 1.4; }
.mf-promo-card .mf-btn { gap: 8px; min-height: 46px; padding: 0 24px; font-size: 16px; }
.mf-promo-card__icon {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.mf-promo-card__icon .mf-ico { display: block; }
.mf-promo-card__icon--soft {
  background: #e8eaf6;
  color: #3949ab;
}
.mf-promo-card--franchise {
  color: #fff;
  background: linear-gradient(135deg, #c2185b, #e91e63);
  box-shadow: 0 8px 18px rgba(194, 24, 91, 0.32);
}
.mf-promo-card--franchise p { color: rgba(255, 255, 255, 0.9); }
.mf-promo-card--webinar {
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e8eaf6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.mf-promo-card--webinar .mf-promo-card__copy {
  flex: 1;
  min-width: 0;
}
.mf-promo-card--webinar h2 { color: #3949ab; font-size: 17px; }
.mf-promo-card--webinar p { color: #64748b; margin: 6px 0 16px; font-size: 13px; }
.mf-promo-card--webinar .mf-btn { display: inline-flex; }
.mf-btn--indigo {
  background: #3949ab;
  color: #fff !important;
  min-height: 44px;
  padding: 0 18px;
  gap: 8px;
}

.mf-business .mf-quotes-section { margin-top: 20px; }

@media (max-width: 479.98px) {
  .mf-upgrade-card,
  .mf-promo-card--franchise { flex-direction: column; align-items: flex-start; }
  .mf-promo-card--webinar { flex-direction: row; align-items: center; }
}

/* Account — AccountScreen (profile_screen.dart) */
.mf-account-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f52c94, #e91e63);
  color: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}
.mf-account-hero::before,
.mf-account-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.mf-account-hero::before {
  width: 150px; height: 150px; top: -50px; right: -50px;
  background: rgba(255, 255, 255, 0.1);
}
.mf-account-hero::after {
  width: 100px; height: 100px; bottom: -30px; left: -30px;
  background: rgba(255, 255, 255, 0.08);
}
.mf-account-hero__id {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}
.mf-account-hero__avatar {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #f52c94;
  border: 3px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
}
.mf-account-hero__avatar .mf-ico { display: block; }
.mf-account-hero--guest .mf-account-hero__avatar {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}
.mf-account-hero__meta { flex: 1; min-width: 0; }
.mf-account-hero h1,
.mf-account-hero p { position: relative; z-index: 1; }
.mf-account-hero h1 { margin: 0 0 4px; font-size: 18px; font-weight: 800; }
.mf-account-hero--guest h1 { margin: 16px 0 8px; font-size: 24px; text-align: center; }
.mf-account-hero p { margin: 0; opacity: 0.9; font-size: 14px; }
.mf-account-hero__line {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.mf-account-hero__line:first-of-type { margin-top: 4px; }
.mf-account-hero__line .mf-ico { flex-shrink: 0; opacity: 0.85; }
.mf-account-hero__line span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mf-account-hero__verified {
  flex-shrink: 0;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 10px;
  background: rgba(76, 175, 80, 0.3);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #a5d6a7;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1;
}
.mf-account-hero__verified .mf-ico { display: block; }
.mf-account-hero--guest {
  text-align: center;
  padding: 24px 20px;
}
.mf-account-hero__sub {
  text-align: center;
  font-size: 15px !important;
  opacity: 0.9;
}
.mf-account-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.mf-account-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 45px;
  border-radius: 22px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
}
.mf-account-hero__btn .mf-ico { display: block; flex-shrink: 0; }
.mf-account-hero__btn--solid {
  background: #fff;
  color: #c2185b !important;
}
.mf-account-hero__btn--outline {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid #fff;
}

.mf-menu-card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.mf-menu-card__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: #1a1d26 !important;
  text-decoration: none !important;
  border-top: 1px solid #eeeeee;
}
.mf-menu-card__row:first-child { border-top: 0; }
.mf-menu-card__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #f5f5f5;
  color: #616161;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.mf-menu-card__icon .mf-ico { display: block; }
.mf-menu-card__copy { flex: 1; min-width: 0; }
.mf-menu-card__copy strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #212121;
}
.mf-menu-card__copy span {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 400;
  color: #757575;
}
.mf-menu-card__chevron { color: #bdbdbd; flex-shrink: 0; }

@media (max-width: 479.98px) {
  .mf-account-hero__id { flex-wrap: wrap; }
  .mf-account-hero__verified { margin-left: auto; }
}

@media (max-width: 479.98px) {
  .mf-order-list { grid-template-columns: 1fr; }
}

/* The site header bar is sticky, so in-page sticky search must clear it. */
.mf-search { top: 76px; }

@media (min-width: 992px) {
  .mf-search { position: static; }
}

/* =========================================================
   Wide-screen layout: content follows the header/footer width
   and single-column app lists become multi-column grids.
   ========================================================= */
@media (min-width: 768px) {
  .mf-order-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Rows keep the app layout but become cards so a grid reads correctly. */
  .mf-provider-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 12px;
    margin: 6px 0 0;
    background: transparent;
  }
  .mf-sp {
    display: flex;
    flex-direction: column;
    border: 1px solid #e8ecf2;
    border-radius: 12px;
    overflow: hidden;
  }
  .mf-sp__main { flex: 1; }
  .mf-sp__actions { margin-top: auto; }

  .mf-page-head__title { font-size: 30px; }
  .mf-page-head__sub { font-size: 14.5px; }
  .mf-business .mf-page-head__title { font-size: 18px; }
}

@media (min-width: 992px) {
  .mf-home { padding: 24px 0 48px; }
  .mf-finder .mf-home { padding: 0 0 48px; }
  .mf-finder__cats-wrap { margin: 4px calc(var(--mf-gutter) * -1) 0; }
  .mf-finder__cats {
    padding: 10px 28px 14px var(--mf-gutter);
  }
  .mf-order-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ── Shared page bar ─────────────────────────────────────────────── */
.mf-pagebar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  margin: 0 0 12px;
}
.mf-pagebar__back {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #1a1d26;
  background: #fff;
  border: 1px solid #eef0f4;
  flex: 0 0 auto;
}
.mf-pagebar__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #1a1d26;
}
.mf-finder__subchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e8ecf2;
  font-size: 13px;
  font-weight: 600;
  color: #1a1d26;
}
.mf-finder__subchip a { color: #8e919a; font-size: 18px; line-height: 1; }

.mf-home__inner--flush { padding-left: 0; padding-right: 0; width: 100%; max-width: none; }
.mf-home .mf-section:not(.mf-section--card) > .mf-hscroll {
  margin-left: calc(var(--mf-gutter) * -1);
  margin-right: calc(var(--mf-gutter) * -1);
}
.mf-shop-cats .mf-pagebar { padding: 4px var(--mf-gutter) 0; }

/* ── Shop categories browser ─────────────────────────────────────── */
.mf-catbrowser {
  display: flex;
  min-height: calc(100vh - 180px);
  background: #fff;
}
.mf-catbrowser__side {
  width: 120px;
  flex: 0 0 120px;
  background: #f3f4f6;
  overflow-y: auto;
}
.mf-catbrowser__side-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  text-align: center;
  color: #6b7280;
  font-size: 12px;
  text-decoration: none !important;
  border-left: 3px solid transparent;
}
.mf-catbrowser__side-item.is-active {
  background: #fff;
  color: #f52c94;
  font-weight: 700;
  border-left-color: #f52c94;
}
.mf-catbrowser__side-ico {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: inherit;
}
.mf-catbrowser__side-ico img { width: 100%; height: 100%; object-fit: cover; }
.mf-catbrowser__main { flex: 1; padding: 16px 16px 40px; min-width: 0; }
.mf-catbrowser__main h2 { margin: 0 0 20px; font-size: 20px; font-weight: 800; color: #111; }
.mf-catbrowser__empty { color: #8e919a; font-size: 14px; }
.mf-catbrowser__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 16px 12px;
}
.mf-catbrowser__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #1a1d26;
  text-decoration: none !important;
}
.mf-catbrowser__tile-ico {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--c1, #f5f6fa), var(--c2, #eceff5));
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #9ca3af;
}
.mf-catbrowser__tile-ico img { width: 100%; height: 100%; object-fit: cover; }
.mf-catbrowser__tile-name {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  max-height: 2.5em;
  overflow: hidden;
}

/* ── Finder browse ───────────────────────────────────────────────── */
.mf-finder-browse__search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  margin: 0 0 8px;
  padding: 0 12px;
  background: #eee;
  border-radius: 12px;
  color: #8e919a;
}
.mf-finder-browse__search input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0;
  font-size: 14px;
  color: #1a1d26;
}
.mf-finder-browse__tabs {
  display: flex;
  width: max-content;
  gap: 4px;
  padding: 0 4px 0 0;
  border-bottom: 1px solid #eceff5;
}
.mf-finder-browse__tab {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #8e919a;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1px;
}
.mf-finder-browse__tab.is-active {
  color: #1976d2;
  font-weight: 700;
  border-bottom-color: #1976d2;
}
.mf-finder-browse__panel { display: none; padding: 16px 0 32px; }
.mf-finder-browse__panel.is-active { display: block; }
.mf-finder-browse__panel h2 { margin: 0 0 12px; font-size: 16px; font-weight: 800; }
.mf-finder-browse__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.mf-finder-browse__chip {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  color: #1a1d26;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
}

/* ── Luxury product cards (app ProductCard) ──────────────────────── */
.mf-section--card {
  background: #fff;
  border: 1px solid #f0f1f5;
  border-radius: 22px;
  padding: 16px 0 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  margin-bottom: 20px;
}
.mf-section--card .mf-section__head { padding: 0 14px; }
.mf-products--grid,
.mf-products--listing {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.mf-products--grid { padding: 0 12px; background: transparent; border: 0; box-shadow: none; }
.mf-products--rail {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  width: max-content;
  padding: 0 12px 4px 12px;
}
a.mf-product {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none !important;
  color: inherit;
  border-radius: 14px;
  background: linear-gradient(135deg, #f7f8fc, #fff);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
  padding: 1px;
}
.mf-product--rail { flex: 0 0 156px; width: 156px; }
.mf-product__media {
  position: relative;
  display: block;
  background: #f9fafb;
  border-radius: 13px 13px 0 0;
  overflow: hidden;
  height: 130px;
}
.mf-product--rail .mf-product__media { height: 148px; }
.mf-product--compact .mf-product__media { height: 90px; }
.mf-product__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.mf-product__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(135deg, #f52c94, #e91e63);
  color: #fff;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 4px 7px;
  border-radius: 13px 0 8px 0;
}
.mf-product__heart {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 1;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  color: #bfc3cc;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.mf-product__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 10px 10px;
  background: #fff;
  border: 0.6px solid #f0f1f5;
  border-top: 0;
  border-radius: 0 0 13px 13px;
}
.mf-product__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  color: #1a1d26;
  min-height: 2.5em;
}
.mf-product__ship {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0, 137, 123, 0.08);
  border: 0.8px solid rgba(0, 137, 123, 0.18);
  color: #00897b;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.mf-product__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
}
.mf-product__price { font-size: 14px; font-weight: 800; color: #1a1d26; }
.mf-product__old { font-size: 10.5px; color: #a8acba; text-decoration: line-through; }
.mf-product__off { font-size: 10px; font-weight: 700; color: #2e7d32; }

/* ── Product detail ──────────────────────────────────────────────── */
.mf-pdp { padding-bottom: 120px; }
.mf-pdp__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
}
.mf-pdp__bar-actions { display: flex; gap: 10px; }
.mf-pdp__iconbtn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #eef0f4;
  background: #fff;
  display: grid;
  place-items: center;
  color: #1a1d26;
  cursor: pointer;
}
.mf-pdp__gallery { margin: 0 -4px 14px; }
.mf-pdp__stage {
  position: relative;
  background: #fff;
  border-radius: 16px;
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: visible;
}
.mf-pdp__photo {
  display: none;
  max-width: 100%;
  max-height: none;
  width: auto;
  height: auto;
  max-height: min(70vh, 560px);
  object-fit: contain;
  padding: 8px;
  cursor: zoom-in;
}
.mf-pdp__photo.is-active { display: block; }
.mf-pdp__thumbs { display: flex; gap: 8px; width: max-content; padding: 10px 4px 4px; }
.mf-pdp__thumb {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 10px;
  border: 1.5px solid #eef0f4;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}
.mf-pdp__thumb.is-active { border-color: #f52c94; }
.mf-pdp__thumb img { width: 100%; height: 100%; object-fit: contain; }
.mf-pdp__summary, .mf-pdp__desc, .mf-pdp__attrs {
  background: #fff;
  border: 0.8px solid #f0f1f5;
  border-radius: 20px;
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}
.mf-pdp__summary h1 { margin: 0 0 10px; font-size: 18px; font-weight: 800; line-height: 1.2; }
.mf-pdp__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.mf-pdp__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.mf-pdp__chip--teal { color: #00897b; background: rgba(0,137,123,.08); border: 1px solid rgba(0,137,123,.18); }
.mf-pdp__chip--ok { color: #2e7d32; background: rgba(46,125,50,.08); border: 1px solid rgba(46,125,50,.18); }
.mf-pdp__chip--no { color: #c62828; background: rgba(198,40,40,.08); border: 1px solid rgba(198,40,40,.18); }
.mf-pdp__price { display: flex; align-items: flex-end; gap: 10px; flex-wrap: wrap; }
.mf-pdp__price strong { font-size: 26px; font-weight: 900; letter-spacing: -0.4px; }
.mf-pdp__price s { font-size: 14px; color: #a0a4ae; }
.mf-pdp__save {
  color: #2e7d32;
  background: rgba(46,125,50,.08);
  border: 1px solid rgba(46,125,50,.18);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 700;
}
.mf-pdp__tax { margin: 6px 0 0; font-size: 12px; font-weight: 600; color: #7c808c; }
.mf-pdp__attr { margin-bottom: 12px; }
.mf-pdp__attr p { margin: 0 0 8px; font-size: 13px; font-weight: 700; }
.mf-pdp__opt-row { display: flex; flex-wrap: wrap; gap: 8px; }
.mf-pdp__opt {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #e8ecf2;
  background: #fff;
  color: #1a1d26;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
}
.mf-pdp__opt.is-active { border-color: #f52c94; color: #f52c94; background: rgba(245,44,148,.06); }
.mf-pdp__desc h2 { margin: 0 0 8px; font-size: 15px; font-weight: 800; }
.mf-pdp__desc div { font-size: 14px; color: #4b5160; line-height: 1.55; }
.mf-pdp__dock {
  position: sticky;
  bottom: 72px;
  z-index: 30;
  padding: 0 14px 12px;
}
.mf-pdp__dock-inner {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border: 0.8px solid #f0f1f5;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}
.mf-pdp__cart, .mf-pdp__buy {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}
.mf-pdp__cart { background: #fff; color: #f52c94; border: 1.3px solid #f52c94; }
.mf-pdp__buy { background: linear-gradient(135deg, #f52c94, #e91e63); color: #fff; border: 0; }
.mf-pdp__cart:disabled, .mf-pdp__buy:disabled { opacity: 0.45; cursor: not-allowed; }
@media (min-width: 992px) {
  .mf-pdp { padding-bottom: 40px; }
  .mf-pdp__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    column-gap: 28px;
    align-items: start;
  }
  .mf-pdp__bar { grid-column: 1 / -1; }
  .mf-pdp__gallery { grid-column: 1; grid-row: 2 / span 5; margin: 0 0 14px; }
  .mf-pdp__stage { min-height: 420px; }
  .mf-pdp__photo { max-height: min(78vh, 640px); }
  .mf-pdp__summary,
  .mf-pdp__attrs,
  .mf-pdp__desc,
  .mf-pdp__dock { grid-column: 2; }
  .mf-pdp__dock {
    position: static;
    padding: 0 0 16px;
    max-width: none;
    margin: 0;
  }
  .mf-catbrowser { min-height: 70vh; border-radius: 0; overflow: hidden; border: 0; border-top: 1px solid #eef0f4; }
}

/* ── Shimmer (page-specific skeletons) ───────────────────────────── */
@keyframes mfShimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.mf-shimmer {
  display: block;
  background: linear-gradient(90deg, #eceff5 0%, #f7f8fb 40%, #eceff5 80%);
  background-size: 800px 100%;
  animation: mfShimmer 1.2s ease-in-out infinite;
  border-radius: 10px;
}
.mf-shimmer--title { height: 22px; width: 160px; margin-bottom: 8px; border-radius: 6px; }
.mf-shimmer--line { height: 10px; margin-top: 8px; }
.mf-shimmer--tiny { width: 72px; height: 10px; }
.mf-shimmer--short { width: 55%; }
.mf-shimmer--mid { width: 140px; }
.mf-shimmer--wide { width: 85%; height: 16px; }
.mf-shimmer--search { height: 48px; border-radius: 16px; margin: 12px 0 16px; }
.mf-shimmer--grow { flex: 1; margin: 0; }
.mf-shimmer--tune { width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0; }
.mf-shimmer--banner { height: 180px; border-radius: 20px; margin-bottom: 18px; }
.mf-shimmer--banner-slim { height: 72px; border-radius: 16px; margin: 12px 0 16px; }
.mf-shimmer--pagebar { height: 28px; width: 180px; margin-bottom: 14px; }
.mf-shimmer--avatar { width: 48px; height: 48px; border-radius: 24px; flex-shrink: 0; }
.mf-shimmer--avatar-lg { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 12px; }
.mf-shimmer--iconbox { width: 50px; height: 50px; border-radius: 16px; margin-left: auto; flex-shrink: 0; }
.mf-shimmer--cat-tile { width: 54px; height: 54px; border-radius: 14px; }
.mf-shimmer--cat-round { width: 64px; height: 64px; border-radius: 20px; margin: 0 auto; }
.mf-shimmer--orb { width: 44px; height: 44px; border-radius: 50%; margin: 0 auto; }
.mf-shimmer--photo { width: 100px; height: 100px; border-radius: 8px; flex-shrink: 0; }
.mf-shimmer--chip { width: 72px; height: 22px; border-radius: 6px; }
.mf-shimmer--btn { height: 40px; border-radius: 8px; flex: 1; }
.mf-shimmer--pill { width: 70px; height: 28px; border-radius: 20px; }
.mf-shimmer--tab { width: 78px; height: 36px; border-radius: 999px; flex-shrink: 0; }
.mf-shimmer--prod-img { height: 136px; border-radius: 14px; }
.mf-shimmer--gallery { height: min(52vw, 360px); border-radius: 16px; margin-bottom: 12px; }
.mf-shimmer--thumb { width: 56px; height: 56px; border-radius: 10px; flex-shrink: 0; }
.mf-shimmer--price { width: 90px; height: 22px; }
.mf-shimmer--cta { height: 46px; border-radius: 12px; flex: 1; }
.mf-shimmer--wallet { height: 128px; border-radius: 20px; margin: 8px 0 12px; }
.mf-shimmer--quick { height: 96px; border-radius: 18px; margin: 10px 0 16px; }
.mf-shimmer--upgrade { height: 160px; border-radius: 18px; margin: 16px 0; }
.mf-shimmer--side-item { height: 72px; border-radius: 0; margin-bottom: 2px; }
.mf-shimmer--menu-row { height: 52px; border-radius: 0; border-bottom: 1px solid #f1f5f9; }

.mf-shimmer-pane { display: none; }
.mf-shimmer-pane.is-active { display: block; }

.mf-shimmer-row { display: flex; gap: 12px; overflow: hidden; margin-bottom: 18px; }
.mf-shimmer-row--tabs { gap: 8px; margin: 8px 0 16px; }
.mf-shimmer-row--thumbs { gap: 8px; margin-bottom: 16px; }
.mf-shimmer-row--chips { gap: 8px; margin: 12px 0; }
.mf-shimmer-cat { width: 76px; flex: 0 0 76px; text-align: center; }
.mf-shimmer-search-row { display: flex; gap: 8px; align-items: center; margin: 4px 0 16px; }
.mf-shimmer-greet { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.mf-shimmer-sectionhead { display: flex; align-items: center; justify-content: space-between; margin: 8px 0 14px; }

.mf-shimmer-sp {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  background: #fff;
  border-radius: 0;
  padding: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eceff3;
}
.mf-shimmer-sp__body { min-width: 0; }
.mf-shimmer-sp__btns { grid-column: 1 / -1; display: flex; gap: 6px; }

.mf-shimmer-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.mf-shimmer-product { min-width: 0; }

.mf-shimmer-browser { display: flex; min-height: 60vh; margin: 0 calc(var(--mf-gutter, 16px) * -1); }
.mf-shimmer-browser__side {
  width: 112px;
  flex-shrink: 0;
  background: #f3f4f8;
  padding: 8px 0;
}
.mf-shimmer-browser__main { flex: 1; padding: 16px; }
.mf-shimmer-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 12px;
  margin-top: 16px;
}
.mf-shimmer-tiles--3 { margin-top: 8px; }
.mf-shimmer-tile { text-align: center; }

.mf-shimmer-pdp-btns { display: flex; gap: 12px; margin-top: 16px; }
.mf-shimmer-hero { text-align: center; padding: 24px 12px; background: #fff; border-radius: 20px; }
.mf-shimmer-hero--account {
  background: linear-gradient(135deg, #f8d0e4, #fce4ec);
  padding: 28px 16px 24px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.mf-shimmer-order {
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
}
.mf-shimmer-order__top,
.mf-shimmer-order__bottom { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.mf-shimmer-order__bottom { margin-top: 12px; }

.mf-shimmer-biz-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px;
  margin: 16px 0;
}
.mf-shimmer-recharge {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 8px;
  margin-top: 16px;
}
.mf-shimmer-menu {
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 16px;
  overflow: hidden;
}

.mf-shimmer-overlay:not([hidden]) {
  display: block !important;
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  max-width: none !important;
  height: 100dvh !important;
  margin: 0 !important;
  padding: 80px var(--mf-gutter, 16px) 88px !important;
  box-sizing: border-box !important;
  z-index: 4000 !important;
  background: #f5f6fa !important;
  overflow: auto !important;
}
.mf-shimmer-overlay__inner {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

@media (min-width: 768px) {
  .mf-shimmer-products { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .mf-shimmer-sp { grid-template-columns: 100px 1fr; border: 1px solid #e8ecf2; border-radius: 12px; }
}
@media (min-width: 992px) {
  .mf-shimmer-overlay:not([hidden]) { padding-top: 96px !important; padding-bottom: 48px !important; }
}

/* Hide the legacy GIF loader; AJAX still toggles it, and mf-shell shows shimmer. */
body .large-loader {
  display: none !important;
}
body .large-loader img { display: none !important; }
.mf-search--page { margin-bottom: 16px; }
.mf-search--page .mf-ico { color: #9aa0ad; flex: 0 0 auto; }
.mf-search__clear { color: #8e919a; font-size: 22px; padding: 0 6px; line-height: 1; }

/* Full-image lightbox (app ProviderPhotoViewer) */
.mf-lightbox:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.mf-lightbox[hidden] { display: none !important; }
.mf-lightbox__stage {
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 48px 48px;
  box-sizing: border-box;
}
.mf-lightbox__stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.mf-lightbox__close {
  position: absolute;
  top: 8px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.mf-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 64px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}
.mf-lightbox__prev { left: 8px; }
.mf-lightbox__next { right: 8px; }
.mf-lightbox__count {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

/* Become a provider — BecomeProviderScreen */
.mf-reg { background: #f5f6fa; }
.mf-reg .mf-home__inner { padding-bottom: 40px; }
.mf-reg__done {
  padding: 24px;
}
.mf-reg__done h2 { margin: 0 0 8px; font-size: 18px; }
.mf-reg__done p { margin: 0 0 16px; color: #64748b; font-size: 14px; }
.mf-reg__form {
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 16px;
  padding: 8px 16px 20px;
}
.mf-reg__steps { list-style: none; margin: 0; padding: 0; }
.mf-reg__step { border-bottom: 1px solid #f1f5f9; }
.mf-reg__step:last-child { border-bottom: 0; }
.mf-reg__head {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 0;
  border: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  color: #1a1d26;
  text-align: left;
  cursor: pointer;
}
.mf-reg__head span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eceff3;
  color: #616161;
  font-size: 13px;
  font-weight: 800;
}
.mf-reg__step.is-open .mf-reg__head span,
.mf-reg__step.is-done .mf-reg__head span {
  background: #f52c94;
  color: #fff;
}
.mf-reg__body { display: none; padding: 0 0 16px; }
.mf-reg__step.is-open .mf-reg__body { display: block; }
.mf-reg__body h2 { margin: 0 0 10px; font-size: 18px; font-weight: 800; color: #1a1d26; }
.mf-reg__body p { margin: 0 0 12px; font-size: 14px; line-height: 1.45; color: #616161; }
.mf-reg__note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 12px;
  background: #fce4ec;
  border: 1px solid #e8ecf2;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.35;
}
.mf-reg__note .mf-ico { color: #f52c94; flex-shrink: 0; }
.mf-reg__field {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 0 14px;
  min-height: 48px;
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 10px;
}
.mf-reg__field .mf-ico { color: #9e9e9e; flex-shrink: 0; }
.mf-reg__field:focus-within { border-color: #f52c94; }
.mf-reg__field input,
.mf-reg__field select,
.mf-reg__field textarea {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  padding: 12px 0;
  font-family: inherit;
}
.mf-reg__field textarea { resize: vertical; }
.mf-reg__label { margin: 8px 0 6px; font-size: 13px; font-weight: 600; color: #1a1d26; }
.mf-reg__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.mf-reg__chip { cursor: pointer; }
.mf-reg__chip input { position: absolute; opacity: 0; pointer-events: none; }
.mf-reg__chip span {
  display: block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e8ecf2;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
}
.mf-reg__chip input:checked + span {
  background: rgba(245, 44, 148, 0.15);
  border-color: #f52c94;
  color: #c2185b;
}
.mf-reg__upload {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100px;
  margin-bottom: 12px;
  border: 1px dashed #e8ecf2;
  border-radius: 10px;
  background: #fff center/cover no-repeat;
  color: #9e9e9e;
  font-size: 12px;
  cursor: pointer;
  overflow: hidden;
}
.mf-reg__upload--sm { width: 80px; height: 80px; margin: 0 8px 8px 0; display: inline-flex; }
.mf-reg__photos { display: flex; flex-wrap: wrap; }
.mf-reg__upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.mf-reg__upload.has-file span,
.mf-reg__upload.has-file .mf-ico { opacity: 0; }
.mf-reg__agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
  font-size: 13px;
  color: #1a1d26;
}
.mf-reg__agree a { color: #f52c94; }
.mf-reg__error { margin: 8px 0 0; color: #c62828; font-size: 13px; font-weight: 600; }
.mf-reg__actions { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.mf-reg__back {
  border: 0;
  background: transparent;
  color: #f52c94;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 12px;
}

.mf-legal {
  max-width: 920px;
  margin: 0 auto 40px;
  color: #334155;
  font-size: 15px;
  line-height: 1.7;
}
.mf-legal__updated {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}
.mf-legal h2 {
  margin: 28px 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #1a1d26;
}
.mf-legal h3 {
  margin: 18px 0 8px;
  font-size: 15.5px;
  font-weight: 700;
  color: #1a1d26;
}
.mf-legal p { margin: 0 0 12px; }
.mf-legal ul {
  margin: 0 0 12px;
  padding-left: 22px;
}
.mf-legal li { margin: 0 0 6px; }
.mf-legal a { color: #f52c94; }
.mf-legal__copy {
  margin-top: 24px;
  font-weight: 700;
  color: #1a1d26;
}
