﻿/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}




.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}


.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: rgb(var(--base));
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
  margin-top: 0px !important;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: rgb(var(--base));
  background-color: #fff;
  border-radius: 5px;
  height: 100%;

}


.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: rgb(var(--base));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--hover-border-color);
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid rgb(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid rgb(var(--base));
  display: inline-block;
  border-radius: 100%;

}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
    width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}


.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
    align-self: center;
    padding-left: 5px;
  }

}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;

}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #fff;
  border-radius: 5px;
  border: 1px solid rgb(var(--base));
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
  z-index: 999;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}


.maintenance-page {
  display: grid;
  place-content: center;
  width: 100vw;
  height: 100vh;
}

.language-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 8px;
  border-radius: 4px;
  width: max-content;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.language_flag {
  flex-shrink: 0;
  display: flex;
}

.language_flag img {
  height: 20px;
  width: 20px;
  object-fit: cover;
  border-radius: 50%;
}

.language-wrapper.show .collapse-icon {
  transform: rotate(180deg)
}

.collapse-icon {
  font-size: 14px;
  display: flex;
  transition: all linear 0.2s;
}

.language_text_select {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  display: flex;
  line-height: 1;
}

.language-content {
  display: flex;
  align-items: center;
  gap: 6px;
}


.language_text {
  color: black;
  margin-bottom: 0px;
}

.language-list {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  cursor: pointer;
  border: 0 !important;
}

.language .dropdown-menu {
  position: absolute;
  -webkit-transition: ease-in-out 0.1s;
  transition: ease-in-out 0.1s;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  display: unset;
  background: #fff;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  min-width: 150px;
  border-radius: 8px;
  border: 1px solid rgb(0 0 0 / 10%);
  padding-block: 6px !important;
  right: 0 !important;
  left: auto !important;
}

.language .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
}

.form-control:disabled {
  background-color: #e9ecef8a;
  opacity: 1;
}

.removeFile i {
  color: hsl(var(--white));
}

/* ============================================================
   GOLDEN MARRIAGE MEDIA â€” Apple-Inspired Design System v3
   ============================================================ */

:root {
  --mm-bg: #f5f5f7;
  --mm-white: #ffffff;
  --mm-ink: #1d1d1f;
  --mm-muted: #86868b;
  --mm-accent: #b56630;
  --mm-accent-dark: #7f431d;
  --mm-accent-soft: rgba(181, 102, 48, 0.10);
  --mm-border: rgba(0, 0, 0, 0.07);
  --mm-border-focus: rgba(181, 102, 48, 0.38);
  --mm-shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
  --mm-shadow: 0 2px 16px rgba(0, 0, 0, 0.07), 0 8px 40px rgba(0, 0, 0, 0.04);
  --mm-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.11), 0 2px 8px rgba(0, 0, 0, 0.06);
  --mm-shadow-xl: 0 20px 70px rgba(0, 0, 0, 0.14);
  --mm-radius: 20px;
  --mm-radius-lg: 30px;
  --mm-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --body-font: "Manrope", "Hind Siliguri", -apple-system, BlinkMacSystemFont, sans-serif;
  --heading-font: "Manrope", "Hind Siliguri", -apple-system, BlinkMacSystemFont, sans-serif;
  --banner-font: "Hind Siliguri", "Manrope", sans-serif;
}

/* â”€â”€ Global foundation â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
html,
body {
  background: var(--mm-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: var(--mm-muted);
  font-family: var(--body-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
.banner-font {
  color: var(--mm-ink);
  font-family: var(--heading-font);
  letter-spacing: -0.025em;
}

body.lang-bn,
body.lang-bn p,
body.lang-bn span,
body.lang-bn label,
body.lang-bn input,
body.lang-bn select,
body.lang-bn textarea,
body.lang-bn button,
body.lang-bn a,
body.lang-bn li {
  font-family: "Hind Siliguri", "Manrope", sans-serif;
}

/* â”€â”€ Buttons â€” Apple pill style â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 0.82rem 1.4rem;
  transition: background 0.22s var(--mm-ease), transform 0.22s var(--mm-ease),
    box-shadow 0.22s var(--mm-ease), border-color 0.22s var(--mm-ease);
}

.btn--base,
.btn.btn--base {
  background: linear-gradient(135deg, var(--mm-accent) 0%, #c97840 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 8px rgba(181, 102, 48, 0.28);
}

.btn--base:hover,
.btn.btn--base:hover {
  background: linear-gradient(135deg, var(--mm-accent-dark) 0%, var(--mm-accent) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 22px rgba(181, 102, 48, 0.38);
  transform: translateY(-1px);
}

.btn--light-bg,
.btn.btn--light-bg {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--mm-border);
  color: var(--mm-ink);
}

.btn--light-bg:hover,
.btn.btn--light-bg:hover {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
  transform: translateY(-1px);
}

/* ── Eyebrow / badge label ─────────────────────────── */
.mm-eyebrow {
  align-items: center;
  color: #8b3a4a;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 0.38rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mm-eyebrow::before {
  background: linear-gradient(90deg, #8b3a4a, var(--mm-accent));
  border-radius: 99px;
  content: '';
  display: inline-block;
  height: 2px;
  width: 18px;
}

/* ── Stat tiles ──────────────────────────────────────── */
.mm-stat-tile {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(139, 58, 74, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  min-width: 148px;
  padding: 1rem 1.2rem;
}

.mm-stat-tile strong {
  color: #6b2737;
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.mm-stat-tile span {
  color: var(--mm-muted);
  display: block;
  font-size: 0.82rem;
  margin-top: 0.38rem;
}

/* ── Site header ─────────────────────────────────── */
.mm-site-header {
  left: 0;
  right: 0;
  top: 0;
  position: sticky;
  z-index: 100;
}

/* Romantic top trust bar — warm rose-gold gradient */
.mm-site-header__top {
  background: linear-gradient(90deg, #3d1a24 0%, #6b2737 40%, #8b3a4a 70%, #6b2737 100%);
  color: rgba(255, 230, 220, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.44rem 0;
  position: relative;
  overflow: hidden;
}

.mm-site-header__top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 200, 180, 0.07) 50%, transparent);
  pointer-events: none;
}

.mm-site-header__top-inner,
.mm-site-header__trust {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  justify-content: space-between;
}

.mm-site-header__trust span {
  align-items: center;
  display: inline-flex;
  gap: 0.42rem;
  position: relative;
}

.mm-site-header__trust span:not(:last-child)::after {
  color: rgba(255, 180, 160, 0.35);
  content: “✦”;
  font-size: 0.6rem;
  margin-left: 1.2rem;
}

.mm-trust-icon {
  display: inline-block;
  flex-shrink: 0;
  height: 13px;
  opacity: 0.9;
  vertical-align: middle;
  width: 13px;
}

/* Main nav bar — frosted glass with warm bottom accent */
.mm-site-header__main {
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1.5px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 1px 0 0 rgba(181, 102, 48, 0.13);
}

.mm-site-header.is-scrolled .mm-site-header__main {
  box-shadow: 0 2px 24px rgba(61, 26, 36, 0.10), 0 1px 0 0 rgba(181, 102, 48, 0.13);
}

.mm-site-header__brand img {
  max-height: 46px;
}

.mm-site-header__actions {
  align-items: center;
  display: flex;
  gap: 0.65rem;
  margin-left: 1rem;
}

/* Nav links with romantic underline indicator */
.mm-site-header .nav-link {
  color: var(--mm-ink) !important;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding-left: 0.8rem !important;
  padding-right: 0.8rem !important;
  position: relative;
  transition: color 0.2s var(--mm-ease);
}

.mm-site-header .nav-link::after {
  background: linear-gradient(90deg, #8b3a4a, var(--mm-accent));
  border-radius: 99px;
  bottom: 4px;
  content: '';
  height: 2px;
  left: 0.8rem;
  position: absolute;
  right: 0.8rem;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s var(--mm-ease);
}

.mm-site-header .nav-link.active,
.mm-site-header .nav-link:hover {
  color: var(--mm-accent) !important;
}

.mm-site-header .nav-link.active::after,
.mm-site-header .nav-link:hover::after {
  transform: scaleX(1);
}

/* Mobile nav CTA heart icon */
.mm-nav-link--cta {
  color: var(--mm-accent) !important;
}

.mm-nav-heart {
  display: inline-block;
  height: 13px;
  margin-right: 0.3rem;
  vertical-align: middle;
  width: 13px;
}

/* CTA button in header — “Begin Your Journey” */
.mm-btn-start {
  align-items: center;
  display: inline-flex !important;
  gap: 0.4rem;
}

.mm-btn-heart {
  flex-shrink: 0;
  height: 13px;
  width: 13px;
}

/* ── Language segmented control ── */
.mm-lang-seg {
  align-items: center;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  display: inline-flex;
  gap: 2px;
  padding: 3px;
}

.mm-lang-seg__opt {
  align-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 700;
  gap: 0.42rem;
  padding: 0.3rem 0.72rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.mm-lang-seg__opt:hover {
  color: #fff;
}

.mm-lang-seg__opt.is-active {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14);
  color: #1d1d1f;
}

.mm-lang-seg__flag {
  border-radius: 3px;
  display: block;
  height: 14px;
  object-fit: cover;
  width: 20px;
}

.mm-lang-seg__label {
  letter-spacing: 0.01em;
}

/* Desktop top bar — inherits the dark-bg variant above */

/* Mobile hamburger menu — light bg, bigger touch targets */
.mm-site-header__language-mobile {
  padding: 0.6rem 0.85rem 0.1rem;
}

.mm-site-header__language-mobile .mm-lang-seg {
  background: rgba(24, 34, 48, 0.05);
  border-color: var(--mm-border);
  width: 100%;
  justify-content: center;
}

.mm-site-header__language-mobile .mm-lang-seg__opt {
  color: var(--mm-muted);
  flex: 1;
  font-size: 0.9rem;
  justify-content: center;
  padding: 0.6rem 1rem;
}

.mm-site-header__language-mobile .mm-lang-seg__opt:hover {
  color: var(--mm-ink);
}

.mm-site-header__language-mobile .mm-lang-seg__opt.is-active {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
  color: var(--mm-ink);
}

.mm-site-header__language-mobile .mm-lang-seg__flag {
  height: 16px;
  width: 24px;
}

/* â”€â”€ Mobile bottom nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mm-mobile-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 0.5px solid rgba(0, 0, 0, 0.10);
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  z-index: 99;
  padding: 0.5rem 0;
}

.mm-mobile-nav .mobile-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mm-mobile-nav .mobile-nav__link {
  align-items: center;
  color: var(--mm-muted);
  display: flex;
  flex-direction: column;
  font-size: 0.66rem;
  font-weight: 600;
  gap: 0.15rem;
  padding: 0.2rem 0.5rem;
  text-decoration: none;
  transition: color 0.18s;
}

.mm-mobile-nav .mobile-nav__link i {
  font-size: 1.35rem;
}

.mm-mobile-nav .mobile-nav__link.is-active {
  color: #8b3a4a;
}

/* Custom SVG icon sizing in mobile nav */
.mm-mobile-nav-icon {
  display: block;
  height: 1.4rem;
  width: 1.4rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOME HERO â€” Full-screen, Apple-scale
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.mm-home-hero--immersive {
  padding: 0 0 1rem;
}

.mm-home-hero__stage {
  background: linear-gradient(180deg, #faf9f7 0%, #f5f2ee 100%);
  overflow: hidden;
  padding: 1rem 0 2.5rem;
  position: relative;
}

.mm-home-hero__stage::before {
  content: '';
  pointer-events: none;
  position: absolute;
  top: -30%;
  left: -15%;
  width: 55%;
  height: 110%;
  background: radial-gradient(ellipse, rgba(181, 102, 48, 0.13) 0%, transparent 68%);
}

.mm-home-hero__stage::after {
  content: '';
  pointer-events: none;
  position: absolute;
  top: -10%;
  right: -10%;
  width: 48%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(50, 110, 185, 0.08) 0%, transparent 68%);
}

.mm-home-hero__layout {
  align-items: center;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  min-height: calc(100svh - 104px);
  padding: 1.5rem 0 1rem;
  position: relative;
  z-index: 1;
}

/* Hero headline â€” large, confident */
.mm-home-hero__content h1,
.mm-page-hero h1 {
  color: var(--mm-ink);
  font-size: clamp(3.2rem, 5.8vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 0.8rem 0 1.1rem;
  max-width: 15ch;
}

.mm-home-hero__lead {
  color: var(--mm-muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.68;
  margin-bottom: 2rem;
  max-width: 52ch;
}

/* Hero CTAs */
.mm-home-hero__actions,
.mm-final-cta__actions,
.mm-dashboard-hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Text link */
.mm-text-link {
  color: var(--mm-ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.mm-text-link:hover {
  color: var(--mm-accent-dark);
}

/* Hero proof badges */
.mm-home-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.2rem;
  margin-top: 1.25rem;
}

.mm-home-hero__proof span {
  align-items: center;
  color: var(--mm-muted);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 600;
  gap: 0.42rem;
}

.mm-home-hero__proof i {
  color: var(--mm-accent);
  font-size: 1rem;
}

/* Profile-for chips row */
.mm-home-hero__profile-for {
  margin-top: 1.4rem;
}

.mm-home-hero__profile-label {
  color: var(--mm-muted);
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.65rem;
}

.mm-home-hero__profile-pills,
.mm-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.mm-chip-link {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  color: var(--mm-ink);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.62rem 1.05rem;
  text-decoration: none;
  transition: all 0.22s var(--mm-ease);
}

.mm-chip-link:hover {
  border-color: rgba(181, 102, 48, 0.28);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  color: var(--mm-accent-dark);
  transform: translateY(-2px);
}

/* Hero stats row */
.mm-home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* â”€â”€ Hero visual grid (portrait cards) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mm-home-hero__visual {
  position: relative;
}

.mm-home-hero__visual-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mm-home-portrait-card,
.mm-home-support-card,
.mm-trust-visual-card,
.mm-category-card,
.mm-story-feature__intro,
.mm-family-feature {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-lg);
  box-shadow: var(--mm-shadow);
}

.mm-home-portrait-card {
  overflow: hidden;
  position: relative;
  transition: transform 0.38s var(--mm-ease), box-shadow 0.38s var(--mm-ease);
}

.mm-home-portrait-card--hero {
  min-height: 460px;
}

.mm-home-portrait-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--mm-shadow-xl);
}

.mm-home-portrait-card img {
  display: block;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s var(--mm-ease);
}

.mm-home-portrait-card:hover img {
  transform: scale(1.04);
}

.mm-home-portrait-card--groom {
  margin-top: 2.5rem;
}

.mm-home-portrait-card__caption {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 100%);
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 3rem 1.15rem 1.1rem;
  position: absolute;
  right: 0;
}

.mm-home-portrait-card__caption span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  opacity: 0.85;
  text-transform: uppercase;
}

.mm-home-portrait-card__caption strong {
  color: #fff;
  display: block;
  font-size: 0.97rem;
  margin-top: 0.4rem;
}

.mm-home-support-card {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-column: 1 / -1;
  grid-template-columns: 200px minmax(0, 1fr);
  overflow: hidden;
  padding: 1rem;
}

.mm-home-support-card--hero {
  background: linear-gradient(135deg, rgba(255, 249, 242, 0.98), rgba(255, 255, 255, 0.98));
}

.mm-home-support-card__media img,
.mm-trust-visual-card__media img,
.mm-family-feature__media img,
.mm-story-feature__image img {
  display: block;
  width: 100%;
}

.mm-home-support-card__body h3,
.mm-family-feature__content h2,
.mm-conversion-ribbon__content h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0.4rem 0 0.65rem;
}

.mm-home-support-card__body p,
.mm-family-feature__content p,
.mm-story-feature__copy p {
  font-size: 0.94rem;
  line-height: 1.72;
  margin-bottom: 0;
}

.mm-home-hero__seal {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--mm-border);
  border-radius: 24px;
  display: grid;
  gap: 1rem;
  grid-column: 1 / -1;
  grid-template-columns: 82px minmax(0, 1fr);
  padding: 1rem 1.1rem;
  box-shadow: var(--mm-shadow-sm);
}

