/* ── Hero ─────────────────────────────────────────────────────────────────── */
.mh-hero {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 40px 24px 44px;
}
.mh-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.mh-logo-wrap { flex-shrink: 0; }
.mh-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 20px;
  border: 1.5px solid #e5e7eb;
  background: #f9fafb;
  display: block;
  padding: 8px;
}
.mh-logo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #166534;
}
.mh-meta { flex: 1; min-width: 0; }
.mh-cats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.mh-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 99px;
  padding: 4px 12px;
  text-decoration: none;
  transition: all .15s;
}
.mh-cat-pill:hover { background: #dcfce7; }
.mh-name {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #0f1a0f;
  margin-bottom: 12px;
}
.mh-desc {
  font-size: 16px;
  color: #52525b;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 600px;
}
.mh-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #16a34a;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 99px;
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.mh-cta:hover { background: #14532d; transform: translateY(-1px); }

/* ── Sections ─────────────────────────────────────────────────────────────── */
.mh-section { padding: 48px 24px; }
.mh-section-alt { background: #f9fafb; }
.mh-inner { max-width: 960px; margin: 0 auto; }
.mh-section-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0f1a0f;
  margin-bottom: 24px;
}

/* ── BNPL services ────────────────────────────────────────────────────────── */
.mh-services { display: flex; flex-direction: column; gap: 10px; }
.mh-svc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px 20px;
  text-decoration: none;
  color: inherit;
  transition: all .15s;
}
.mh-svc-card:hover {
  border-color: #86efac;
  box-shadow: 0 4px 16px rgba(22,163,74,.1);
  transform: translateX(4px);
}
.mh-svc-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}
.mh-svc-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mh-svc-name { font-size: 15px; font-weight: 600; flex: 1; }
.mh-svc-arrow { font-size: 18px; color: #9ca3af; transition: color .15s, transform .15s; }
.mh-svc-card:hover .mh-svc-arrow { color: #16a34a; transform: translateX(3px); }

/* ── Featured products ────────────────────────────────────────────────────── */
.mh-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.mh-product {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all .18s;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.mh-product:hover {
  border-color: #86efac;
  box-shadow: 0 6px 20px rgba(22,163,74,.1);
  transform: translateY(-2px);
}
.mh-product-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #f3f4f6;
  flex-shrink: 0;
}
.mh-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .2s;
}
.mh-product:hover .mh-product-img { transform: scale(1.05); }
.mh-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: #f0fdf4;
}
.mh-product-info { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 6px; }
.mh-product-name { font-size: 13px; font-weight: 600; color: #0f1a0f; line-height: 1.4; }
.mh-product-price { font-size: 15px; font-weight: 800; color: #16a34a; }

/* ── How it works steps ───────────────────────────────────────────────────── */
.mh-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.mh-step {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mh-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mh-step-text { font-size: 14px; color: #52525b; line-height: 1.6; }

/* ── Related stores ───────────────────────────────────────────────────────── */
.mh-related {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.mh-related-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  transition: all .15s;
}
.mh-related-card:hover {
  border-color: #86efac;
  box-shadow: 0 4px 12px rgba(22,163,74,.08);
  transform: translateY(-1px);
}
.mh-related-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #166534;
  overflow: hidden;
  flex-shrink: 0;
}
.mh-related-info { flex: 1; min-width: 0; }
.mh-related-name { font-size: 14px; font-weight: 700; color: #0f1a0f; }
.mh-related-cat { font-size: 12px; color: #9ca3af; margin-top: 2px; }
.mh-related-arrow { font-size: 16px; color: #9ca3af; transition: all .15s; flex-shrink: 0; }
.mh-related-card:hover .mh-related-arrow { color: #16a34a; transform: translateX(3px); }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .mh-hero-inner { flex-direction: column; gap: 20px; }
  .mh-logo, .mh-logo-placeholder { width: 72px; height: 72px; }
  .mh-section { padding: 36px 20px; }
  .mh-products { grid-template-columns: repeat(2, 1fr); }
  .mh-product-img-wrap { height: 140px; }
  .mh-steps { grid-template-columns: 1fr; }
}

/* ── Full description ─────────────────────────────────────────────────────── */
.mh-full-desc { max-width: 720px; }
.mh-full-desc p {
  font-size: 15px;
  color: #52525b;
  line-height: 1.8;
  margin-bottom: 16px;
}
.mh-full-desc p:last-child { margin-bottom: 0; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.mh-faq { max-width: 720px; }
.mh-faq-item { border-top: 1px solid #e5e7eb; }
.mh-faq-item:last-child { border-bottom: 1px solid #e5e7eb; }
.mh-faq-q {
  font-size: 15px;
  font-weight: 600;
  color: #0f1a0f;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  user-select: none;
  transition: color .15s;
}
.mh-faq-q:hover { color: #16a34a; }
.mh-faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: #16a34a;
  flex-shrink: 0;
  transition: all .2s;
}
.mh-faq-item.open .mh-faq-toggle {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
  transform: rotate(45deg);
}
.mh-faq-a {
  font-size: 14px;
  color: #52525b;
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}
.mh-faq-item.open .mh-faq-a { max-height: 400px; padding-bottom: 18px; }

/* ── Service card links ───────────────────────────────────────────────────── */
.mh-svc-card {
  cursor: default;
}
.mh-svc-links {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.mh-svc-link {
  font-size: 12px;
  font-weight: 600;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 99px;
  padding: 4px 12px;
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
}
.mh-svc-link:hover { background: #16a34a; border-color: #16a34a; color: #fff; }

/* ── Star rating display ──────────────────────────────────────────────────── */
.mh-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.mh-stars { display: flex; gap: 2px; }
.mh-star {
  font-size: 20px;
  line-height: 1;
}
.mh-star-full  { color: #f59e0b; }
.mh-star-half  { color: #f59e0b; opacity: .5; }
.mh-star-empty { color: #d1d5db; }
.mh-rating-val {
  font-size: 16px;
  font-weight: 700;
  color: #0f1a0f;
}
.mh-rating-cnt {
  font-size: 13px;
  color: #9ca3af;
}