.mm-home-hero__seal img {
  display: block;
  width: 100%;
}

.mm-home-hero__seal strong {
  color: var(--mm-ink);
  display: block;
  font-size: 0.97rem;
  line-height: 1.45;
}

/* â”€â”€ Search panel â€” frosted glass â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mm-search-panel {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 0.5px solid rgba(255, 255, 255, 0.65);
  border-radius: 26px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10), 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  position: relative;
  z-index: 2;
}

.mm-search-panel__intro {
  margin-bottom: 1.1rem;
  max-width: 58ch;
}

.mm-search-panel__intro h2 {
  color: var(--mm-ink);
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0.3rem 0 0.4rem;
}

.mm-field-label {
  color: var(--mm-ink);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.38rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOME SECTIONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.mm-home-section {
  padding: 4.5rem 0 2rem;
}

.mm-home-section--soft {
  background: var(--mm-bg);
  padding: 4.5rem 0;
}

.mm-home-section--cta {
  padding: 2rem 0 4.5rem;
}

.mm-home-section--compact {
  padding: 1.5rem 0 0.5rem;
}

.mm-section-head {
  margin-bottom: 2.5rem;
  max-width: 820px;
}

.mm-section-head h2 {
  color: var(--mm-ink);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: 0.5rem;
}

.mm-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* â”€â”€ Trust card grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mm-trust-visual-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mm-trust-visual-grid--featured {
  align-items: stretch;
}

.mm-trust-visual-card {
  padding: 1.35rem;
}

.mm-trust-visual-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mm-shadow-xl);
}

.mm-trust-visual-card--feature {
  display: grid;
  gap: 1.25rem;
  grid-column: span 2;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
}

.mm-trust-visual-card__media {
  border-radius: 18px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.mm-trust-visual-card--feature .mm-trust-visual-card__media {
  margin-bottom: 0;
}

.mm-trust-visual-card__icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(181, 102, 48, 0.14), rgba(50, 112, 185, 0.11));
  border-radius: 16px;
  color: var(--mm-ink);
  display: inline-flex;
  font-size: 1.45rem;
  height: 54px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 54px;
}

.mm-trust-visual-card__body strong,
.mm-category-card strong,
.mm-story-feature__copy strong {
  color: var(--mm-ink);
  display: block;
  font-size: 1.03rem;
  font-weight: 700;
}

.mm-trust-visual-card__body p,
.mm-category-card p {
  color: var(--mm-muted);
  font-size: 0.91rem;
  line-height: 1.7;
  margin: 0.55rem 0 0;
}

.mm-trust-visual-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.mm-trust-visual-list li {
  color: var(--mm-ink);
  font-size: 0.91rem;
  font-weight: 600;
  padding-left: 1.35rem;
  position: relative;
}

.mm-trust-visual-list li+li {
  margin-top: 0.55rem;
}

.mm-trust-visual-list li::before {
  color: var(--mm-accent);
  content: "â€¢";
  font-size: 1.35rem;
  left: 0;
  line-height: 1;
  position: absolute;
  top: -0.12rem;
}

/* â”€â”€ Conversion ribbon â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mm-conversion-ribbon {
  align-items: center;
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 26px;
  box-shadow: var(--mm-shadow-sm);
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding: 1.4rem 1.75rem;
}

.mm-conversion-ribbon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* â”€â”€ Category cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mm-category-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mm-category-card {
  min-height: 100%;
  padding: 1.35rem;
  transition: transform 0.3s var(--mm-ease), box-shadow 0.3s var(--mm-ease);
}

.mm-category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--mm-shadow-xl);
}

.mm-category-card span {
  color: var(--mm-accent);
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mm-category-card strong {
  margin: 0.55rem 0 0.95rem;
}

.mm-category-card--premium {
  background: linear-gradient(145deg, #1d1d1f 0%, #2c2c2e 100%);
  border-color: transparent;
}

.mm-category-card--premium span,
.mm-category-card--premium strong,
.mm-category-card--premium p {
  color: rgba(255, 255, 255, 0.9);
}

.mm-category-card--premium .btn--light-bg {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  margin-top: 1rem;
}

/* â”€â”€ Family feature â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mm-family-feature {
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  padding: 0;
}

.mm-family-feature__media {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.mm-family-feature__media img {
  border-radius: 28px;
  display: block;
  width: 100%;
}

.mm-family-feature__note {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--mm-border);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  max-width: 220px;
  padding: 0.8rem 1rem;
  position: absolute;
}

.mm-family-feature__note strong {
  color: var(--mm-ink);
  display: block;
  font-size: 0.9rem;
}

.mm-family-feature__note span {
  color: var(--mm-muted);
  display: block;
  font-size: 0.8rem;
  line-height: 1.5;
  margin-top: 0.22rem;
}

.mm-family-feature__note--top {
  left: 1.25rem;
  top: 1.25rem;
}

.mm-family-feature__note--bottom {
  bottom: 1.25rem;
  right: 1.25rem;
}

.mm-family-feature__content h2 {
  color: var(--mm-ink);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.mm-feature-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 1.2rem 0 1.75rem;
  padding: 0;
}

.mm-feature-list li {
  color: var(--mm-muted);
  font-size: 0.97rem;
  font-weight: 600;
  padding-left: 1.55rem;
  position: relative;
}

.mm-feature-list li+li {
  margin-top: 0;
}

.mm-feature-list li::before {
  color: var(--mm-accent);
  content: "â€¢";
  font-size: 1.45rem;
  left: 0;
  line-height: 1;
  position: absolute;
  top: -0.08rem;
}

/* â”€â”€ Story section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mm-story-feature {
  display: grid;
  gap: 1.25rem;
}

.mm-story-feature__intro {
  align-items: center;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  padding: 1rem;
}

.mm-story-feature__image {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.mm-story-feature__copy {
  padding-right: 0.5rem;
  position: relative;
}

.mm-story-feature__quote {
  display: block;
  height: 60px;
  margin-bottom: 1rem;
  width: 60px;
}

.mm-story-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mm-story-card {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 22px;
  box-shadow: var(--mm-shadow);
  color: inherit;
  display: block;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.35s var(--mm-ease), box-shadow 0.35s var(--mm-ease);
}

.mm-story-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mm-shadow-xl);
}

.mm-story-card img {
  display: block;
  height: 215px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.45s var(--mm-ease);
}

.mm-story-card:hover img {
  transform: scale(1.05);
}

.mm-story-card__body {
  padding: 1.1rem 1.15rem 1.2rem;
}

.mm-story-card__tag {
  color: var(--mm-accent);
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.mm-story-card__body strong {
  color: var(--mm-ink);
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.42;
}

.mm-story-card__body p {
  color: var(--mm-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0.55rem 0 0.75rem;
}

.mm-story-card__body span:last-child {
  color: var(--mm-accent-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

/* â”€â”€ Final CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mm-final-cta {
  align-items: center;
  background: linear-gradient(145deg, #1d1d1f 0%, #2c2c2e 100%);
  border-radius: var(--mm-radius-lg);
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: 2.5rem 2.25rem;
}

.mm-final-cta--visual {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.10), transparent 30%),
    linear-gradient(145deg, #1d1d1f 0%, #2a3c4d 100%);
}

.mm-final-cta__copy {
  max-width: 640px;
}

.mm-final-cta h2 {
  color: #fff;
  font-size: clamp(1.7rem, 2.6vw, 2.9rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 0.45rem;
  max-width: 22ch;
}

.mm-final-cta .btn--light-bg {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.mm-final-cta .btn--light-bg:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AUTH PAGES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* ── Auth page ── */
.mm-auth-page {
  padding: 2.5rem 0 4rem;
}

/* Promo panel (left column) */
.mm-auth-promo {
  background: radial-gradient(ellipse at top left, rgba(181, 102, 48, 0.22) 0%, transparent 50%),
    linear-gradient(160deg, #1a2535 0%, #243347 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--mm-radius-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 2.25rem;
  position: relative;
}

.mm-auth-promo--login::before {
  background: radial-gradient(circle, rgba(181, 102, 48, 0.18) 0%, transparent 65%);
  bottom: -60px;
  right: -60px;
  content: '';
  height: 320px;
  width: 320px;
  pointer-events: none;
  position: absolute;
}

.mm-auth-promo__body {
  position: relative;
  z-index: 1;
}

.mm-auth-promo h2 {
  color: #fff;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0.6rem 0 0.9rem;
}

.mm-auth-promo>.mm-auth-promo__body>p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* Checklist */
.mm-auth-promo__checklist {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
}

.mm-auth-promo__checklist li {
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.mm-auth-promo__checklist li i {
  color: #4ade80;
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

/* Stats strip */
.mm-auth-promo__stats {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: auto;
  padding-top: 1.5rem;
}

.mm-auth-promo__stats>div {
  padding: 0.5rem 0.75rem;
}

.mm-auth-promo__stats>div+div {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mm-auth-promo__stats strong {
  color: #fff;
  display: block;
  font-size: 0.94rem;
  font-weight: 800;
}

.mm-auth-promo__stats span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

/* Form card (right column) */
.mm-auth-card {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-lg);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.07);
  padding: 2rem 2.25rem;
}

.mm-auth-card__brand {
  display: block;
  margin-bottom: 1.5rem;
}

.mm-auth-card__brand img {
  max-height: 38px;
}

.mm-auth-card__title {
  color: var(--mm-ink);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0.4rem 0 0.5rem;
}

.mm-auth-card__sub {
  color: var(--mm-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.mm-auth-form {
  display: grid;
  gap: 0;
}

.mm-auth-form__row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mm-auth-form__forgot {
  font-size: 0.86rem;
  font-weight: 600;
}

.mm-auth-submit {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
}

.mm-auth-card__switch {
  color: var(--mm-muted);
  font-size: 0.9rem;
  margin: 1.25rem 0 0;
  text-align: center;
}

.mm-auth-card__switch a {
  color: var(--mm-accent);
  font-weight: 700;
}

/* Social login */
.mm-social-auth {
  margin-top: 1.25rem;
}

.mm-social-auth__divider {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  color: var(--mm-muted);
  font-size: 0.82rem;
  margin-bottom: 0.9rem;
}

.mm-social-auth__divider::before,
.mm-social-auth__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--mm-border);
}

.mm-social-auth__btns {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mm-social-btn {
  align-items: center;
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 12px;
  color: var(--mm-ink);
  display: flex;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s;
}

.mm-social-btn:hover {
  background: var(--mm-bg);
  border-color: rgba(24, 34, 48, 0.18);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  color: var(--mm-ink);
}

.mm-social-btn__icon {
  display: block;
  flex-shrink: 0;
  height: 20px;
  width: 20px;
}

.mm-social-btn__icon--fb {
  color: #1877f2;
  font-size: 1.15rem;
}

.mm-social-btn__icon--li {
  color: #0a66c2;
  font-size: 1.15rem;
}

/* Register role cards (shared) */
.mm-register-role-strip {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.4rem 0 1rem;
}

.mm-register-role-card {
  background: linear-gradient(180deg, #fff9f2 0%, #fff 100%);
  border: 1px solid rgba(181, 102, 48, 0.14);
  border-radius: 18px;
  padding: 0.95rem 1rem;
}

.mm-register-role-card strong {
  color: var(--mm-ink);
  display: block;
  font-size: 0.96rem;
}

.mm-register-role-card span {
  color: var(--mm-muted);
  display: block;
  font-size: 0.82rem;
  margin-top: 0.35rem;
}

.mm-auth-intro {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.35rem 0 1rem;
}

.mm-auth-intro__item {
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.94), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(181, 102, 48, 0.12);
  border-radius: 18px;
  padding: 0.95rem 1rem;
}

.mm-auth-intro__item strong {
  color: var(--mm-ink);
  display: block;
  font-size: 0.95rem;
}

.mm-auth-intro__item span {
  color: var(--mm-muted);
  display: block;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DASHBOARD SHELL
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.mm-dashboard-shell {
  padding: 1.25rem 0 3rem;
}

.mm-page-toolbar {
  align-items: flex-end !important;
  margin-bottom: 1rem !important;
}

.mm-page-toolbar__title h5 {
  color: var(--mm-ink);
  font-size: 1.5rem;
  margin-left: 0 !important;
}

.mm-page-content>.row,
.mm-page-content>.mm-relationship-page,
.mm-page-content>.mm-dashboard-hero,
.mm-page-content>.mm-data-card {
  width: 100%;
}

.dashboard-sidenav {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  box-shadow: var(--mm-shadow);
  padding: 1rem;
}

.mm-dashboard-hero,
.mm-page-hero {
  align-items: center;
  background:
    radial-gradient(ellipse at top left, rgba(139, 58, 74, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(181, 102, 48, 0.09) 0%, transparent 50%),
    linear-gradient(135deg, #fff7f5 0%, #fffcfa 50%, #fff9f0 100%);
  border: 1px solid rgba(181, 102, 48, 0.14);
  border-radius: var(--mm-radius);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  overflow: hidden;
  padding: 1.6rem 1.75rem;
  position: relative;
}

/* Decorative ring ornament — top-right corner */
.mm-page-hero::before {
  border: 1.5px solid rgba(139, 58, 74, 0.10);
  border-radius: 50%;
  content: '';
  height: 200px;
  pointer-events: none;
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
}

.mm-page-hero::after {
  border: 1px solid rgba(181, 102, 48, 0.07);
  border-radius: 50%;
  content: '';
  height: 140px;
  pointer-events: none;
  position: absolute;
  right: -20px;
  top: -20px;
  width: 140px;
}

.mm-dashboard-hero--compact {
  margin-bottom: 1rem;
}

.mm-dashboard-hero h2,
.mm-page-hero h1 {
  max-width: 18ch;
}

.mm-page-hero__aside {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.mm-page-hero>div:first-child {
  position: relative;
  z-index: 1;
}

.dashboard-card,
.verification-dashboard-item {
  background: #fff;
  border: 1px solid var(--mm-border);
  box-shadow: 0 2px 12px rgba(17, 26, 36, 0.04);
}

.dashboard-card {
  border-radius: 24px;
}

.dashboard-card__icon {
  background: linear-gradient(135deg, rgba(181, 102, 48, 0.14), rgba(50, 112, 185, 0.12));
  border-radius: 16px;
}

.mm-search-card,
.mm-data-card,
.mm-page-content>.card,
.mm-page-content>.custom--card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  box-shadow: var(--mm-shadow);
}

.mm-search-card {
  height: 100%;
  padding: 1.4rem;
}

.mm-search-card__head h3 {
  font-size: 1.45rem;
  margin: 0.4rem 0 0.65rem;
}

.mm-search-card__head p {
  color: var(--mm-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.discovery-page .search__left,
.discovery-page .search__right {
  background: rgba(255, 255, 255, 0.95);
}

.discovery-page .search__left {
  padding: 1.2rem;
}

.discovery-page .search__right-content {
  padding: 1.1rem 1.2rem;
}

.mm-data-card {
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.mm-clean-table thead th {
  background: #fff8f1;
  border-bottom: 0;
  color: var(--mm-ink);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mm-clean-table tbody td {
  vertical-align: middle;
}

.mm-profile-page .profile-sidebar,
.mm-profile-page .custom--card {
  overflow: hidden;
}

.mm-profile-page .custom--tabs {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--mm-border);
  border-radius: 22px;
  padding: 0.5rem;
}

.mm-profile-page .custom--tabs .nav-link {
  border-radius: 16px;
  color: var(--mm-muted);
  font-weight: 700;
}

.mm-profile-page .custom--tabs .nav-link.active {
  background: linear-gradient(135deg, #fff4e8 0%, #fff 100%);
  color: var(--mm-ink);
}

.mm-chat-page .chatbox {
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
}

.mm-chat-page .chatbox-left,
.mm-chat-page .chatbox-right {
  background: transparent;
}

.mm-chat-page .chatbox-header,
.mm-chat-page .chatbox-footer {
  background: #fffaf5;
}

.mm-chat-page .chatbox-body {
  background: linear-gradient(180deg, #fff 0%, #f9fcff 100%);
}

.team-card,
.custom--card,
.search__right,
.search__left,
.chatbox {
  border: 1px solid var(--mm-border);
}

/* Border-radius on shared components */
.mm-trust-pill,
.mm-journey-card,
.mm-focus-card,
.mm-story-card,
.mm-dashboard-hero,
.mm-page-hero,
.mm-data-card,
.dashboard-progress-card,
.discovery-panel,
.discovery-results-header,
.search__left,
.search__right,
.chatbox,
.dashboard-sidenav,
.mm-auth-card {
  border-radius: var(--mm-radius);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRICING SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.mm-pricing-hero {
  padding-top: 1rem;
}

.mm-pricing-page {
  padding: 2rem 0 4rem;
}

/* ── Why-upgrade strip ─────────────────────────── */
.mm-pricing-why-strip {
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.96), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--mm-border);
  border-radius: 22px;
  display: flex;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.mm-pricing-why-item {
  align-items: flex-start;
  border-right: 1px solid var(--mm-border);
  display: flex;
  flex: 1;
  gap: 0.9rem;
  padding: 1.1rem 1.4rem;
}

.mm-pricing-why-item:last-child {
  border-right: none;
}

.mm-pricing-why-item__num {
  align-items: center;
  background: var(--mm-accent-soft);
  border-radius: 50%;
  color: var(--mm-accent-dark);
  display: flex;
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 800;
  height: 2rem;
  justify-content: center;
  min-width: 2rem;
}

.mm-pricing-why-item strong {
  color: var(--mm-ink);
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.mm-pricing-why-item p {
  color: var(--mm-muted);
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Plan cards grid ────────────────────────────── */
.mm-pricing-cards {
  align-items: start;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.5rem 0;
}

.mm-plan-card2 {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-lg);
  box-shadow: var(--mm-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  overflow: hidden;
  padding: 1.75rem;
  position: relative;
  transition: box-shadow 0.3s var(--mm-ease), transform 0.3s var(--mm-ease);
}

.mm-plan-card2:hover {
  box-shadow: var(--mm-shadow-lg);
  transform: translateY(-3px);
}

/* Featured card — amber ring, no translateY */
.mm-plan-card2--featured {
  background: linear-gradient(170deg, #fff9f3 0%, #fff 60%);
  border-color: rgba(181, 102, 48, 0.30);
  box-shadow: 0 0 0 2px rgba(181, 102, 48, 0.18), var(--mm-shadow-lg);
  padding-top: 2.75rem;
}

.mm-plan-card2--featured:hover {
  box-shadow: 0 0 0 2px rgba(181, 102, 48, 0.30), var(--mm-shadow-xl);
  transform: translateY(-3px);
}

/* Top "Most Popular" ribbon */
.mm-plan-ribbon {
  background: linear-gradient(90deg, var(--mm-accent) 0%, #c97840 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  left: 0;
  right: 0;
  top: 0;
  letter-spacing: 0.10em;
  padding: 0.35rem 1rem;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
}

/* Card internals */
.mm-plan-card2__eyebrow {
  color: var(--mm-accent);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mm-plan-card2 h3 {
  color: var(--mm-ink);
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0;
}

.mm-plan-card2>p {
  color: var(--mm-muted);
  font-size: 0.91rem;
  line-height: 1.7;
  margin: 0;
}

.mm-plan-card2 hr {
  border-color: var(--mm-border);
  margin: 0.15rem 0;
}

/* Price block */
.mm-plan-price {
  line-height: 1;
}

.mm-plan-price__amount {
  color: var(--mm-ink);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.mm-plan-price__currency {
  color: var(--mm-muted);
  font-size: 1rem;
  font-weight: 700;
  margin-right: 0.15rem;
  vertical-align: super;
}

.mm-plan-price__period {
  color: var(--mm-muted);
  display: block;
  font-size: 0.82rem;
  margin-top: 0.3rem;
}

/* Feature checklist */
.mm-plan-checks {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mm-plan-check {
  align-items: flex-start;
  display: flex;
  font-size: 0.9rem;
  gap: 0.6rem;
}

.mm-plan-check__icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.mm-plan-check--on .mm-plan-check__icon {
  color: #22c55e;
}

.mm-plan-check--off .mm-plan-check__icon {
  color: rgba(0, 0, 0, 0.18);
}

.mm-plan-check__label {
  color: var(--mm-muted);
  line-height: 1.5;
}

.mm-plan-check--on .mm-plan-check__label strong {
  color: var(--mm-ink);
}

.mm-plan-check--off .mm-plan-check__label {
  opacity: 0.55;
}

/* Card footer */
.mm-plan-card2__footer {
  margin-top: auto;
  padding-top: 0.25rem;
}

.mm-plan-card2__tone {
  color: var(--mm-muted);
  display: block;
  font-size: 0.82rem;
  margin-top: 0.6rem;
  text-align: center;
}

/* ── Current-plan card variant ────────────────────── */
.mm-plan-card2--current {
  background: linear-gradient(160deg, #f0faf3 0%, #fff 60%);
  border-color: #22c55e;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.18), var(--mm-shadow-lg);
  padding-top: 2.75rem;
}
.mm-plan-card2--current:hover {
  box-shadow: 0 0 0 2.5px rgba(34,197,94,0.30), var(--mm-shadow-xl);
  transform: translateY(-3px);
}
.mm-plan-card2--expired {
  background: linear-gradient(160deg, #fff5f5 0%, #fff 60%);
  border-color: rgba(192,57,43,0.28);
  box-shadow: 0 0 0 2px rgba(192,57,43,0.12), var(--mm-shadow);
  padding-top: 2.75rem;
}

/* Ribbon variants */
.mm-plan-ribbon--current {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  align-items: center;
  display: flex;
  gap: 0.35rem;
  justify-content: center;
}
.mm-plan-ribbon--expired {
  background: linear-gradient(90deg, #c0392b, #e74c3c);
}

/* Disabled "Your Current Plan" button */
.mm-plan-current-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  border-color: transparent !important;
  color: #fff !important;
  gap: 0.4rem;
  opacity: 1 !important;
}
.mm-plan-current-btn i { font-size: 1rem; }

/* ── Expiry block inside plan card ────────────────── */
.mm-plan-expiry {
  align-items: flex-start;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.18);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  font-size: 0.84rem;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
}
.mm-plan-expiry__row {
  align-items: center;
  display: flex;
  gap: 0.45rem;
}
.mm-plan-expiry i { color: #16a34a; flex-shrink: 0; }
.mm-plan-expiry strong { color: var(--mm-ink); }
.mm-plan-expiry--expired {
  background: rgba(192,57,43,0.06);
  border-color: rgba(192,57,43,0.18);
  color: #c0392b;
  flex-direction: row;
  gap: 0.45rem;
}
.mm-plan-expiry--expired i { color: #c0392b; }

/* ── Expiry progress bar ──────────────────────────── */
.mm-plan-progress {
  background: rgba(0,0,0,0.07);
  border-radius: 99px;
  height: 5px;
  overflow: hidden;
  width: 100%;
}
.mm-plan-progress__bar {
  border-radius: 99px;
  height: 100%;
  transition: width 0.6s ease;
}

/* ── Subscription status bar (packages page hero) ── */
.mm-sub-status-bar {
  align-items: center;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--mm-border);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
}
.mm-sub-status-bar__left {
  align-items: center;
  display: flex;
  gap: 0.8rem;
}
.mm-sub-status-bar__left strong {
  color: var(--mm-ink);
  display: block;
  font-size: 1rem;
  font-weight: 800;
}
.mm-sub-status-bar__left span {
  color: var(--mm-muted);
  font-size: 0.84rem;
}
.mm-sub-status-bar__icon {
  color: #b56630;
  font-size: 1.6rem;
}
.mm-sub-status-bar__icon--faded { color: rgba(0,0,0,0.25); }
.mm-sub-status-bar__right {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ── Subscription progress bar (status bar) ─────── */
.mm-sub-progress {
  background: rgba(0,0,0,0.07);
  border-radius: 99px;
  height: 6px;
  overflow: hidden;
  width: 140px;
}
.mm-sub-progress__bar {
  border-radius: 99px;
  height: 100%;
  transition: width 0.6s ease;
}

/* ── Subscription chips ───────────────────────────── */
.mm-sub-chip {
  align-items: center;
  background: rgba(181,102,48,0.08);
  border: 1px solid rgba(181,102,48,0.18);
  border-radius: 99px;
  color: #7f431d;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.35rem;
  padding: 0.28rem 0.75rem;
}
.mm-sub-chip--warn {
  background: rgba(192,57,43,0.07);
  border-color: rgba(192,57,43,0.20);
  color: #c0392b;
}

/* ── Status badge (hero tiles) ────────────────────── */
.mm-sub-badge {
  border-radius: 99px;
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-right: 0.3rem;
  padding: 0.15rem 0.5rem;
  text-transform: uppercase;
  vertical-align: middle;
}
.mm-sub-badge--active {
  background: rgba(34,197,94,0.12);
  color: #16a34a;
}
.mm-sub-badge--expired {
  background: rgba(192,57,43,0.10);
  color: #c0392b;
}

/* Stat tile variant for subscription */
.mm-stat-tile--sub strong { font-size: 1.25rem; }

/* ── Payment reassurance strip ──────────────────── */
.mm-pricing-pay-strip {
  background: linear-gradient(145deg, #1d1d1f 0%, #2a3c4d 100%);
  border-radius: var(--mm-radius-lg);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr auto;
  margin-top: 1rem;
  padding: 1.5rem 2rem;
}

.mm-pricing-pay-strip__copy {
  color: rgba(255, 255, 255, 0.82);
}

.mm-pricing-pay-strip__copy h3 {
  color: #fff;
  font-size: clamp(1.15rem, 1.7vw, 1.65rem);
  margin: 0.2rem 0 0.55rem;
}

.mm-pricing-pay-strip__copy p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.mm-pricing-pay-strip__chips {
  align-items: center;
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.mm-pricing-pay-strip__chips span {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 0.4rem;
  padding: 0.44rem 0.9rem;
}

/* Pricing responsive */
@media (max-width: 991px) {
  .mm-pricing-cards {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .mm-pricing-why-strip {
    flex-direction: column;
  }

  .mm-pricing-why-item {
    border-right: none;
    border-bottom: 1px solid var(--mm-border);
  }

  .mm-pricing-why-item:last-child {
    border-bottom: none;
  }

  .mm-pricing-pay-strip {
    grid-template-columns: 1fr;
  }

  .mm-pricing-pay-strip__chips {
    padding-top: 0.75rem;
  }
}

@media (max-width: 767px) {
  .mm-pricing-cards {
    max-width: 100%;
  }
}

.plan {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--mm-border);
  border-radius: 26px;
  box-shadow: var(--mm-shadow);
  overflow: hidden;
}

.plan__head {
  background: linear-gradient(135deg, #1d1d1f 0%, #2a3c4d 100%);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* ======================================================
   PRE-FOOTER CTA BAND
   ====================================================== */
.mm-prefooter {
  background: linear-gradient(135deg, #3d1a24 0%, #6b2737 50%, #8b3a4a 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.mm-prefooter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.mm-prefooter__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  position: relative;
}

.mm-prefooter__text h2 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.5rem;
}

.mm-prefooter__text p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  margin: 0;
  max-width: 52ch;
}

.mm-prefooter__actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mm-btn--ghost-light {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.mm-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* ======================================================
   FOOTER
   ====================================================== */
.mm-site-footer {
  background: #13151a;
  color: rgba(255, 255, 255, 0.55);
  padding: 0 0 1.5rem;
}

/* Rose-gold accent line */
.mm-site-footer__accent {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(139, 58, 74, 0.8) 20%,
    var(--mm-accent) 50%,
    rgba(139, 58, 74, 0.8) 80%,
    transparent 100%);
  height: 1px;
}

/* Trust stats strip */
.mm-footer-stats {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  padding: 2rem 0;
}

.mm-footer-stat {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 2.5rem;
  text-align: center;
}

.mm-footer-stat strong {
  color: var(--mm-accent);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.mm-footer-stat span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mm-footer-stat__divider {
  background: rgba(255, 255, 255, 0.08);
  height: 36px;
  width: 1px;
}

/* Main grid */
.mm-site-footer__top {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(260px, 1.1fr) minmax(0, 2fr);
  padding: 3rem 0 2.5rem;
}

/* Brand column */
.mm-site-footer__logo img {
  max-height: 48px;
}

.mm-site-footer__brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.78;
  margin-top: 1rem;
  max-width: 44ch;
}

.mm-site-footer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.mm-site-footer__chips span {
  align-items: center;
  background: rgba(139, 58, 74, 0.18);
  border: 1px solid rgba(139, 58, 74, 0.35);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
}

.mm-site-footer__chips span i {
  color: var(--mm-primary);
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Social icons */
.mm-site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.mm-site-footer__social-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  font-size: 1.05rem;
  height: 38px;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  width: 38px;
}

.mm-site-footer__social-link:hover {
  background: rgba(139, 58, 74, 0.28);
  border-color: rgba(139, 58, 74, 0.5);
  color: #fff;
  transform: translateY(-2px);
}

/* Link columns */
.mm-site-footer__links {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mm-site-footer__col-title {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  position: relative;
  text-transform: uppercase;
}

.mm-site-footer__col-title::after {
  background: var(--mm-primary);
  bottom: 0;
  content: '';
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 22px;
}

.mm-site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mm-site-footer__col li + li {
  margin-top: 0.65rem;
}

.mm-site-footer__col a,
.mm-site-footer__col span:not(.mm-footer-support-note) {
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.48);
  display: inline-flex;
  font-size: 0.875rem;
  gap: 0.45rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.18s;
}

.mm-site-footer__col a:hover {
  color: rgba(255, 255, 255, 0.88);
}

.mm-site-footer__col a i,
.mm-site-footer__col span:not(.mm-footer-support-note) i {
  color: var(--mm-primary);
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 0.12rem;
  opacity: 0.75;
}

.mm-footer-support-note {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.42) !important;
  display: flex !important;
  font-size: 0.8rem !important;
  gap: 0.4rem !important;
  line-height: 1.5;
  padding: 0.55rem 0.7rem;
}

.mm-footer-support-note i {
  color: var(--mm-accent) !important;
  flex-shrink: 0;
  margin-top: 0.1rem;
  opacity: 1 !important;
}

.mm-footer-support-btn {
  align-items: center !important;
  background: rgba(139, 58, 74, 0.22);
  border: 1px solid rgba(139, 58, 74, 0.4);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82) !important;
  display: inline-flex !important;
  font-size: 0.82rem !important;
  font-weight: 600;
  gap: 0.4rem !important;
  padding: 0.5rem 0.85rem;
  transition: background 0.2s, border-color 0.2s;
}

.mm-footer-support-btn:hover {
  background: rgba(139, 58, 74, 0.4) !important;
  border-color: rgba(139, 58, 74, 0.65) !important;
  color: #fff !important;
}

/* Payment badges strip */
.mm-footer-payment {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding: 1.25rem 0;
}

.mm-footer-payment__label {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mm-footer-payment__badges {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mm-footer-pay-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.5);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 600;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
}

.mm-footer-pay-badge i {
  font-size: 0.85rem;
  opacity: 0.7;
}

.mm-footer-pay-badge--secure {
  border-color: rgba(46, 125, 50, 0.35);
  color: rgba(129, 199, 132, 0.85);
}

.mm-footer-pay-badge--secure i {
  color: #81c784;
  opacity: 1;
}

/* Bottom bar */
.mm-site-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.25rem;
}

.mm-site-footer__copy {
  align-items: center;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.83rem;
  gap: 0.25rem 0.5rem;
  margin: 0;
}

.mm-site-footer__copy a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.18s;
}

.mm-site-footer__copy a:hover {
  color: #fff;
}

.mm-footer-made {
  align-items: center;
  color: rgba(255, 255, 255, 0.35);
  display: inline-flex;
  font-size: 0.8rem;
  gap: 0.25rem;
}

.mm-footer-made i {
  color: var(--mm-primary);
  font-size: 0.75rem;
}

.mm-site-footer__tagline {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  font-style: italic;
  margin: 0;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STORY DETAIL PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.mm-story-detail-page {
  position: relative;
}

.mm-story-detail-hero {
  align-items: end;
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(181, 102, 48, 0.12);
  border-radius: 30px;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.8fr);
  margin-bottom: 1.5rem;
  padding: 1.8rem;
}

.mm-story-detail-hero__copy {
  max-width: 760px;
}

.mm-story-detail-hero__copy h1 {
  color: var(--mm-ink);
  font-size: clamp(2rem, 3.8vw, 3.9rem);
  line-height: 1.06;
  margin: 0.4rem 0 0.9rem;
}

.mm-story-detail-hero__copy p {
  color: var(--mm-muted);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 0;
  max-width: 62ch;
}

.mm-story-detail-hero__aside {
  display: grid;
  gap: 0.9rem;
}

.mm-story-article {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--mm-border);
  border-radius: 28px;
  overflow: hidden;
}

.mm-story-article__media {
  background: #f4ede6;
  padding: 1rem 1rem 0;
}

.mm-story-article__media img {
  border-radius: 22px;
  display: block;
  min-height: 340px;
  object-fit: cover;
}

.mm-story-article__body {
  padding: 1.55rem 1.6rem 1.7rem;
}

.mm-story-article__meta {
  color: #8a5a30;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.mm-story-article__content {
  color: #394351;
  font-size: 1rem;
  line-height: 1.95;
}

.mm-story-article__content>*:first-child {
  margin-top: 0;
}

.mm-story-article__content h2 {
  font-size: 1.6rem;
}

.mm-story-article__content h3 {
  font-size: 1.3rem;
}

.mm-story-article__content h1,
.mm-story-article__content h2,
.mm-story-article__content h3,
.mm-story-article__content h4,
.mm-story-article__content h5,
.mm-story-article__content h6 {
  color: var(--mm-ink);
  line-height: 1.25;
  margin: 1.5rem 0 0.85rem;
}

.mm-story-article__content p,
.mm-story-article__content ul,
.mm-story-article__content ol,
.mm-story-article__content blockquote {
  margin-bottom: 1rem;
}

.mm-story-article__content ul,
.mm-story-article__content ol {
  padding-left: 1.3rem;
}

.mm-story-article__content blockquote {
  background: rgba(255, 249, 242, 0.72);
  border-left: 4px solid rgba(181, 102, 48, 0.4);
  border-radius: 0 18px 18px 0;
  color: var(--mm-ink);
  margin-left: 0;
  padding: 0.95rem 1rem;
}

.mm-story-article__content img {
  border-radius: 20px;
  margin: 1rem 0;
}

.mm-story-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 110px;
}

.mm-story-sidebar__section {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--mm-border);
  border-radius: 24px;
  padding: 1rem;
}

.mm-story-sidebar__header {
  margin-bottom: 0.9rem;
}

.mm-story-sidebar__header h5 {
  color: var(--mm-ink);
  margin: 0.3rem 0 0;
}

.mm-story-sidebar__stack {
  display: grid;
  gap: 0.9rem;
}

.mm-story-sidebar-card {
  align-items: center;
  background: rgba(255, 249, 242, 0.55);
  border: 1px solid rgba(181, 102, 48, 0.1);
  border-radius: 20px;
  color: inherit;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 108px minmax(0, 1fr);
  overflow: hidden;
  padding: 0.6rem;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.mm-story-sidebar-card:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(181, 102, 48, 0.2);
  transform: translateY(-2px);
}

.mm-story-sidebar-card img {
  border-radius: 16px;
  display: block;
  height: 88px;
  object-fit: cover;
  width: 100%;
}

.mm-story-sidebar-card__body {
  min-width: 0;
}

.mm-story-sidebar-card__body span {
  color: var(--mm-accent);
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.mm-story-sidebar-card__body strong {
  color: var(--mm-ink);
  display: block;
  font-size: 0.95rem;
  line-height: 1.45;
}

.mm-story-sidebar-card__body p {
  color: var(--mm-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0.45rem 0 0;
}

.mm-story-sidebar-card--compact {
  grid-template-columns: 92px minmax(0, 1fr);
}

.mm-story-sidebar-card--compact img {
  height: 76px;
}

.mm-page-hero--stories,
.mm-page-hero--contact {
  margin-bottom: 1.5rem;
}

/* â”€â”€ Story page intro â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mm-story-page-intro {
  margin-bottom: 1.5rem;
}

.mm-story-page-intro__panel {
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.94), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(181, 102, 48, 0.12);
  border-radius: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 1rem 1.1rem;
}

.mm-story-page-intro__panel span {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--mm-border);
  border-radius: 999px;
  color: var(--mm-ink);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.48rem 0.82rem;
}

.mm-story-card--page {
  height: 100%;
}

.mm-story-card--page .mm-story-card__body strong {
  font-size: 1.07rem;
}

/* â”€â”€ Contact / FAQ / Testimonials â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mm-contact-page .contact-card,
.mm-contact-form-wrap .contact-form,
.mm-contact-form-wrap .contact-img,
.mm-testimonial-card,
.mm-faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.mm-contact-form-wrap .contact-form,
.mm-contact-form-wrap .contact-img {
  border: 1px solid var(--mm-border);
  box-shadow: var(--mm-shadow);
}

.mm-testimonial-card {
  border: 1px solid var(--mm-border);
  box-shadow: var(--mm-shadow);
  height: 100%;
}

.mm-testimonial-card .feedback-card__thumb {
  margin-bottom: 0.8rem;
}

.mm-faq-shell {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--mm-border);
  border-radius: 26px;
  padding: 1rem;
}

.mm-faq-item {
  border: 1px solid var(--mm-border);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MISC / UTILITIES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.verification-dashboard-item p,
.dashboard-progress-card p,
.member-info__id,
.search__left-subtitle,
.discovery-results-header p,
.recently-viewed-card span,
.discovery-chip-card span {
  color: var(--mm-muted) !important;
}

.mm-trust-strip {
  padding: 0.75rem 0 0;
}

.mm-trust-strip__grid,
.mm-journey-grid,
.mm-focus-grid {
  display: grid;
  gap: 1.1rem;
}

.mm-trust-strip__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mm-trust-pill,
.mm-journey-card,
.mm-focus-card {
  background: #fff;
  border: 1px solid var(--mm-border);
  box-shadow: 0 2px 14px rgba(17, 26, 36, 0.04);
  padding: 1.2rem 1.25rem;
}

.mm-trust-pill strong,
.mm-journey-card h3,
.mm-focus-card strong {
  color: var(--mm-ink);
  display: block;
}

.mm-trust-pill span,
.mm-journey-card p,
.mm-focus-card p {
  color: var(--mm-muted);
  display: block;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: 0.55rem;
}

.mm-journey-grid,
.mm-focus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mm-journey-card strong,
.mm-focus-card span {
  color: var(--mm-accent);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mm-focus-card {
  color: inherit;
  text-decoration: none;
}

@keyframes mmFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE BREAKPOINTS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1199px) {
  .mm-home-hero__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mm-home-hero__visual {
    display: none;
  }

  .mm-trust-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mm-trust-visual-card--feature {
    grid-column: span 2;
  }

  .mm-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mm-site-footer__top {
    grid-template-columns: 1fr;
  }

  .mm-prefooter__inner {
    flex-direction: column;
    text-align: center;
  }

  .mm-prefooter__actions {
    justify-content: center;
  }

  .mm-footer-stats {
    gap: 1rem 0;
  }

  .mm-footer-stat {
    padding: 0 1.25rem;
  }

  .mm-auth-intro,
  .mm-pricing-rail,
  .mm-plan-card__features {
    grid-template-columns: 1fr;
  }

  .mm-trust-strip__grid,
  .mm-journey-grid,
  .mm-focus-grid,
  .mm-story-grid,
  .mm-site-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mm-auth-card {
    padding: 1.5rem;
  }

  .mm-auth-page {
    padding: 1.5rem 0 2.5rem;
  }
}

@media (max-width: 991px) {
  .mm-site-header__top {
    display: none;
  }

  .mm-site-header__main .navbar {
    align-items: center;
    gap: 0.75rem;
    padding-block: 0.2rem;
  }

  .mm-site-header__main .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(24, 34, 48, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(17, 26, 36, 0.12);
    margin-top: 0.75rem;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding: 0.65rem;
  }

  .mm-site-header .nav-menu {
    gap: 0.2rem;
    width: 100%;
  }

  .mm-site-header .nav-menu .nav-item {
    margin: 0;
    width: 100%;
  }

  .mm-site-header .nav-link {
    align-items: center;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    padding: 0.9rem 1rem !important;
  }

  .mm-site-header .nav-link::after {
    bottom: 9px;
    left: 1rem;
    right: 1rem;
  }

  .mm-site-header__actions {
    display: none !important;
  }

  .mm-page-hero,
  .mm-dashboard-hero,
  .mm-final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .mm-page-hero__aside {
    justify-content: flex-start;
  }

  .mm-pricing-reassurance {
    align-items: flex-start;
    flex-direction: column;
  }

  .mm-home-hero__layout,
  .mm-family-feature,
  .mm-story-feature__intro,
  .mm-home-support-card,
  .mm-trust-visual-card--feature,
  .mm-story-detail-hero,
  .mm-page-hero--stories,
  .mm-page-hero--contact {
    grid-template-columns: 1fr;
  }

  .mm-home-portrait-card--groom {
    margin-top: 0;
  }

  .mm-conversion-ribbon {
    align-items: flex-start;
    flex-direction: column;
  }

  .mm-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mm-family-feature {
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .mm-home-hero--immersive {
    padding: 0 0 1rem;
  }

  .mm-home-hero__stage {
    padding-bottom: 1.5rem;
  }

  .mm-home-hero,
  .mm-dashboard-shell,
  .mm-auth-page {
    padding-top: 1rem;
  }

  .mm-home-hero__content h1,
  .mm-page-hero h1,
  .mm-dashboard-hero h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    max-width: 100%;
  }

  .mm-home-section {
    padding: 3.5rem 0 1.5rem;
  }

  .mm-home-section--soft {
    padding: 3.5rem 0;
  }

  .mm-home-section--cta {
    padding: 1.5rem 0 4.5rem;
  }

  .mm-home-hero__layout,
  .mm-home-hero__visual-grid,
  .mm-trust-visual-grid,
  .mm-category-grid {
    grid-template-columns: 1fr;
  }

  .mm-trust-visual-card--feature {
    grid-column: 1;
  }

  .mm-home-hero__seal {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mm-search-panel {
    border-radius: 20px;
    margin-top: 1.5rem;
    padding: 1.1rem;
  }

  .mm-search-panel__intro h2 {
    font-size: 1.2rem;
  }

  .mm-home-hero__profile-pills,
  .mm-chip-list,
  .mm-conversion-ribbon__actions {
    flex-direction: column;
  }

  .mm-chip-link,
  .mm-conversion-ribbon__actions .btn {
    width: 100%;
  }

  .mm-home-hero__proof {
    flex-direction: column;
  }

  .mm-family-feature__note {
    max-width: none;
    position: static;
  }

  .mm-family-feature__media {
    display: grid;
    gap: 0.75rem;
  }

  .mm-home-hero__grid,
  .mm-page-hero,
  .mm-dashboard-hero,
  .mm-final-cta,
  .mm-auth-card,
  .search__left,
  .search__right,
  .chatbox,
  .dashboard-sidenav {
    border-radius: 22px;
    padding: 1rem;
  }

  .mm-register-role-strip,
  .mm-auth-intro,
  .mm-pricing-rail,
  .mm-trust-strip__grid,
  .mm-journey-grid,
  .mm-focus-grid,
  .mm-story-grid,
  .mm-site-footer__links {
    grid-template-columns: 1fr;
  }

  .mm-footer-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .mm-footer-stat__divider {
    display: none;
  }

  .mm-footer-payment {
    flex-direction: column;
    align-items: flex-start;
  }

  .mm-prefooter__actions {
    width: 100%;
  }

  .mm-prefooter__actions .mm-btn {
    justify-content: center;
    width: 100%;
  }

  .mm-home-hero__stats,
  .mm-page-hero__aside {
    width: 100%;
  }

  .mm-stat-tile {
    width: 100%;
  }

  .mm-auth-promo,
  .mm-plan-card {
    border-radius: 22px;
    padding: 1.2rem;
  }

  .mm-plan-card--featured {
    transform: none;
  }

  .mm-plan-card__head,
  .mm-plan-card__pricing {
    align-items: flex-start;
    flex-direction: column;
  }

  .mm-auth-promo__stats {
    margin-top: 1.5rem;
  }

  .mm-social-auth__btns {
    flex-direction: column;
  }

  .mm-auth-form__row {
    align-items: flex-start;
    flex-direction: column;
  }

  .mm-auth-form__row > * {
    width: 100%;
  }

  .mm-story-article__media {
    padding: 0.75rem 0.75rem 0;
  }

  .mm-story-article__body {
    padding: 1.1rem 1rem 1.2rem;
  }

  .mm-story-article__content {
    font-size: 0.97rem;
    line-height: 1.85;
  }

  .mm-story-sidebar {
    position: static;
  }

  .mm-story-sidebar-card,
  .mm-story-sidebar-card--compact {
    grid-template-columns: 1fr;
  }

  .mm-story-sidebar-card img,
  .mm-story-sidebar-card--compact img {
    height: 160px;
  }

  .mm-search-panel,
  .mm-trust-visual-card,
  .mm-category-card,
  .mm-family-feature,
  .mm-story-feature__intro,
  .mm-story-detail-hero,
  .mm-story-article,
  .mm-story-sidebar__section,
  .mm-home-support-card,
  .mm-faq-shell {
    border-radius: 22px;
    padding: 1rem;
  }

  .mobile-nav {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-top: 0.5px solid rgba(0, 0, 0, 0.10);
  }
}

@media (max-width: 575px) {
  .mm-site-header__brand img {
    max-height: 40px;
  }

  .mm-site-header__main .navbar-collapse {
    border-radius: 18px;
    margin-top: 0.6rem;
    max-height: calc(100vh - 84px);
    padding: 0.55rem;
  }

  .mm-mobile-nav .mobile-nav__link {
    font-size: 0.62rem;
    padding-inline: 0.2rem;
  }

  .mm-page-hero,
  .mm-dashboard-hero,
  .mm-final-cta,
  .mm-auth-card,
  .login__wrapper,
  .search__left,
  .search__right,
  .chatbox,
  .dashboard-sidenav {
    padding: 0.9rem;
  }

  .mm-register-role-card,
  .mm-auth-intro__item,
  .discovery-panel,
  .discovery-results-header {
    padding: 0.9rem;
  }

  .mm-page-hero__aside {
    gap: 0.65rem;
  }

  .mm-page-hero__aside .mm-stat-tile {
    width: 100%;
  }
}

/* ══════════════════════════════════════════════════
   FORM CONTROLS — Apple-style inputs
   ══════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   MODERN INPUT SYSTEM — complete redesign
   Overrides main.css floating-label system site-wide.
   ═══════════════════════════════════════════════════════════ */

/* Neutralize main.css legacy label styles (white-bg-on-border pattern) */
.form--label {
  background-color: transparent !important;
  padding: 0 !important;
  line-height: 1 !important;
}
.form--label::before { display: none !important; }

/* ── CSS tokens for inputs ── */
:root {
  --inp-radius:      12px;
  --inp-border:      rgba(0, 0, 0, 0.13);
  --inp-border-focus:#8b3a4a;
  --inp-ring:        rgba(139, 58, 74, 0.12);
  --inp-bg:          #faf9f8;
  --inp-bg-focus:    #ffffff;
  --inp-text:        #1d1d1f;
  --inp-label:       #86868b;
  --inp-label-float: #8b3a4a;
  --inp-height:      52px;
  --inp-pad-x:       1rem;
  --inp-pad-top:     1.45rem;
  --inp-pad-btm:     0.45rem;
  --inp-font:        0.925rem;
  --inp-label-font:  0.82rem;
  --inp-label-sm:    0.675rem;
  --inp-ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Base control reset ───────────────────────────── */
.form--control,
.form-control.form--control {
  appearance: none;
  -webkit-appearance: none;
  background: var(--inp-bg);
  border: 1.5px solid var(--inp-border);
  border-radius: var(--inp-radius);
  color: var(--inp-text);
  font-family: var(--body-font);
  font-size: var(--inp-font);
  height: var(--inp-height);
  line-height: 1.5;
  outline: none;
  padding: 0.75rem var(--inp-pad-x);
  transition: border-color 0.2s var(--inp-ease),
              box-shadow   0.2s var(--inp-ease),
              background   0.2s var(--inp-ease);
  width: 100%;
}

/* Focus state */
.form--control:focus,
.form-control.form--control:focus {
  background: var(--inp-bg-focus);
  border-color: var(--inp-border-focus);
  box-shadow: 0 0 0 3.5px var(--inp-ring);
  outline: none;
}

/* Disabled / readonly */
.form--control:disabled,
.form--control[readonly],
.form-control.form--control:disabled {
  background: #f3f2f1;
  border-color: rgba(0,0,0,0.08);
  color: var(--inp-label);
  cursor: not-allowed;
  opacity: 1;
}
.form--control:disabled:focus,
.form--control[readonly]:focus {
  box-shadow: none;
  border-color: rgba(0,0,0,0.08);
}

/* Placeholder — kept invisible for floating-label pattern */
.form--control::placeholder {
  color: transparent;
  opacity: 0;
}

/* Textarea */
textarea.form--control,
textarea.form-control.form--control {
  height: auto;
  min-height: 120px;
  padding-top: 0.75rem;
  resize: vertical;
}

/* ── Select (dropdown) ────────────────────────────── */
select.form--control,
.form-select.form--control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%2386868b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 0.875rem center;
  background-repeat: no-repeat;
  background-size: 13px;
  cursor: pointer;
  padding-right: 2.5rem;
}

/* ── File input ───────────────────────────────────── */
.form--control[type="file"] {
  cursor: pointer;
  height: var(--inp-height);
  line-height: calc(var(--inp-height) - 3px);
  padding: 0 var(--inp-pad-x);
}
.form--control[type="file"]::file-selector-button {
  background: linear-gradient(135deg, rgba(139,58,74,0.08), rgba(181,102,48,0.08));
  border: 1px solid rgba(139,58,74,0.18);
  border-radius: 8px;
  color: #6b2737;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.75rem;
  padding: 0.3rem 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.form--control[type="file"]::file-selector-button:hover {
  background: linear-gradient(135deg, #8b3a4a, #b56630);
  border-color: transparent;
  color: #fff;
}

/* ── Password toggle icon ─────────────────────────── */
.toggle-password {
  color: var(--inp-label);
  cursor: pointer;
  font-size: 1rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.18s;
  z-index: 5;
}
.toggle-password:hover { color: var(--inp-border-focus); }

/* Shift toggle up when label is present (floating-label groups) */
.input--group .toggle-password { top: calc(50% + 0.35rem); }

/* ── Input icon ───────────────────────────────────── */
.input-icon {
  color: var(--inp-label);
  font-size: 1rem;
  pointer-events: none;
  position: absolute;
  right: var(--inp-pad-x);
  top: 50%;
  transform: translateY(-50%);
}

/* ═══════════════════════════════════════════════════
   FLOATING LABEL GROUP  (.input--group)
   ═══════════════════════════════════════════════════ */
.input--group {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}

/* All controls inside a floating group get extra top padding */
.input--group > .form--control {
  padding-bottom: var(--inp-pad-btm);
  padding-top:    var(--inp-pad-top);
}

/* Select specifically needs it too (appearance:none lets it work) */
.input--group > select.form--control {
  padding-bottom: 0.5rem;
  padding-top:    1.5rem;
}

/* Textarea inside a floating group */
.input--group > textarea.form--control {
  height: auto;
  min-height: 110px;
  padding-top: 1.6rem;
}

/* ── The floating label itself ────────────────────── */
.input--group > .form--label,
.input--group .form--label {
  background: transparent;
  color: var(--inp-label);
  font-size: var(--inp-label-font);
  font-weight: 600;
  left: var(--inp-pad-x);
  line-height: 1;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition:
    top       0.2s var(--inp-ease),
    font-size 0.2s var(--inp-ease),
    color     0.18s var(--inp-ease),
    transform 0.2s var(--inp-ease);
  white-space: nowrap;
  z-index: 2;
}

/* Textarea — label default slightly higher */
.input--group > textarea.form--control ~ .form--label {
  top: 1.35rem;
  transform: none;
}

/* ── Floated state: input focused or has a value ── */
.input--group > .form--control:focus             ~ .form--label,
.input--group > .form--control:not(:placeholder-shown) ~ .form--label {
  color:     var(--inp-label-float);
  font-size: var(--inp-label-sm);
  top:       0.48rem;
  transform: none;
}

/* Selects always have a value — permanently floated */
.input--group:has(select) .form--label,
.input--group > select.form--control ~ .form--label {
  color:     var(--inp-label-float);
  font-size: var(--inp-label-sm);
  top:       0.48rem;
  transform: none;
}

/* ── Required asterisk ────────────────────────────── */
.form--label.required::after,
.form--label .required::after {
  color: #c0392b;
  content: ' *';
  font-size: 0.75em;
}

/* ── Input-group-text addons (prefix/suffix icons) ── */
.input--group .input-group-text {
  align-items: center;
  background: #f3f2f1;
  border: 1.5px solid var(--inp-border);
  color: var(--inp-label);
  display: flex;
  font-size: 0.95rem;
  padding: 0 0.9rem;
}
.input--group:has(.input-group-text:first-child) .form--control:last-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input--group:has(.input-group-text:last-child) .form--control:first-child {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input--group:has(.input-group-text:first-child) .input-group-text {
  border-bottom-right-radius: 0;
  border-right: none;
  border-top-right-radius: 0;
  border-radius: var(--inp-radius) 0 0 var(--inp-radius);
}
.input--group:has(.input-group-text:last-child) .input-group-text {
  border-bottom-left-radius: 0;
  border-left: none;
  border-radius: 0 var(--inp-radius) var(--inp-radius) 0;
  border-top-left-radius: 0;
}
/* Shift label right when prefix addon present */
.input--group:has(.input-group-text:first-child) .form--label { left: 4rem; }
.input--group:has(.input-group-text:first-child):focus-within .form--label,
.input--group:has(.input-group-text:first-child):not(:has(:placeholder-shown)) .form--label {
  color: var(--inp-label-float);
  font-size: var(--inp-label-sm);
  left: 4rem;
  top: 0.48rem;
  transform: none;
}

/* ═══════════════════════════════════════════════════
   CHECKBOX & RADIO  (.form--check)
   ═══════════════════════════════════════════════════ */
.form--check {
  align-items: center;
  display: flex;
  gap: 0.55rem;
}
.form--check label.required::after { display: none; }

.form--check .form-check-input {
  appearance: none;
  -webkit-appearance: none;
  background: var(--inp-bg);
  border: 1.5px solid var(--inp-border);
  border-radius: 5px;
  box-shadow: none !important;
  cursor: pointer;
  flex-shrink: 0;
  height: 18px;
  margin: 0;
  position: relative;
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s;
  width: 18px;
}
.form--check .form-check-input[type="radio"] {
  border-radius: 50%;
}
.form--check .form-check-input:checked {
  background: linear-gradient(135deg, #8b3a4a, #b56630) !important;
  border-color: transparent !important;
  box-shadow: 0 2px 6px rgba(139,58,74,0.28) !important;
}
/* Checkbox checkmark */
.form--check .form-check-input[type="checkbox"]:checked::before {
  color: #fff;
  content: '';
  display: block;
  height: 10px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
/* Radio dot */
.form--check .form-check-input[type="radio"]:checked::before {
  background: #fff;
  border-radius: 50%;
  content: '';
  display: block;
  height: 7px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
}
.form--check .form-check-input:focus {
  box-shadow: 0 0 0 3px var(--inp-ring) !important;
  outline: none;
}

/* ── Range slider ─────────────────────────────────── */
input[type="range"].form--control {
  appearance: auto;
  -webkit-appearance: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  height: auto;
  padding: 0;
}

/* ── Validation states ────────────────────────────── */
.form--control.is-invalid,
.was-validated .form--control:invalid {
  border-color: #dc3545;
}
.form--control.is-invalid:focus,
.was-validated .form--control:invalid:focus {
  box-shadow: 0 0 0 3.5px rgba(220,53,69,0.12);
}
.form--control.is-valid,
.was-validated .form--control:valid {
  border-color: #198754;
}
.form--control.is-valid:focus,
.was-validated .form--control:valid:focus {
  box-shadow: 0 0 0 3.5px rgba(25,135,84,0.12);
}

/* ══════════════════════════════════════════════════
   MEMBER DISCOVERY CARDS — cleaner, Apple-like
   ══════════════════════════════════════════════════ */
.search__right {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 22px;
  box-shadow: var(--mm-shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s var(--mm-ease), transform 0.3s var(--mm-ease);
}

.search__right:hover {
  box-shadow: var(--mm-shadow-lg);
  transform: translateY(-3px);
}

.search__right-thumb {
  position: relative;
  overflow: hidden;
}

.search__right-thumb img {
  display: block;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.4s var(--mm-ease);
}

.search__right:hover .search__right-thumb img {
  transform: scale(1.04);
}

.search__right-content {
  padding: 1.2rem 1.25rem 1rem;
}

.member-info__name a {
  color: var(--mm-ink);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.member-info__name a:hover {
  color: var(--mm-accent);
}

.member-info__id {
  color: var(--mm-muted);
  font-size: 0.8rem;
}

.member-details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}

.member-details label span {
  color: var(--mm-muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.member-details span.col-7 {
  color: var(--mm-ink);
  font-size: 0.9rem;
}

.search__right-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 0.85rem;
}

.search__right-list li {
  display: inline-flex;
}

.search__right-list a {
  align-items: center;
  display: inline-flex;
  gap: 0.4rem;
  color: var(--mm-muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.search__right-list a:hover {
  color: var(--mm-accent);
}

.search__right-list .base-color {
  color: var(--mm-accent) !important;
}

/* Filter panel */
.search__left {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--mm-border);
  border-radius: 22px;
  box-shadow: var(--mm-shadow-sm);
  padding: 1.25rem;
}

.search__left-title h5 {
  color: var(--mm-ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Badge styles */
.badge {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
}

.badge--primary {
  background: var(--mm-accent-soft);
  color: var(--mm-accent-dark);
}

.badge--warning {
  background: rgba(255, 186, 35, 0.12);
  color: #926900;
}

.badge--dark {
  background: rgba(0, 0, 0, 0.07);
  color: var(--mm-ink);
}

.badge--info {
  background: rgba(37, 188, 241, 0.12);
  color: #0d7fa3;
}

.badge--green {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

/* ── Packages page ───────────────────────────────── */
.mm-discovery-page {
  padding: 1.5rem 0 4rem;
}

.mm-discovery-page .mm-page-hero {
  margin-bottom: 1.5rem;
}

.section {
  position: relative;
}

/* ── Preloader ───────────────────────────────────── */
.preloader {
  align-items: center;
  background: var(--mm-bg);
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader__loader i {
  animation: mmFloat 1.2s ease-in-out infinite;
  color: var(--mm-accent);
  display: block;
  font-size: 2.5rem;
}

/* ── Back to top ─────────────────────────────────── */
.back-to-top {
  align-items: center;
  background: var(--mm-accent);
  border-radius: 50%;
  bottom: 5.5rem;
  box-shadow: 0 4px 16px rgba(181, 102, 48, 0.35);
  display: flex;
  height: 44px;
  justify-content: center;
  position: fixed;
  right: 1.25rem;
  width: 44px;
  z-index: 98;
}

.back-to-top .back-top {
  color: #fff;
  font-size: 1.1rem;
}

.back-to-top:hover {
  background: var(--mm-accent-dark);
}

/* ── Pagination ──────────────────────────────────── */
.page-link {
  border: 1px solid var(--mm-border);
  border-radius: 12px !important;
  color: var(--mm-ink);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 3px;
  padding: 0.5rem 0.85rem;
  transition: all 0.2s ease;
}

.page-item.active .page-link {
  background: var(--mm-accent);
  border-color: var(--mm-accent);
  color: #fff;
}

.page-link:hover {
  background: var(--mm-accent-soft);
  color: var(--mm-accent-dark);
}

/* ══════════════════════════════════════════════════
   GLOBAL SECTION / PAGE POLISH
   ══════════════════════════════════════════════════ */
/* Override default section background */
.section--bg {
  background: var(--mm-bg);
}

/* Public page sections general spacing */
.mm-stories-page,
.mm-pricing-hero,
.section.search,
.mm-story-detail-page,
.mm-contact-page {
  padding: 2rem 0 4rem;
}

/* Make sure the body has enough bottom padding for the
   mobile bottom nav (which is fixed position) */
@media (max-width: 991px) {
  body {
    padding-bottom: 60px;
  }
}

/* Consistent section heading style for dynamic sections */
.section__head {
  padding: 3rem 0 2rem;
  text-align: center;
}

.section__para {
  color: var(--mm-muted);
  font-size: 1rem;
  line-height: 1.72;
  max-width: 600px;
}

/* Testimonial / FAQ sections */
.feedback-card {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 20px;
  box-shadow: var(--mm-shadow-sm);
  padding: 1.25rem 1.4rem;
  height: 100%;
}

.feedback-card__rating i {
  color: var(--mm-accent);
}

.feedback-card__thumb {
  border-radius: 50%;
  width: 52px;
  height: 52px;
  object-fit: cover;
}

/* FAQ accordion */
.accordion-button {
  background: transparent;
  color: var(--mm-ink);
  font-weight: 700;
  font-size: 1rem;
}

.accordion-button:not(.collapsed) {
  background: var(--mm-accent-soft);
  color: var(--mm-accent-dark);
  box-shadow: none;
}

.accordion-button::after {
  filter: brightness(0.4);
}

.accordion-item {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 14px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

/* Contact form */
.contact-card {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 22px;
  box-shadow: var(--mm-shadow-sm);
  overflow: hidden;
}

.contact-form {
  padding: 1.75rem;
}

.contact-icon-card {
  align-items: center;
  background: var(--mm-accent-soft);
  border-radius: 14px;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.contact-icon-card i {
  color: var(--mm-accent-dark);
  font-size: 1.2rem;
}

/* Alert/notify improvements */
.alert {
  border-radius: 14px;
  border: 1px solid transparent;
}

.alert-success {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.2);
  color: #15803d;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
  color: #b91c1c;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
  color: #92400e;
}

.alert-info {
  background: rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.2);
  color: #0369a1;
}

/* Table improvements */
.table {
  color: var(--mm-ink);
}

.table thead th {
  background: rgba(0, 0, 0, 0.02);
  color: var(--mm-muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--mm-border);
}

.table tbody td {
  border-color: var(--mm-border);
  vertical-align: middle;
  font-size: 0.9rem;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  background-color: rgba(0, 0, 0, 0.015);
}

/* Spinner/loading */
.search-overlay {
  align-items: center;
  background: rgba(245, 245, 247, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 22px;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  display: flex !important;
  justify-content: center;
  position: absolute;
  z-index: 10;
}

.search-overlay.d-none {
  display: none !important;
}

.search-overlay__spinner {
  animation: spin 0.75s linear infinite;
  border: 3px solid rgba(181, 102, 48, 0.2);
  border-top-color: var(--mm-accent);
  border-radius: 50%;
  display: block;
  height: 36px;
  width: 36px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ══════════════════════════════════════════════════
   HOME PAGE v2 — User-friendly redesign
   ══════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────── */
.mm-hero {
  padding: 0;
}

.mm-hero__stage {
  background: linear-gradient(160deg, #faf9f7 0%, #f5f2ee 55%, #eef4fb 100%);
  overflow: hidden;
  padding: 2.5rem 0 1rem;
  position: relative;
}

.mm-hero__stage::before {
  content: '';
  pointer-events: none;
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(181, 102, 48, 0.11) 0%, transparent 65%);
}

.mm-hero__stage::after {
  content: '';
  pointer-events: none;
  position: absolute;
  bottom: -10%;
  right: -8%;
  width: 45%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(50, 110, 185, 0.07) 0%, transparent 65%);
}

.mm-hero__grid {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  min-height: calc(100svh - 108px);
  padding: 1rem 0 2rem;
  position: relative;
  z-index: 1;
}

/* Hero headline */
.mm-hero__h1 {
  color: var(--mm-ink);
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.97;
  margin: 0.7rem 0 1rem;
  max-width: 16ch;
}

.mm-hero__lead {
  color: var(--mm-muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.72;
  margin-bottom: 1.75rem;
  max-width: 52ch;
}

/* Quick browse tiles (Bride / Groom) */
.mm-quick-browse {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.5rem;
}

.mm-quick-tile {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--mm-border);
  border-radius: 18px;
  box-shadow: var(--mm-shadow-sm);
  color: var(--mm-ink);
  display: flex;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  text-decoration: none;
  transition: all 0.25s var(--mm-ease);
}

.mm-quick-tile:hover {
  box-shadow: var(--mm-shadow);
  color: var(--mm-ink);
  transform: translateY(-2px);
}

.mm-quick-tile--bride:hover {
  border-color: rgba(214, 107, 148, 0.35);
}

.mm-quick-tile--groom:hover {
  border-color: rgba(59, 110, 185, 0.30);
}

.mm-quick-tile__icon {
  align-items: center;
  border-radius: 14px;
  display: flex;
  font-size: 1.6rem;
  height: 48px;
  justify-content: center;
  width: 48px;
  flex-shrink: 0;
}

.mm-quick-tile--bride .mm-quick-tile__icon {
  background: linear-gradient(135deg, rgba(251, 207, 232, 0.7), rgba(255, 240, 245, 0.9));
  color: #c2185b;
}

.mm-quick-tile--groom .mm-quick-tile__icon {
  background: linear-gradient(135deg, rgba(186, 215, 245, 0.7), rgba(235, 245, 255, 0.9));
  color: #1565c0;
}

.mm-quick-tile__text {
  flex: 1;
  min-width: 0;
}

.mm-quick-tile__text strong {
  color: var(--mm-ink);
  display: block;
  font-size: 0.97rem;
  font-weight: 800;
}

.mm-quick-tile__text span {
  color: var(--mm-muted);
  display: block;
  font-size: 0.82rem;
  margin-top: 0.1rem;
}

.mm-quick-tile__arrow {
  color: var(--mm-muted);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Hero search form */
.mm-hero__search-box {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 0.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.09);
  margin-bottom: 1.25rem;
  padding: 1.2rem 1.4rem 1.4rem;
}

.mm-hero__search-label {
  color: var(--mm-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.mm-search-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mm-search-form__fields {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mm-search-form__btn {
  width: 100%;
}

.mm-search-form__hint {
  color: var(--mm-muted);
  display: block;
  font-size: 0.75rem;
  margin-top: 0.3rem;
}

/* Profile-for row */
.mm-hero__pf-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.mm-hero__pf-label {
  color: var(--mm-muted);
  font-size: 0.79rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ── Hero right visual stack ────────────────────── */
.mm-hero__right {
  position: relative;
}

.mm-visual-stack {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
}

.mm-visual-card {
  border-radius: 24px;
  color: #fff;
  min-height: 200px;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s var(--mm-ease), box-shadow 0.35s var(--mm-ease);
}

.mm-visual-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--mm-shadow-xl);
}

.mm-visual-card--bride {
  background: linear-gradient(145deg, #d4688a 0%, #b84e70 60%, #8e2a4a 100%);
  box-shadow: 0 8px 32px rgba(180, 60, 100, 0.28);
}

.mm-visual-card--groom {
  background: linear-gradient(145deg, #3b6abf 0%, #2451a3 60%, #153480 100%);
  box-shadow: 0 8px 32px rgba(36, 80, 163, 0.28);
  margin-top: 2rem;
}

.mm-visual-card__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.mm-visual-card__avatar {
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: flex;
  font-size: 2.2rem;
  height: 70px;
  justify-content: center;
  width: 70px;
}

.mm-visual-card__meta strong {
  color: #fff;
  display: block;
  font-size: 0.97rem;
  font-weight: 800;
}

.mm-visual-card__meta span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.mm-visual-card__badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
}

/* Floating stat pills on visual */
.mm-stat-pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--mm-border);
  border-radius: 14px;
  box-shadow: var(--mm-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  grid-column: 1 / -1;
  padding: 0.6rem 1rem;
  text-align: center;
  width: fit-content;
}

.mm-stat-pill--tl {
  align-self: start;
  justify-self: start;
  grid-column: 1;
}

.mm-stat-pill--br {
  align-self: end;
  justify-self: end;
  grid-column: 2;
  margin-top: -1rem;
}

.mm-stat-pill strong {
  color: var(--mm-ink);
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.mm-stat-pill span {
  color: var(--mm-muted);
  display: block;
  font-size: 0.75rem;
}

/* Trust mini card */
.mm-trust-mini {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--mm-border);
  border-radius: 16px;
  box-shadow: var(--mm-shadow-sm);
  display: flex;
  gap: 0.85rem;
  grid-column: 1 / -1;
  padding: 0.9rem 1rem;
}

.mm-trust-mini__icon {
  align-items: center;
  background: var(--mm-accent-soft);
  border-radius: 12px;
  color: var(--mm-accent-dark);
  display: flex;
  font-size: 1.35rem;
  height: 42px;
  justify-content: center;
  width: 42px;
  flex-shrink: 0;
}

.mm-trust-mini strong {
  color: var(--mm-ink);
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
}

.mm-trust-mini span {
  color: var(--mm-muted);
  display: block;
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

/* ── Stats strip ────────────────────────────────── */
.mm-stats-strip {
  background: var(--mm-white);
  border-bottom: 1px solid var(--mm-border);
  border-top: 1px solid var(--mm-border);
  padding: 1.1rem 0;
}

.mm-stats-strip__row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  justify-content: center;
}

.mm-stats-strip__item {
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.mm-stats-strip__item strong {
  color: var(--mm-ink);
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.mm-stats-strip__item span {
  color: var(--mm-muted);
  display: block;
  font-size: 0.8rem;
  margin-top: 0.22rem;
}

.mm-stats-strip__sep {
  background: var(--mm-border);
  height: 36px;
  width: 1px;
}

/* ── How it works steps ─────────────────────────── */
.mm-steps {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
}

.mm-steps::before {
  background: linear-gradient(90deg, var(--mm-accent) 0%, rgba(181, 102, 48, 0.15) 100%);
  content: '';
  height: 2px;
  left: 15%;
  position: absolute;
  right: 15%;
  top: 52px;
}

.mm-step {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  box-shadow: var(--mm-shadow);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: transform 0.3s var(--mm-ease), box-shadow 0.3s var(--mm-ease);
}

.mm-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--mm-shadow-lg);
}

.mm-step__num {
  color: var(--mm-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.mm-step__icon-wrap {
  align-items: center;
  background: linear-gradient(135deg, rgba(181, 102, 48, 0.12), rgba(50, 110, 185, 0.09));
  border-radius: 16px;
  color: var(--mm-ink);
  display: inline-flex;
  font-size: 1.55rem;
  height: 56px;
  justify-content: center;
  margin-bottom: 1.1rem;
  width: 56px;
}

.mm-step h3 {
  color: var(--mm-ink);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}

.mm-step p {
  color: var(--mm-muted);
  font-size: 0.92rem;
  line-height: 1.72;
  margin: 0 0 1rem;
}

/* ── Browse category grid ───────────────────────── */
.mm-browse-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.5rem;
}

.mm-browse-tile {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  box-shadow: var(--mm-shadow);
  color: var(--mm-ink);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 200px;
  overflow: hidden;
  padding: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s var(--mm-ease), box-shadow 0.3s var(--mm-ease), border-color 0.3s ease;
}

.mm-browse-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--mm-shadow-lg);
  color: var(--mm-ink);
}

.mm-browse-tile--bride {
  background: linear-gradient(160deg, #fff3f7 0%, #fff 70%);
  border-color: rgba(214, 107, 148, 0.18);
}

.mm-browse-tile--bride:hover {
  border-color: rgba(214, 107, 148, 0.38);
}

.mm-browse-tile--bride .mm-browse-tile__icon {
  color: #c2185b;
  background: rgba(251, 207, 232, 0.45);
}

.mm-browse-tile--groom {
  background: linear-gradient(160deg, #f0f6ff 0%, #fff 70%);
  border-color: rgba(59, 110, 185, 0.15);
}

.mm-browse-tile--groom:hover {
  border-color: rgba(59, 110, 185, 0.32);
}

.mm-browse-tile--groom .mm-browse-tile__icon {
  color: #1565c0;
  background: rgba(186, 215, 245, 0.45);
}

.mm-browse-tile--faith .mm-browse-tile__icon {
  color: var(--mm-accent-dark);
  background: var(--mm-accent-soft);
}

.mm-browse-tile--premium {
  background: linear-gradient(145deg, #1d1d1f 0%, #2c2c2e 100%);
  border-color: transparent;
}

.mm-browse-tile--premium .mm-browse-tile__icon {
  color: #f8c560;
  background: rgba(248, 197, 96, 0.14);
}

.mm-browse-tile--premium .mm-browse-tile__body strong,
.mm-browse-tile--premium .mm-browse-tile__body p,
.mm-browse-tile--premium .mm-browse-tile__cta {
  color: rgba(255, 255, 255, 0.92);
}

.mm-browse-tile--premium:hover {
  color: rgba(255, 255, 255, 0.92);
}

.mm-browse-tile__icon {
  align-items: center;
  border-radius: 16px;
  display: inline-flex;
  font-size: 1.75rem;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.mm-browse-tile__body {
  flex: 1;
}

.mm-browse-tile__body strong {
  color: inherit;
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.mm-browse-tile__body p {
  color: var(--mm-muted);
  font-size: 0.91rem;
  line-height: 1.65;
  margin: 0;
}

.mm-browse-tile--premium .mm-browse-tile__body p {
  color: rgba(255, 255, 255, 0.65);
}

.mm-browse-tile__cta {
  color: var(--mm-accent-dark);
  font-size: 0.88rem;
  font-weight: 800;
  margin-top: auto;
}

/* Location stack + rows */
.mm-location-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mm-location-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--mm-border);
  border-radius: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 1rem 1.25rem;
}

.mm-location-row .mm-field-label {
  white-space: nowrap;
}

/* Primary row — slightly more prominent */
.mm-location-row--primary {
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.96), rgba(255, 255, 255, 0.92));
  border-color: rgba(181, 102, 48, 0.14);
}

/* Secondary row — subdued */
.mm-location-row--secondary {
  background: rgba(248, 249, 251, 0.88);
}

.mm-location-row--secondary .mm-field-label {
  color: var(--mm-muted);
}

/* Accent chip variant (e.g. "All Bangladesh") */
.mm-chip-link--accent {
  background: var(--mm-accent);
  border-color: var(--mm-accent);
  color: #fff;
}

.mm-chip-link--accent:hover {
  background: var(--mm-accent-dark);
  border-color: var(--mm-accent-dark);
  color: #fff;
  transform: translateY(-2px);
}

.mm-location-stack {
  display: grid;
  gap: 0.85rem;
}

.mm-location-row--primary {
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.98), rgba(255, 255, 255, 0.96));
  border-color: rgba(181, 102, 48, 0.18);
}

.mm-location-row--secondary {
  background: rgba(249, 251, 252, 0.92);
}

.mm-search-form__hint {
  color: var(--mm-muted);
  display: block;
  font-size: 0.76rem;
  line-height: 1.5;
  margin-top: 0.45rem;
}

/* ── Trust card grid ────────────────────────────── */
.mm-trust-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mm-trust-card {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  box-shadow: var(--mm-shadow);
  padding: 1.5rem;
  transition: transform 0.3s var(--mm-ease), box-shadow 0.3s var(--mm-ease);
}

.mm-trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--mm-shadow-lg);
}

.mm-trust-card__icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(181, 102, 48, 0.12), rgba(50, 110, 185, 0.09));
  border-radius: 16px;
  color: var(--mm-ink);
  display: inline-flex;
  font-size: 1.5rem;
  height: 54px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 54px;
}

.mm-trust-card h3 {
  color: var(--mm-ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
}

.mm-trust-card p {
  color: var(--mm-muted);
  font-size: 0.91rem;
  line-height: 1.7;
  margin: 0;
}

/* Stories section head with spread layout */
.mm-section-head--spread {
  align-items: flex-end;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  max-width: 100%;
}

.mm-section-head--spread h2 {
  margin-bottom: 0;
}

/* Story card image wrapper */
.mm-story-card__img-wrap {
  height: 215px;
  overflow: hidden;
}

.mm-story-card__img-wrap img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: transform 0.45s var(--mm-ease);
}

.mm-story-card:hover .mm-story-card__img-wrap img {
  transform: scale(1.05);
}

.mm-story-card__link {
  color: var(--mm-accent-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

/* Empty story card */
.mm-story-card--empty {
  text-align: center;
}

.mm-story-card__empty-icon {
  align-items: center;
  background: var(--mm-accent-soft);
  border-radius: 50%;
  color: var(--mm-accent-dark);
  display: flex;
  font-size: 2.2rem;
  height: 72px;
  justify-content: center;
  margin: 1.5rem auto 0;
  width: 72px;
}

/* ── Support / legal page rhythm ───────────────── */
.mm-page-hero--legal {
  margin-bottom: 1.5rem;
}

.mm-story-page-intro__copy,
.mm-support-page-intro__copy {
  color: #667085;
  font-size: 0.97rem;
  line-height: 1.8;
  margin: 0.9rem 0 0;
  max-width: 72ch;
}

.mm-support-page-intro {
  margin-bottom: 1.5rem;
}

.mm-support-page-intro__panel {
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.94), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(181, 102, 48, 0.12);
  border-radius: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 1rem 1.1rem;
}

.mm-support-page-intro__panel span {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 33, 43, 0.08);
  border-radius: 999px;
  color: var(--mm-ink);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.48rem 0.82rem;
}

.mm-legal-page {
  position: relative;
}

.mm-legal-article {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(23, 33, 43, 0.08);
  border-radius: 28px;
  overflow: hidden;
  padding: 1.5rem;
}

.mm-legal-article__content {
  color: #394351;
  font-size: 1rem;
  line-height: 1.92;
}

.mm-legal-article__content>*:first-child {
  margin-top: 0;
}

.mm-legal-article__content h1,
.mm-legal-article__content h2,
.mm-legal-article__content h3,
.mm-legal-article__content h4,
.mm-legal-article__content h5,
.mm-legal-article__content h6 {
  color: var(--mm-ink);
  line-height: 1.25;
  margin: 1.55rem 0 0.85rem;
}

.mm-legal-article__content h2 {
  font-size: 1.65rem;
}

.mm-legal-article__content h3 {
  font-size: 1.35rem;
}

.mm-legal-article__content p,
.mm-legal-article__content ul,
.mm-legal-article__content ol,
.mm-legal-article__content blockquote,
.mm-legal-article__content table {
  margin-bottom: 1rem;
}

.mm-legal-article__content ul,
.mm-legal-article__content ol {
  padding-left: 1.3rem;
}

.mm-legal-article__content a {
  color: var(--mm-accent-dark);
  font-weight: 700;
}

.mm-legal-article__content blockquote {
  background: rgba(255, 249, 242, 0.72);
  border-left: 4px solid rgba(181, 102, 48, 0.4);
  border-radius: 0 20px 20px 0;
  color: var(--mm-ink);
  margin-left: 0;
  padding: 0.95rem 1rem;
}

.mm-legal-article__content table {
  display: block;
  overflow-x: auto;
  width: 100%;
}

.mm-contact-page .contact-card {
  box-shadow: none;
}

/* ── CTA Band ───────────────────────────────────── */
.mm-cta-band {
  align-items: center;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(145deg, #1d1d1f 0%, #2a3c4d 100%);
  border-radius: var(--mm-radius-lg);
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding: 2.5rem 2.25rem;
}

.mm-cta-band__copy {
  max-width: 600px;
}

.mm-cta-band__copy h2 {
  color: #fff;
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0.4rem 0 0.65rem;
}

.mm-cta-band__copy p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0;
}

.mm-cta-band__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.mm-eyebrow--light {
  color: rgba(181, 102, 48, 0.75);
}

.mm-btn-ghost {
  background: rgba(255, 255, 255, 0.10) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
}

.mm-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — Home Page v2
   ══════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  .mm-hero__grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .mm-hero__right {
    display: none;
  }

  .mm-hero__h1 {
    max-width: 100%;
  }

  .mm-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .mm-steps {
    grid-template-columns: 1fr;
  }

  .mm-steps::before {
    display: none;
  }

  .mm-browse-grid {
    grid-template-columns: 1fr;
  }

  .mm-stats-strip__sep {
    display: none;
  }

  .mm-stats-strip__item {
    flex: none;
    width: 50%;
  }

  .mm-section-head--spread {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .mm-cta-band {
    flex-direction: column;
    padding: 1.75rem;
  }
}

@media (max-width: 767px) {
  .mm-hero__stage {
    padding: 1.5rem 0 1rem;
  }

  .mm-hero__h1 {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }

  .mm-quick-browse {
    grid-template-columns: 1fr;
  }

  .mm-search-form__fields {
    grid-template-columns: 1fr;
  }

  .mm-trust-grid {
    grid-template-columns: 1fr;
  }

  .mm-story-grid {
    grid-template-columns: 1fr;
  }

  .mm-stats-strip__item {
    width: 100%;
  }

  .mm-stats-strip__row {
    gap: 0.75rem;
  }

  .mm-browse-grid {
    gap: 0.75rem;
  }

  .mm-legal-article {
    border-radius: 24px;
    padding: 1rem;
  }

  .mm-legal-article__content {
    font-size: 0.97rem;
    line-height: 1.85;
  }
}

/* ══════════════════════════════════════════════════
   DISCOVERY — Card v2 & Page Styles
   ══════════════════════════════════════════════════ */

/* ── Discovery card shell ── */
.discovery-card {
  border: 1px solid var(--mm-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: none;
  transition: box-shadow 0.25s var(--mm-ease);
}

.discovery-card:hover {
  box-shadow: var(--mm-shadow);
}

.discovery-card--private {
  background: linear-gradient(135deg, #fff 0%, #fff8ef 100%);
}

.discovery-card__overlay {
  background: rgba(24, 34, 48, 0.72);
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  left: 14px;
  padding: 6px 12px;
  position: absolute;
  top: 14px;
}

.privacy-blur {
  filter: blur(16px);
  transform: scale(1.04);
}

/* ── Member card inner layout ── */
.mm-member-card__inner {
  display: flex;
  align-items: stretch;
}

.mm-member-card__photo {
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  width: 210px;
}

.mm-member-card__photo a {
  display: block;
  height: 100%;
}

.mm-member-card__photo img {
  display: block;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  width: 100%;
}

.mm-member-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.8rem;
  min-width: 0;
  padding: 1.35rem 1.5rem;
}

/* ── Card head: name + badges ── */
.mm-member-card__head {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
}

.mm-member-card__name {
  color: var(--mm-ink);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.18rem;
}

.mm-member-card__name a {
  color: inherit;
  text-decoration: none;
}

.mm-member-card__name a:hover {
  color: var(--mm-accent);
}

.mm-member-card__pid {
  color: var(--mm-muted);
  font-size: 0.8rem;
  margin: 0;
}

.mm-member-card__pid span {
  color: var(--mm-ink);
  font-weight: 700;
}

.member-meta-badges {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Summary chips ── */
.member-summary-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.member-summary-chip {
  background: rgba(24, 34, 48, 0.04);
  border: 1px solid var(--mm-border);
  border-radius: 999px;
  color: var(--mm-muted);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 11px;
}

/* ── Language chips ── */
.member-language-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.member-language-chip {
  background: rgba(199, 132, 67, 0.10);
  border: 1px solid rgba(199, 132, 67, 0.22);
  border-radius: 999px;
  color: var(--mm-accent-dark);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  padding: 7px 10px;
}

/* ── Attrs grid ── */
.mm-member-attrs {
  display: grid;
  gap: 0.55rem 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mm-member-attr {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.mm-member-attr__label {
  color: var(--mm-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mm-member-attr__value {
  color: var(--mm-ink);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ── Action buttons ── */
.mm-member-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: auto 0 0;
  padding: 0;
}

.mm-action-item--view {
  margin-left: auto;
}

.mm-action-btn {
  align-items: center;
  background: transparent;
  border: 1px solid var(--mm-border);
  border-radius: 999px;
  color: var(--mm-muted);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 0.4rem;
  padding: 0.44rem 0.9rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.mm-action-btn:hover {
  border-color: var(--mm-accent);
  color: var(--mm-accent);
}

.mm-action-btn--interest {
  background: var(--mm-accent);
  border-color: var(--mm-accent);
  color: #fff;
}

.mm-action-btn--interest:hover {
  background: var(--mm-accent-dark, #a0521e);
  border-color: var(--mm-accent-dark, #a0521e);
  color: #fff;
}

.mm-action-btn--matched {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.25);
  color: #16a34a;
}

.mm-action-btn--matched:hover {
  color: #15803d;
}

.mm-action-btn--shortlisted {
  background: rgba(181, 102, 48, 0.08);
  border-color: rgba(181, 102, 48, 0.22);
  color: var(--mm-accent-dark, #a0521e);
}

.mm-action-btn--muted {
  color: var(--mm-muted);
}

.mm-action-btn--view {
  background: var(--mm-ink);
  border-color: var(--mm-ink);
  color: #fff;
}

.mm-action-btn--view:hover {
  background: #2d2d30;
  border-color: #2d2d30;
  color: #fff;
}

/* ── Empty state ── */
.discovery-empty-state {
  background: linear-gradient(135deg, #fffaf4 0%, #fff 54%, #f4f8fb 100%);
  border: 1px dashed rgba(199, 132, 67, 0.26);
  border-radius: 24px;
  padding: 42px 20px;
}

.empty-table__title {
  color: var(--mm-ink);
}

/* ── Discovery topbar ── */
.discovery-topbar {
  display: grid;
  gap: 18px;
}

.discovery-panel {
  background: linear-gradient(135deg, #fff7f2 0%, #fff 55%, #eef7ff 100%);
  border: 1px solid var(--mm-border);
  border-radius: 24px;
  padding: 20px;
}

.discovery-panel__head {
  margin-bottom: 14px;
}

.discovery-panel__eyebrow {
  color: var(--mm-accent-dark, #a0521e);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discovery-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.discovery-chip-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 16px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 12px 14px;
  width: min(100%, 300px);
}

.discovery-chip-card a {
  color: inherit;
  text-decoration: none;
}

.discovery-chip-card strong {
  color: var(--mm-ink);
  display: block;
  font-size: 0.95rem;
}

.discovery-chip-card span {
  color: var(--mm-muted);
  font-size: 0.83rem;
}

.discovery-chip-card button {
  background: transparent;
  border: 0;
  color: var(--mm-muted);
}

.recently-viewed-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.recently-viewed-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 18px;
  color: inherit;
  display: flex;
  gap: 12px;
  padding: 12px;
  text-decoration: none;
}

.recently-viewed-card img {
  border-radius: 14px;
  height: 58px;
  object-fit: cover;
  width: 58px;
}

.recently-viewed-card strong {
  color: var(--mm-ink);
  display: block;
  font-size: 0.95rem;
}

.recently-viewed-card span {
  color: var(--mm-muted);
  font-size: 0.83rem;
}

/* ── Filter panel & sidebar ── */
.search__left-subtitle {
  color: var(--mm-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.discovery-toggle-list {
  display: grid;
  gap: 10px;
}

.discovery-mobile-bar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.discovery-mobile-filter-toggle {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.discovery-mobile-bar__meta {
  align-items: flex-end;
  display: inline-flex;
  flex-direction: column;
}

.discovery-mobile-bar__meta strong {
  color: var(--mm-ink);
  font-size: 1.05rem;
  line-height: 1;
}

.discovery-mobile-bar__meta span {
  color: var(--mm-muted);
  font-size: 0.82rem;
}

/* ── Results header ── */
.discovery-results-header {
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, #fff8ef 100%);
  border: 1px solid var(--mm-border);
  border-radius: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 18px 20px;
}

.discovery-results-header p {
  color: var(--mm-muted);
  max-width: 620px;
}

.discovery-results-header__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.discovery-view-toggle {
  align-items: center;
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: 999px;
  display: inline-flex;
  padding: 4px;
}

.discovery-view-toggle__btn {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--mm-muted);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 8px;
  padding: 10px 14px;
}

.discovery-view-toggle__btn.is-active {
  background: rgba(199, 132, 67, 0.12);
  color: hsl(var(--base));
}

.discovery-view-toggle__btn i {
  font-size: 1rem;
}

.discovery-results-count {
  align-items: flex-end;
  display: inline-flex;
  flex-direction: column;
}

.discovery-results-count strong {
  color: var(--mm-ink);
  font-size: 1.45rem;
  line-height: 1;
}

.discovery-results-count span {
  color: var(--mm-muted);
  font-size: 0.84rem;
}

.discovery-active-filters {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.discovery-active-filters__list {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 10px;
}

.discovery-active-filter {
  background: rgba(199, 132, 67, 0.08);
  border: 1px solid rgba(199, 132, 67, 0.18);
  border-radius: 999px;
  color: var(--mm-accent-dark, #a0521e);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 12px;
}

.discovery-filter-backdrop {
  background: rgba(24, 34, 48, 0.42);
  inset: 0;
  position: fixed;
  z-index: 999;
}

/* ── Grid view ── */
.member-wrapper--grid .member-result {
  width: 50%;
}

.member-wrapper--grid .discovery-card {
  height: 100%;
}

.member-wrapper--grid .mm-member-card__inner {
  flex-direction: column;
  height: 100%;
}

.member-wrapper--grid .mm-member-card__photo {
  height: 260px;
  width: 100%;
}

.member-wrapper--grid .mm-member-card__photo a {
  height: 260px;
}

.member-wrapper--grid .mm-member-card__photo img {
  height: 260px;
  min-height: unset;
}

.member-wrapper--grid .mm-member-card__body {
  flex: 1;
}

.member-wrapper--grid .mm-member-attrs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.member-wrapper--grid .mm-action-item--view {
  margin-left: 0;
}

/* ── RESPONSIVE — Discovery ── */
@media (max-width: 1199px) {
  .discovery-filter-panel {
    background: #fff;
    border-right: 1px solid var(--mm-border);
    bottom: 0;
    left: 0;
    max-width: 420px;
    overflow-y: auto;
    padding-bottom: 22px;
    position: fixed;
    top: 0;
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    width: calc(100vw - 28px);
    z-index: 1000;
  }

  .discovery-filter-panel.is-open {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .member-wrapper--grid .member-result {
    width: 100%;
  }
}

@media (max-width: 767px) {

  .discovery-panel,
  .discovery-results-header {
    border-radius: 18px;
    padding: 16px;
  }

  .discovery-view-toggle {
    width: 100%;
  }

  .discovery-mobile-filter-toggle,
  .discovery-results-header__actions,
  .save-current-search {
    width: 100%;
  }

  .discovery-results-header__actions {
    align-items: stretch;
  }

  .discovery-results-count {
    align-items: flex-start;
    width: 100%;
  }

  .discovery-view-toggle__btn {
    flex: 1 1 50%;
    justify-content: center;
  }

  .discovery-active-filters {
    flex-direction: column;
  }

  .mm-member-card__inner {
    flex-direction: column;
  }

  .mm-member-card__photo {
    height: 240px;
    width: 100%;
  }

  .mm-member-card__photo a {
    height: 240px;
  }

  .mm-member-card__photo img {
    height: 240px;
    min-height: unset;
  }

  .mm-member-attrs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mm-action-item--view {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .discovery-mobile-bar__meta {
    align-items: flex-start;
    width: 100%;
  }

  .mm-member-attrs {
    grid-template-columns: 1fr;
  }

  .mm-member-actions > li,
  .mm-action-item--view {
    width: 100%;
  }

  .mm-action-btn {
    justify-content: center;
    white-space: normal;
    width: 100%;
  }
}

.mm-story-article__content img,
.mm-story-article__content iframe,
.mm-blog-detail__content img,
.mm-blog-detail__content iframe,
.mm-legal-article__content img,
.mm-legal-article__content iframe {
  height: auto;
  max-width: 100%;
}

.mm-story-article__content iframe,
.mm-blog-detail__content iframe,
.mm-legal-article__content iframe {
  width: 100%;
}

.mm-story-article__content table,
.mm-blog-detail__content table {
  display: block;
  overflow-x: auto;
  width: 100%;
}

.mm-blog-detail-page {
  padding: 1.25rem 0 3rem;
}

.mm-blog-detail__article {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--mm-border);
  border-radius: 24px;
  overflow: hidden;
  padding: 1rem;
}

.mm-blog-detail__hero {
  border-radius: 18px;
  display: block;
}

.mm-blog-detail__content {
  color: #394351;
  font-size: 1rem;
  line-height: 1.9;
}

.mm-blog-detail__content > *:last-child {
  margin-bottom: 0;
}

.mm-blog-detail__comments {
  margin-top: 1.5rem;
}

.mm-blog-detail__comments .fb-comments,
.mm-blog-detail__comments span,
.mm-blog-detail__comments iframe {
  max-width: 100% !important;
  width: 100% !important;
}

@media (max-width: 575px) {
  .mm-blog-detail__article {
    border-radius: 20px;
    padding: 0.85rem;
  }
}


/* ══════════════════════════════════════════════════════
   MEMBER SHOWCASE — Home New/Premium sections
   ══════════════════════════════════════════════════════ */
.mm-member-showcase {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.mm-showcase-card {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-lg);
  box-shadow: var(--mm-shadow);
  color: var(--mm-ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: box-shadow 0.25s var(--mm-ease), transform 0.25s var(--mm-ease);
}

.mm-showcase-card:hover {
  box-shadow: var(--mm-shadow-lg);
  color: var(--mm-ink);
  text-decoration: none;
  transform: translateY(-4px);
}

/* Photo area */
.mm-showcase-card__photo {
  aspect-ratio: 3/4;
  background: var(--mm-surface);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.mm-showcase-card__photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--mm-ease);
  width: 100%;
}

.mm-showcase-card:hover .mm-showcase-card__photo img {
  transform: scale(1.04);
}

.mm-showcase-card__avatar {
  align-items: center;
  background: linear-gradient(135deg, var(--mm-surface) 0%, #e8e8ed 100%);
  color: var(--mm-muted);
  display: flex;
  font-size: 2.5rem;
  height: 100%;
  justify-content: center;
  width: 100%;
}

/* Verified badge */
.mm-showcase-card__verified {
  background: #22c55e;
  border-radius: 50%;
  bottom: 8px;
  color: #fff;
  font-size: 1rem;
  height: 24px;
  line-height: 24px;
  position: absolute;
  right: 8px;
  text-align: center;
  width: 24px;
}

/* Premium crown */
.mm-showcase-card__crown {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 0 0 0.5rem 0;
  color: #fff;
  font-size: 0.75rem;
  left: 0;
  padding: 0.25rem 0.6rem;
  position: absolute;
  top: 0;
  z-index: 2;
}

/* Premium card styling */
.mm-showcase-card--premium {
  border-color: rgba(181, 102, 48, 0.25);
  box-shadow: 0 0 0 1px rgba(181, 102, 48, 0.12), var(--mm-shadow);
}

.mm-showcase-card--premium:hover {
  box-shadow: 0 0 0 2px rgba(181, 102, 48, 0.22), var(--mm-shadow-lg);
}

/* Body */
.mm-showcase-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0.85rem;
}

.mm-showcase-card__name {
  color: var(--mm-ink);
  font-size: 0.93rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mm-showcase-card__id {
  color: var(--mm-muted);
  font-size: 0.75rem;
}

.mm-showcase-card__meta {
  color: var(--mm-accent);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Ad slot base styles */
.mm-ad-slot {
  margin: 1.5rem auto;
  max-width: 100%;
  text-align: center;
}

.mm-ad-slot__link,
.mm-ad-slot__static {
  display: inline-block;
  position: relative;
}

.mm-ad-slot__img {
  border-radius: var(--mm-radius);
  max-width: 100%;
  height: auto;
  display: block;
}

.mm-ad-slot__label {
  background: rgba(0, 0, 0, 0.50);
  border-radius: 4px;
  bottom: 8px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  position: absolute;
  right: 8px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1199px) {
  .mm-member-showcase {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mm-member-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .mm-member-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* ── Hobby / Interest chips in profile settings ─────────────────── */
.mm-hobby-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.mm-hobby-group__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mm-muted, #888);
  margin-bottom: 0.5rem;
}

.mm-hobby-chip {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border: 1.5px solid var(--mm-border, #e0dbd3);
  border-radius: 999px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.15s ease;
  background: #fff;
  color: var(--mm-ink, #1a1a1a);
  user-select: none;
}

.mm-hobby-chip:hover {
  border-color: var(--mm-accent, #c8a25c);
  color: var(--mm-accent, #c8a25c);
}

.mm-hobby-chip--selected {
  background: rgba(200, 162, 92, 0.12);
  border-color: var(--mm-accent, #c8a25c);
  color: var(--mm-accent, #c8a25c);
  font-weight: 600;
}

/* ── Matched section badge ───────────────────────────────────────── */
.mm-showcase-card__match-badge {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: var(--mm-accent, #c8a25c);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.mm-section-cta {
  text-align: center;
}

.mm-match-prefs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}


/* ======================================================
   MOBILE RESPONSIVE FIXES
   ====================================================== */

/* Fix 1: Hide legacy header-top bar on mobile (replaced by mm-site-header__top trust bar) */
.header-top {
  display: none !important;
}
@media (min-width: 992px) {
  .header-top {
    display: block !important;
  }
}

/* Fix 2: Dashboard priority card — prevent action button text from wrapping on small screens */
.verification-dashboard-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.verification-dashboard-item > div:first-child {
  flex: 1 1 0;
  min-width: 0;
}

.verification-dashboard-item > div.text-end {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.verification-dashboard-item .btn-outline--base,
.verification-dashboard-item a.btn {
  white-space: nowrap;
  display: inline-block;
}

@media (max-width: 480px) {
  .verification-dashboard-item {
    flex-direction: column;
    gap: 0.6rem;
  }

  .verification-dashboard-item > div.text-end {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem;
  }
}

/* Fix 3: Policy agreement links in register form — prevent per-word wrapping */
.form--check a {
  white-space: nowrap;
  display: inline;
}

.form--check {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.3rem;
  line-height: 1.6;
}


/* Fix 4: Nav link underlines inside collapsed mobile menu — disable ::before/::after */
@media (max-width: 991px) {
  .navbar-collapse .nav-menu .nav-item .nav-link::before,
  .navbar-collapse .nav-menu .nav-item .nav-link::after,
  .navbar-collapse .mm-site-header .nav-link::after {
    display: none !important;
    width: 0 !important;
  }

  /* Remove the bold color accent on active nav links inside mobile drawer */
  .navbar-collapse .nav-menu .nav-item .nav-link.active {
    color: var(--mm-ink) !important;
    font-weight: 600;
  }

  /* CTA register link in mobile nav — style it nicely */
  .navbar-collapse .mm-nav-link--cta {
    color: var(--mm-primary) !important;
    font-weight: 700;
  }
}
