/* MedicinePrices.pk v2 — inspired modern pharmacy UI */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --mp-spring: #a8e676;
  --mp-forest: #0d2a14;
  --mp-green-50: #f4fce8;
  --mp-green-100: #e8f9d0;
  --mp-green-400: #a8e676;
  --mp-green-500: #7bc93e;
  --mp-green-600: #3d9c2a;
  --mp-green-700: #2d7a22;
  --mp-green-800: #1a5c18;
  --mp-green-900: var(--mp-forest);
  --mp-lime: #c8f07a;
  --mp-lime-bright: var(--mp-spring);
  --mp-yellow: #fef08a;
  --mp-orange: #fb923c;
  --mp-blue: #bae6fd;
  --mp-maroon: #8f163f;
  --mp-text: #0f172a;
  --mp-muted: #64748b;
  --mp-border: #e2e8f0;
  --mp-radius: 16px;
  --mp-radius-sm: 10px;
  --mp-radius-pill: 999px;
  --mp-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --mp-shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
}

body.mp-v2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--mp-text);
  background: #f8fafc;
}

/* Unified site header */
.mp-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(13, 42, 20, .08);
}

.mp-top-bar {
  background: linear-gradient(90deg, var(--mp-green-800), var(--mp-green-600));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.mp-top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  flex-wrap: wrap;
}
.mp-top-bar__phone {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
}
.mp-top-bar__phone:hover { color: var(--mp-lime); }
.mp-top-bar__promo {
  margin: 0;
  text-align: center;
  flex: 1;
  min-width: 180px;
  font-size: 12px;
}
.mp-top-bar__promo code {
  background: rgba(255,255,255,.2);
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 4px;
}
.mp-top-bar__links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.mp-top-bar__links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.mp-top-bar__links a:hover { color: var(--mp-lime); }
.mp-top-bar__join { font-weight: 700; }

@media (max-width: 767px) {
  .mp-top-bar__promo { display: none; }
  .mp-top-bar__inner { justify-content: center; }
  .mp-top-bar__links { font-size: 11px; gap: 10px; }
}

/* Main header row */
.mp-header {
  background: #fff;
  border-bottom: 1px solid var(--mp-border);
}
.mp-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.mp-logo img { max-height: 48px; width: auto; }
.mp-logo__text {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--mp-green-800);
  text-decoration: none;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
}
.mp-logo__text img {
  max-height: 44px;
  width: auto;
  display: block;
}
.mp-logo__text span { color: var(--mp-maroon); }

.mp-search {
  flex: 1;
  min-width: 200px;
  max-width: 520px;
  position: relative;
}
.mp-search input {
  width: 100%;
  border: 2px solid var(--mp-border);
  border-radius: var(--mp-radius-pill);
  padding: 12px 48px 12px 20px;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.mp-search input:focus {
  outline: none;
  border-color: var(--mp-green-500);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .15);
}
.mp-search button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--mp-green-600);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

.mp-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.mp-header-actions a,
.mp-header-actions__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--mp-text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--mp-radius-sm);
  transition: background .2s;
}
.mp-header-actions a:hover,
.mp-header-actions__item:hover { background: var(--mp-green-50); color: var(--mp-green-800); }
.mp-header-actions i { font-size: 20px; margin-bottom: 2px; }
.mp-header-actions__item i { margin-bottom: 2px; }
.mp-cart-badge,
body.mp-v2 .site-header__cart-count.mp-cart-badge {
  background: var(--mp-maroon);
  color: #fff;
  font-size: 10px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
}

.mp-header__menu-btn {
  border: none;
  background: transparent;
  padding: 8px;
  color: var(--mp-green-800);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.mp-header__cart {
  position: relative;
}
.mp-header__cart-btn {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--mp-text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--mp-radius-sm);
  position: relative;
}
.mp-header__cart-btn:hover {
  background: var(--mp-green-50);
  color: var(--mp-green-800);
}
.mp-header__cart-btn i { font-size: 20px; margin-bottom: 2px; }
body.mp-v2 .mp-header__cart #header-cart {
  right: 0;
  left: auto;
}

/* Category navigation bar */
.mp-nav-bar {
  background: var(--mp-forest) !important;
  border: none !important;
  padding: 0 !important;
}
.mp-nav-bar__nav {
  width: 100%;
}
body.mp-v2 .mp-nav-bar #siteNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
}
body.mp-v2 .mp-nav-bar #siteNav > li > a {
  padding: 12px 14px !important;
  line-height: 1.3 !important;
}

/* Nav bar under header (legacy alias) */
body.mp-v2 .header-wrap.animated {
  border: none !important;
  background: var(--mp-forest) !important;
  padding: 0 !important;
}
body.mp-v2 #siteNav > li > a {
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}
body.mp-v2 .prescription {
  background: var(--mp-lime) !important;
  border-radius: var(--mp-radius-pill) !important;
}
body.mp-v2 .prescription b { color: var(--mp-green-900) !important; }
body.mp-v2 .prescription:hover {
  background: #fff !important;
}

/* Sections */
.mp-section { padding: 48px 0; }
.mp-section--alt { background: #fff; }
.mp-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.mp-section__title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  margin: 0;
  color: var(--mp-text);
}
.mp-section__sub { color: var(--mp-muted); margin: 6px 0 0; font-size: 15px; }
.mp-link { color: var(--mp-green-700); font-weight: 600; text-decoration: none; }
.mp-link:hover { text-decoration: underline; }

/* Hero */
.mp-hero {
  background: linear-gradient(135deg, var(--mp-lime-bright) 0%, var(--mp-green-400) 45%, var(--mp-green-600) 100%);
  border-radius: 0 0 32px 32px;
  padding: 40px 0 56px;
  overflow: hidden;
}
.mp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 991px) {
  .mp-hero__grid { grid-template-columns: 1fr; text-align: center; }
}
.mp-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,.9);
  padding: 6px 14px;
  border-radius: var(--mp-radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--mp-green-800);
  margin-bottom: 16px;
}
.mp-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--mp-green-900);
  margin: 0 0 16px;
}
.mp-hero__text {
  font-size: 1.05rem;
  color: var(--mp-green-900);
  opacity: .85;
  max-width: 420px;
  margin-bottom: 24px;
}
.mp-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.mp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--mp-radius-pill);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.mp-btn:hover { transform: translateY(-2px); box-shadow: var(--mp-shadow); text-decoration: none; }
.mp-btn--primary { background: var(--mp-green-900); color: #fff; }
.mp-btn--secondary { background: #fff; color: var(--mp-green-800); }
.mp-btn--outline { background: transparent; border: 2px solid var(--mp-green-800); color: var(--mp-green-800); }
.mp-hero__visual {
  position: relative;
  text-align: center;
}
.mp-hero__visual img {
  /* max-width: 100%;
  max-height: 320px; */
  border-radius: var(--mp-radius);
  object-fit: contain;
  position: absolute;
    width: 343px;
    top: -250px;
    left: 100px;
}
@media (max-width: 768px) {
  .mp-hero__visual img {
    width: 50%;
    top: -8px;
    right: -75px;
    left: auto;
  }
}
@media (max-width: 575px) {
  .mp-hero__visual img {
    width: 50%;
    top: -8px;
    right: -75px;
    left: auto;
  }
}

/* Category pills */
.mp-categories {
  margin-top: -32px;
  position: relative;
  z-index: 2;
  padding-bottom: 24px;
}
.mp-categories__scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 16px;
  scrollbar-width: thin;
}
.mp-cat-pill {
  flex: 0 0 auto;
  text-align: center;
  text-decoration: none;
  color: var(--mp-text);
  width: 100px;
}
.mp-cat-pill__img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--mp-shadow);
  margin: 0 auto 10px;
  display: block;
  background: #fff;
}
.mp-cat-pill span {
  font-size: 12px;
  font-weight: 600;
  display: block;
  line-height: 1.3;
}

/* Product cards */
.mp-listing-section { padding-bottom: 40px; }
.mp-listing-count {
  color: var(--mp-muted);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 16px;
}
.mp-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.mp-infinite-sentinel {
  height: 1px;
  width: 100%;
  margin: 0;
}
.mp-infinite-status,
.mp-infinite-end {
  text-align: center;
  color: var(--mp-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 20px 0 8px;
  min-height: 48px;
}
.mp-infinite-status:empty { display: none; }
.mp-product-card {
  background: #fff;
  border-radius: var(--mp-radius);
  overflow: hidden;
  box-shadow: var(--mp-shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.mp-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mp-shadow-lg);
}
.mp-product-card__img {
  aspect-ratio: 1;
  background: #f1f5f9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mp-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.mp-product-card__img--placeholder img {
  width: auto;
  height: auto;
  max-width: 55%;
  max-height: 55%;
  object-fit: contain;
  padding: 16px;
}
.mp-pdp__image-card--placeholder img {
  max-width: 280px;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.mp-card-img-fallback {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-color: #f1f5f9 !important;
}
.mp-product-card__sale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--mp-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--mp-radius-pill);
}
.mp-product-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.mp-product-card__name {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.35;
  min-height: 2.7em;
}
.mp-product-card__name a { color: inherit; text-decoration: none; }
.mp-product-card__price { margin-top: auto; }
.mp-product-card__price .old {
  text-decoration: line-through;
  color: var(--mp-muted);
  font-size: 13px;
  margin-right: 6px;
}
.mp-product-card__price .now {
  font-weight: 800;
  color: var(--mp-green-700);
  font-size: 1.1rem;
}
.mp-product-card__btn {
  margin-top: 12px;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: var(--mp-green-600);
  color: #fff !important;
  border-radius: var(--mp-radius-sm);
  font-weight: 700;
  font-size: 13px;
  border: none;
  text-decoration: none;
  display: block;
}
.mp-product-card__btn:hover { background: var(--mp-green-800); color: #fff; }

/* Promo banners */
.mp-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) { .mp-promo-grid { grid-template-columns: 1fr; } }
.mp-promo-card {
  border-radius: var(--mp-radius);
  padding: 28px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  transition: transform .2s;
}
.mp-promo-card:hover { transform: scale(1.02); text-decoration: none; color: inherit; }
.mp-promo-card--yellow { background: var(--mp-yellow); }
.mp-promo-card--orange { background: linear-gradient(135deg, #fed7aa, var(--mp-orange)); color: #fff; }
.mp-promo-card h3 { font-weight: 800; margin: 0 0 8px; font-size: 1.25rem; }

/* Brands */
.mp-brands {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 0;
}
.mp-brand-item {
  flex: 0 0 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid var(--mp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--mp-shadow);
}
.mp-brand-item img { max-width: 70%; max-height: 70%; object-fit: contain; }

/* Trust row */
.mp-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .mp-trust-row { grid-template-columns: 1fr; } }
.mp-trust-card {
  border-radius: var(--mp-radius);
  padding: 24px;
  text-align: center;
  font-weight: 700;
}
.mp-trust-card--green { background: var(--mp-green-100); color: var(--mp-green-800); }
.mp-trust-card--blue { background: var(--mp-blue); color: #0369a1; }
.mp-trust-card--lime { background: var(--mp-lime-bright); color: var(--mp-green-900); }

/* Testimonials */
.mp-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.mp-testimonial {
  background: #fff;
  border-radius: var(--mp-radius);
  padding: 24px;
  box-shadow: var(--mp-shadow);
}
.mp-testimonial__stars { color: #fbbf24; margin-bottom: 12px; }
.mp-testimonial__text { font-size: 14px; color: var(--mp-muted); margin-bottom: 16px; line-height: 1.6; }
.mp-testimonial__author { font-weight: 700; font-size: 14px; }

/* FAQ */
.mp-faq .card {
  border: none;
  border-radius: var(--mp-radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.mp-faq .card-header {
  background: #fff;
  border: none;
  padding: 0;
}
.mp-faq .btn-link {
  width: 100%;
  text-align: left;
  font-weight: 600;
  padding: 16px 20px;
  text-decoration: none;
}
.mp-faq .btn-link:hover { color: var(--mp-green-700); }
.mp-faq .card-body {
  background: var(--mp-green-50);
  border-top: 1px solid var(--mp-border);
}

/* App CTA */
.mp-app-cta {
  background: #fff;
  border-radius: var(--mp-radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--mp-shadow-lg);
}
@media (max-width: 768px) { .mp-app-cta { grid-template-columns: 1fr; } }
.mp-app-cta__content { padding: 40px; }
.mp-app-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.mp-app-badges img { height: 44px; }

/* ——— Site footer ——— */
#footer.mp-footer,
body.mp-v2 #footer.mp-footer {
  margin-top: 48px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
#footer.mp-footer .site-footer,
#footer.mp-footer .mp-footer__inner {
  background: var(--mp-forest) !important;
  color: #e2e8f0;
  border-top: none !important;
  padding: 0 !important;
}
#footer.mp-footer .mp-footer__accent {
  height: 4px;
  background: linear-gradient(90deg, var(--mp-spring), var(--mp-green-500), var(--mp-spring));
}
#footer.mp-footer .mp-footer__inner {
  padding: 48px 0 32px !important;
}
#footer.mp-footer .mp-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.15fr;
  gap: 36px 28px;
}
@media (max-width: 991px) {
  #footer.mp-footer .mp-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  #footer.mp-footer .mp-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
#footer.mp-footer .mp-footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}
#footer.mp-footer .mp-footer__logo img {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
}
#footer.mp-footer .mp-footer__tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .78);
  margin: 0 0 20px;
  max-width: 320px;
}
#footer.mp-footer .mp-footer__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#footer.mp-footer .mp-footer__trust li {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  gap: 8px;
}
#footer.mp-footer .mp-footer__trust i {
  color: var(--mp-spring);
  font-size: 14px;
}
#footer.mp-footer .mp-footer__title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--mp-spring);
  margin: 0 0 16px;
}
#footer.mp-footer .mp-footer__links,
#footer.mp-footer .mp-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#footer.mp-footer .mp-footer__links li,
#footer.mp-footer .mp-footer__contact-list li {
  margin-bottom: 10px;
}
#footer.mp-footer .mp-footer__links a,
#footer.mp-footer .mp-footer__contact-list a {
  color: rgba(255, 255, 255, .85) !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
#footer.mp-footer .mp-footer__links a:hover,
#footer.mp-footer .mp-footer__contact-list a:hover {
  color: var(--mp-spring) !important;
}
#footer.mp-footer .mp-footer__contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
#footer.mp-footer .mp-footer__contact-list i {
  color: var(--mp-spring);
  width: 18px;
  text-align: center;
}
#footer.mp-footer .mp-footer__social {
  margin-top: 20px;
}
#footer.mp-footer .mp-footer__social-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 10px;
}
#footer.mp-footer .mp-footer__social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#footer.mp-footer .mp-footer__social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  transition: background .2s, transform .2s;
}
#footer.mp-footer .mp-footer__social-icons a:hover {
  background: var(--mp-spring);
  color: var(--mp-forest) !important;
  transform: translateY(-2px);
}
#footer.mp-footer .mp-footer__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
@media (max-width: 767px) {
  #footer.mp-footer .mp-footer__strip {
    grid-template-columns: 1fr;
  }
}
#footer.mp-footer .mp-footer__strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}
#footer.mp-footer .mp-footer__strip-item i {
  font-size: 20px;
  color: var(--mp-spring);
  flex-shrink: 0;
}
#footer.mp-footer .mp-footer__strip-item strong {
  color: var(--mp-spring);
}
#footer.mp-footer .mp-footer__bottom {
  background: #081a0c !important;
  padding: 18px 0 !important;
  margin-top: 0 !important;
  border-radius: 0 !important;
}
#footer.mp-footer .mp-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
#footer.mp-footer .mp-footer__copy {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
}
#footer.mp-footer .mp-footer__copy a {
  color: var(--mp-spring) !important;
  font-weight: 700;
  text-decoration: none;
}
#footer.mp-footer .mp-footer__copy a:hover {
  text-decoration: underline;
}
#footer.mp-footer .mp-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
#footer.mp-footer .mp-footer__legal a {
  color: rgba(255, 255, 255, .7) !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
#footer.mp-footer .mp-footer__legal a:hover {
  color: var(--mp-spring) !important;
}
/* Override legacy Belle footer rules */
#footer.mp-footer .footer-top,
#footer.mp-footer hr {
  display: none !important;
}
#footer.mp-footer .footer-bottom .row {
  display: none !important;
}
body.mp-v2 .header-wrap .logo.col-md-2 { display: none !important; }
body.mp-v2 .header-wrap .site-header__search { display: none !important; }

/* Hide old homepage clutter on v2 */
body.mp-v2 #page-content > .newsletter-section-search:first-child { display: none; }
body.mp-v2 .collection-box.section:first-of-type { display: none; }

/* Trending filter wrappers participate in grid */
.mp-trending-item { display: contents; }

/* Product slider override */
body.mp-v2 .productSlider .item { padding: 8px; }

/* Scroll horizontal deals */
.mp-scroll-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}
.mp-scroll-row .mp-product-card { flex: 0 0 220px; scroll-snap-align: start; }

/* Tabs */
.mp-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.mp-tab {
  padding: 10px 20px;
  border-radius: var(--mp-radius-pill);
  border: 2px solid var(--mp-border);
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
}
.mp-tab.active, .mp-tab:hover {
  border-color: var(--mp-green-600);
  background: var(--mp-green-600);
  color: #fff;
}

/* Feature highlight */
.mp-feature-banner {
  background: linear-gradient(90deg, var(--mp-blue), #e0f2fe);
  border-radius: var(--mp-radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 768px) { .mp-feature-banner { grid-template-columns: 1fr; } }
.mp-checklist { list-style: none; padding: 0; margin: 16px 0; }
.mp-checklist li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-weight: 500;
}
.mp-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mp-green-600);
  font-weight: 800;
}

/* ——— Enhanced hero ——— */
.mp-hero--enhanced {
  background: linear-gradient(160deg, var(--mp-spring) 0%, #c8f07a 40%, #8ed96a 100%);
  padding: 48px 0 72px;
  border-radius: 0 0 32px 32px;
}
.mp-hero__stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0 24px;
}
.mp-hero__stats div {
  background: rgba(255,255,255,.85);
  padding: 10px 16px;
  border-radius: var(--mp-radius-sm);
  min-width: 100px;
}
.mp-hero__stats strong { display: block; font-size: 1.1rem; color: var(--mp-green-900); }
.mp-hero__stats span { font-size: 11px; color: var(--mp-muted); font-weight: 600; }
.mp-btn--ghost {
  background: rgba(255,255,255,.35);
  color: var(--mp-green-900);
  border: 2px solid rgba(255,255,255,.6);
}
.mp-btn--ghost:hover { background: #fff; color: var(--mp-green-800); }
.mp-hero__card {
  /* background: #fff; */
  border-radius: 24px;
  /* padding: 24px; */
  /* box-shadow: var(--mp-shadow-lg); */
  display: inline-block;
}
/* .mp-hero__card img { max-height: 280px; width: 100%; object-fit: contain; } */

/* Hide any leftover legacy header fragments */
body.mp-v2 .notification-bar,
body.mp-v2 .top-header.home15-funiture-top,
body.mp-v2 .mp-legacy-only {
  display: none !important;
}

/* ——— Inner page header ——— */
.mp-page-header {
  background: linear-gradient(180deg, var(--mp-green-50) 0%, #f8fafc 100%);
  padding: 28px 0 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--mp-border);
}
.mp-page-header__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  margin: 12px 0 0;
  color: var(--mp-green-900);
}
.mp-page-header__sub { color: var(--mp-muted); margin: 8px 0 0; }
.mp-breadcrumb {
  font-size: 14px;
  color: var(--mp-muted);
}
.mp-breadcrumb a { color: var(--mp-green-700); font-weight: 600; text-decoration: none; }
.mp-breadcrumb a:hover { text-decoration: underline; }
.mp-breadcrumb__sep { margin: 0 8px; opacity: .5; }

body.mp-v2 .bredcrumbWrap {
  background: linear-gradient(180deg, var(--mp-green-50) 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--mp-border);
  padding: 24px 0 20px;
  margin-bottom: 28px;
}
body.mp-v2 .bredcrumbWrap .page-title .page-width,
body.mp-v2 .bredcrumbWrap .page-title h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--mp-green-900);
  font-size: clamp(1.4rem, 3vw, 2rem);
}
body.mp-v2 .breadcrumbs {
  font-size: 14px;
  color: var(--mp-muted);
}
body.mp-v2 .breadcrumbs a {
  color: var(--mp-green-700);
  font-weight: 600;
}

/* ——— Page content shell ——— */
body.mp-v2 #page-content {
  padding-bottom: 48px;
}
body.mp-v2 .container {
  max-width: 1200px;
}

/* ——— Product listing (category, sale, search) ——— */
body.mp-v2 .grid-products .item,
body.mp-v2 .productList .item {
  margin-bottom: 24px;
}
body.mp-v2 .grid-products .product-image.card-img,
body.mp-v2 .card-img {
  border-radius: var(--mp-radius);
  background-color: #fff !important;
  border: 1px solid var(--mp-border);
  box-shadow: var(--mp-shadow);
  transition: transform .2s, box-shadow .2s;
}
body.mp-v2 .grid-products .item:hover .card-img,
body.mp-v2 .product-image.card-img:hover {
  transform: translateY(-4px);
  box-shadow: var(--mp-shadow-lg);
}
body.mp-v2 .addtocart,
body.mp-v2 .btn.addtocart {
  background: var(--mp-green-600) !important;
  border: none !important;
  border-radius: var(--mp-radius-sm) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 10px 16px !important;
  width: 100%;
  margin-top: 8px;
}
body.mp-v2 .addtocart:hover,
body.mp-v2 .btn.addtocart:hover {
  background: var(--mp-green-800) !important;
}
body.mp-v2 .product-details .price,
body.mp-v2 .product-price .price {
  color: var(--mp-green-700) !important;
  font-weight: 800 !important;
}
body.mp-v2 .product-details .old-price,
body.mp-v2 .old-price {
  color: var(--mp-muted) !important;
}
body.mp-v2 .maincatehd,
body.mp-v2 .section-header .h2 {
  font-weight: 800;
  color: var(--mp-green-900);
}

/* ——— Product detail page ——— */
body.mp-v2 .product-single__title {
  font-weight: 800;
  color: var(--mp-green-900);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}
body.mp-v2 .product-single__meta {
  background: #fff;
  border-radius: var(--mp-radius);
  padding: 28px;
  box-shadow: var(--mp-shadow);
}
body.mp-v2 .product-template__container {
  margin-top: 0 !important;
}
body.mp-v2 .btn--secondary,
body.mp-v2 .btn.btn--secondary {
  background: var(--mp-green-600) !important;
  border-color: var(--mp-green-600) !important;
  color: #fff !important;
  border-radius: var(--mp-radius-pill) !important;
  font-weight: 700;
  padding: 12px 28px;
}
body.mp-v2 .btn--secondary:hover {
  background: var(--mp-green-800) !important;
}

/* ——— Forms (login, register, contact, checkout) ——— */
body.mp-v2 .form-control,
body.mp-v2 input[type="text"],
body.mp-v2 input[type="email"],
body.mp-v2 input[type="password"],
body.mp-v2 input[type="tel"],
body.mp-v2 textarea,
body.mp-v2 select {
  border-radius: var(--mp-radius-sm) !important;
  border: 2px solid var(--mp-border) !important;
  padding: 12px 16px !important;
}
body.mp-v2 .form-control:focus,
body.mp-v2 input:focus,
body.mp-v2 textarea:focus {
  border-color: var(--mp-green-500) !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .15) !important;
}
body.mp-v2 .btn:not(.mp-btn):not(.close-announcement),
body.mp-v2 input[type="submit"].btn {
  border-radius: var(--mp-radius-pill);
  font-weight: 700;
}
body.mp-v2 .zxczxc,
body.mp-v2 input[type="submit"] {
  background: var(--mp-green-600) !important;
  border: none !important;
  color: #fff !important;
}
body.mp-v2 .zxczxc:hover {
  background: var(--mp-green-800) !important;
}

/* ——— Cart & tables ——— */
body.mp-v2 .cart table,
body.mp-v2 table.table {
  background: #fff;
  border-radius: var(--mp-radius);
  overflow: hidden;
  box-shadow: var(--mp-shadow);
}
body.mp-v2 .cart th {
  background: var(--mp-green-900);
  color: #fff;
}

/* ——— FAQ accordion ——— */
body.mp-v2 .faq-body .panel-title,
body.mp-v2 #accordionExample .card-header {
  border-radius: var(--mp-radius-sm);
}
body.mp-v2 .faq-body {
  margin-bottom: 10px;
}

/* ——— Alerts ——— */
body.mp-v2 .alert-success {
  background: var(--mp-green-50);
  border-color: var(--mp-green-400);
  color: var(--mp-green-900);
  border-radius: var(--mp-radius-sm);
}

/* ——— Join us / services ——— */
body.mp-v2 .joinus {
  background: var(--mp-green-600) !important;
  border-radius: var(--mp-radius-pill) !important;
  padding: 12px 24px !important;
}
body.mp-v2 #footer .contact-box img {
  filter: brightness(0) invert(1);
  opacity: .95;
}

/* ——— Mobile nav ——— */
body.mp-v2 .mobile-nav-wrapper {
  background: #fff;
}
body.mp-v2 .header-wrap {
  padding: 0 !important;
}

/* ——— Content cards ——— */
body.mp-v2 .box,
body.mp-v2 .blog--list-view .box {
  border-radius: var(--mp-radius);
  border: 1px solid var(--mp-border);
}

/* ——— Hide duplicate search on inner pages when v2 header shows ——— */
body.mp-v2 .newsletter-section-search { display: none; }

/* ——— Section spacing polish ——— */
body.mp-v2 .mp-section + .mp-section { border-top: none; }

/* ——— Homepage about section ——— */
.mp-home-about {
  padding-top: 56px;
  padding-bottom: 56px;
}
.mp-home-about.appear {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.mp-home-about.appear.inview {
  opacity: 1;
  transform: none;
}
.mp-home-about__intro {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}
.mp-home-about__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mp-green-700);
  background: var(--mp-green-50);
  border: 1px solid var(--mp-green-200);
  border-radius: var(--mp-radius-pill);
  padding: 6px 14px;
  margin-bottom: 16px;
}
.mp-home-about__title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--mp-green-900);
  margin: 0 0 16px;
}
.mp-home-about__brand--green { color: var(--mp-green-700); }
.mp-home-about__brand--accent { color: #8f163f; }
.mp-home-about__lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--mp-muted);
  margin: 0 0 24px;
}
.mp-home-about__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}
.mp-home-about__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mp-green-800);
}
.mp-home-about__highlights i {
  color: var(--mp-spring);
  background: var(--mp-forest);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.mp-home-about__more {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.55s ease, opacity 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}
.mp-home-about.is-expanded .mp-home-about__more {
  max-height: 4000px;
  opacity: 1;
  margin-top: 12px;
}
.mp-home-about__block {
  margin-bottom: 36px;
}
.mp-home-about__block--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .mp-home-about__block--split {
    grid-template-columns: 1fr;
  }
}
.mp-home-about__heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--mp-green-900);
  margin: 0 0 20px;
  text-align: center;
}
.mp-home-about__grid {
  display: grid;
  gap: 20px;
}
.mp-home-about__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.mp-home-about__grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 991px) {
  .mp-home-about__grid--3 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .mp-home-about__grid--2 {
    grid-template-columns: 1fr;
  }
}
.mp-home-about__card {
  background: #fff;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius);
  padding: 24px 22px;
  box-shadow: var(--mp-shadow);
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mp-home-about__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mp-shadow-lg);
}
.mp-home-about__card-icon {
  font-size: 28px;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.mp-home-about__card h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--mp-green-900);
  margin: 0 0 10px;
}
.mp-home-about__card > p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--mp-muted);
  margin: 0 0 14px;
}
.mp-home-about__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mp-home-about__card li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--mp-green-800);
  margin-bottom: 8px;
  line-height: 1.45;
}
.mp-home-about__card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mp-spring);
}
.mp-home-about__panel {
  background: var(--mp-green-50);
  border: 1px solid var(--mp-green-200);
  border-radius: var(--mp-radius);
  padding: 24px;
  height: 100%;
}
.mp-home-about__panel h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--mp-green-900);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mp-home-about__panel h4 i {
  color: var(--mp-green-700);
  font-size: 20px;
}
.mp-home-about__panel p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mp-muted);
  margin: 0;
}
.mp-home-about__checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mp-home-about__checklist li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--mp-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--mp-green-200);
}
.mp-home-about__checklist li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.mp-home-about__checklist strong {
  color: var(--mp-green-900);
}
.mp-home-about__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: mp-about-step;
}
.mp-home-about__steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--mp-green-200);
}
.mp-home-about__steps li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.mp-home-about__steps li span {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mp-forest);
  color: var(--mp-spring);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-home-about__steps li div {
  font-size: 14px;
  line-height: 1.5;
  color: var(--mp-muted);
}
.mp-home-about__steps li strong {
  display: block;
  color: var(--mp-green-900);
  margin-bottom: 2px;
}
.mp-home-about__cta {
  text-align: center;
  background: linear-gradient(135deg, var(--mp-forest) 0%, #1a4d28 100%);
  color: #fff;
  border-radius: var(--mp-radius);
  padding: 36px 28px;
  margin-top: 8px;
}
.mp-home-about__cta h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: #fff;
}
.mp-home-about__cta p {
  font-size: 15px;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 22px;
  line-height: 1.55;
}
.mp-home-about__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.mp-home-about__cta .mp-btn--primary {
  background: var(--mp-spring);
  color: var(--mp-forest);
}
.mp-home-about__cta .mp-btn--primary:hover {
  background: #c8f07a;
  color: var(--mp-forest);
}
.mp-home-about__cta .mp-btn--outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.mp-home-about__cta .mp-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.mp-home-about__toggle-wrap {
  text-align: center;
  margin-top: 28px;
  padding-top: 8px;
  position: relative;
}
.mp-home-about__toggle-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 640px);
  height: 48px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s;
}
.mp-home-about.is-expanded .mp-home-about__toggle-wrap::before {
  opacity: 0;
}
.mp-home-about__toggle {
  min-width: 160px;
  justify-content: center;
}
.mp-home-about.is-expanded .mp-home-about__toggle i.toggle-icon {
  transform: rotate(180deg);
}

body.mp-v2 .section { padding: 40px 0; }

body.mp-v2 .mp-main-nav #siteNav > li > a {
  color: #fff !important;
  font-weight: 600 !important;
  text-transform: none !important;
}
body.mp-v2 .mp-main-nav .dropdown {
  background: #fff;
  border-radius: var(--mp-radius-sm);
  box-shadow: var(--mp-shadow-lg);
}

/* Bento blocks */
.mp-bento {
  border-radius: 24px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .2s, box-shadow .2s;
}
.mp-bento:hover {
  transform: translateY(-3px);
  box-shadow: var(--mp-shadow-lg);
  text-decoration: none;
  color: inherit;
}
.mp-bento--peach { background: #f9c7a1; color: var(--mp-forest); }
.mp-bento--yellow { background: var(--mp-yellow); }
.mp-bento--category {
  background: #fff;
  padding: 16px;
  text-align: center;
  box-shadow: var(--mp-shadow);
}
.mp-bento--category img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 12px;
}
.mp-bento--category span { font-weight: 700; color: var(--mp-forest); }

.mp-category-bento {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

/* Hero reference layout */
.mp-hero--enhanced .mp-hero__title {
  font-size: clamp(3rem, 10vw, 5.5rem);
  letter-spacing: -0.03em;
}
.mp-hero__float-card {
  position: absolute;
  right: 8%;
  bottom: 12%;
  max-width: 220px;
  z-index: 2;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px !important;
  transition: transform .2s, box-shadow .2s;
}
.mp-hero__float-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--mp-shadow-lg);
  text-decoration: none;
  color: inherit;
}
.mp-hero__float-card--appointment strong {
  font-size: 15px;
  line-height: 1.25;
  color: var(--mp-forest);
}
.mp-hero__float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--mp-green-800);
  margin-bottom: 4px;
}
.mp-hero__float-card-sub {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
}
.mp-hero__float-card-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: var(--mp-radius-pill);
  background: #25d366;
  color: #fff !important;
}
.mp-hero__float-card-wa .fa {
  font-size: 14px;
}
.mp-hero__actions-appt {
  margin-left: 0;
}
@media (max-width: 991px) {
  .mp-hero__float-card {
    position: static;
    max-width: none;
    margin-top: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
  }
  .mp-hero__float-card-icon {
    margin-bottom: 0;
  }
  .mp-hero__float-card-wa {
    margin-top: 0;
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  .mp-hero__float-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .mp-hero__float-card-wa {
    margin-left: 0;
    justify-content: center;
  }
  .mp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}

/* Book appointment page */
.mp-appointment-page {
  padding-bottom: 48px;
}
.mp-appointment-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
  padding-bottom: 32px;
}
@media (max-width: 991px) {
  .mp-appointment-layout {
    grid-template-columns: 1fr;
  }
}
.mp-appointment-card {
  background: #fff;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius);
  padding: 28px;
  box-shadow: var(--mp-shadow);
}
.mp-appointment-card__doctor {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--mp-border);
}
.mp-appointment-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mp-green-100), var(--mp-green-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--mp-green-900);
  flex-shrink: 0;
}
.mp-appointment-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--mp-green-900);
}
.mp-appointment-card__lead {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--mp-muted);
}
.mp-appointment-card__phone {
  font-weight: 700;
  color: var(--mp-green-800);
  text-decoration: none;
  font-size: 15px;
}
.mp-appointment-card__phone:hover {
  color: var(--mp-green-900);
}
.mp-appointment-alert {
  padding: 12px 16px;
  border-radius: var(--mp-radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
}
.mp-appointment-alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.mp-appointment-form__hint {
  font-size: 14px;
  color: var(--mp-muted);
  margin: 0 0 20px;
  line-height: 1.5;
}
.mp-appointment-form__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--mp-text);
}
.mp-appointment-form input[type="text"],
.mp-appointment-form input[type="tel"] {
  width: 100%;
  border: 2px solid var(--mp-border);
  border-radius: var(--mp-radius-sm);
  padding: 12px 14px;
  font-size: 16px;
  margin-bottom: 16px;
}
.mp-appointment-form input:focus {
  outline: none;
  border-color: var(--mp-green-500);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}
.mp-appointment-form__actions {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.mp-appointment-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--mp-radius-pill);
  cursor: pointer;
}
.mp-appointment-form__quick {
  font-size: 13px;
  font-weight: 600;
  color: var(--mp-green-700);
}
.mp-appointment-aside {
  background: var(--mp-green-50);
  border: 1px solid var(--mp-green-100);
  border-radius: var(--mp-radius);
  padding: 24px;
}
.mp-appointment-aside__title {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--mp-green-900);
}
.mp-appointment-aside__steps {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.mp-appointment-aside__steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--mp-text);
  margin-bottom: 12px;
}
.mp-appointment-aside__steps li span {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--mp-green-700);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-appointment-aside__note {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--mp-muted);
  padding-top: 16px;
  border-top: 1px solid var(--mp-green-200);
}
.mp-appointment-aside__note a {
  color: var(--mp-green-700);
  font-weight: 600;
}

.mp-hero__visual { position: relative; }
.mp-btn--dark {
  background: var(--mp-forest);
  color: #fff;
}

/* Product card — reference style with + button */
.mp-product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.mp-product-card__add-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--mp-forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.mp-product-card__add-icon:hover {
  background: var(--mp-green-600);
  color: #fff;
}
.mp-product-card__quick {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(13, 42, 20, .85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  opacity: 0;
  transition: opacity .2s;
}
.mp-product-card:hover .mp-product-card__quick { opacity: 1; }
.mp-product-card__btn { display: none; }

.mp-listing-section { padding-bottom: 48px; }
.mp-empty-state {
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border-radius: var(--mp-radius);
  box-shadow: var(--mp-shadow);
}

/* Content pages */
.mp-content-shell {
  padding-bottom: 48px;
}
body.mp-v2 .mp-content-shell .create-ac-content,
body.mp-v2 .mp-content-shell .formFeilds,
body.mp-v2 .mp-bento.mp-content-shell {
  background: #fff;
  border-radius: var(--mp-radius);
  padding: 28px;
  box-shadow: var(--mp-shadow);
  margin-bottom: 32px;
}

/* ——— Product detail page (PDP) ——— */
.mp-pdp {
  padding: 16px 15px 48px;
}
.mp-pdp__breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
}
.mp-pdp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 991px) {
  .mp-pdp__grid { grid-template-columns: 1fr; }
}
.mp-pdp__image-card {
  position: relative;
  background: linear-gradient(160deg, #e8f5e9 0%, #f0f9ff 55%, #fff 100%);
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: var(--mp-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.mp-pdp__image-card img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}
.mp-pdp__badge-sale {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--mp-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--mp-radius-pill);
}
.mp-pdp__trust {
  margin-top: 20px;
  background: #fff;
  border: 1px solid var(--mp-border);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: var(--mp-shadow);
}
.mp-pdp__trust-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--mp-green-900);
  margin: 0 0 12px;
}
.mp-pdp__trust-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.mp-pdp__trust-list li {
  font-size: 14px;
  color: var(--mp-text);
  padding: 6px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.mp-pdp__trust-list i { color: var(--mp-green-600); margin-top: 2px; }
.mp-pdp__trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mp-pdp__trust-badges span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--mp-green-50);
  color: var(--mp-green-800);
  padding: 8px 14px;
  border-radius: var(--mp-radius-pill);
  border: 1px solid var(--mp-green-100);
}
.mp-pdp__buy {
  background: #fff;
  border-radius: 24px;
  padding: 28px 28px 32px;
  box-shadow: var(--mp-shadow-lg);
  border: 1px solid var(--mp-border);
}
.mp-pdp__brand {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
}
.mp-pdp__brand a {
  color: var(--mp-green-700);
  text-decoration: none;
}
.mp-pdp__brand a:hover { text-decoration: underline; }
.mp-pdp__title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--mp-green-900);
  margin: 0 0 14px;
  line-height: 1.2;
  text-transform: none;
}
.mp-pdp__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}
.mp-pdp__stock {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--mp-radius-pill);
}
.mp-pdp__stock--in {
  background: var(--mp-green-50);
  color: var(--mp-green-800);
}
.mp-pdp__stock--out {
  background: #fef2f2;
  color: #b91c1c;
}
.mp-pdp__unit {
  font-size: 13px;
  color: var(--mp-muted);
  font-weight: 600;
}
.mp-pdp__price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin-bottom: 20px;
}
.mp-pdp__price-old {
  font-size: 1.1rem;
  color: var(--mp-muted);
  text-decoration: line-through;
}
.mp-pdp__price-now {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--mp-green-700);
}
.mp-pdp__price-save {
  font-size: 13px;
  font-weight: 700;
  color: var(--mp-maroon);
  background: #fff1f2;
  padding: 4px 10px;
  border-radius: var(--mp-radius-pill);
}
.mp-pdp__benefits {
  background: var(--mp-green-50);
  border: 1px solid var(--mp-green-100);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 24px;
}
.mp-pdp__benefits-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--mp-green-900);
  margin: 0 0 10px;
}
.mp-pdp__benefits ul {
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 14px;
  color: var(--mp-text);
  line-height: 1.5;
}
.mp-pdp__benefits li { margin-bottom: 6px; }
.mp-pdp__qty-fieldset {
  border: none;
  margin: 0 0 20px;
  padding: 0;
}
.mp-pdp__qty-legend {
  font-size: 14px;
  font-weight: 700;
  color: var(--mp-text);
  margin-bottom: 12px;
}
.mp-pdp__qty-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 480px) {
  .mp-pdp__qty-options { grid-template-columns: 1fr; }
}
.mp-pdp__qty-card {
  cursor: pointer;
  margin: 0;
}
.mp-pdp__qty-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.mp-pdp__qty-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 10px;
  border: 2px solid var(--mp-border);
  border-radius: 16px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s, background .2s;
  min-height: 100%;
}
.mp-pdp__qty-card.is-active .mp-pdp__qty-card-inner,
.mp-pdp__qty-radio:checked + .mp-pdp__qty-card-inner {
  border-color: var(--mp-green-600);
  background: var(--mp-green-50);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .12);
}
.mp-pdp__qty-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--mp-green-900);
}
.mp-pdp__qty-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--mp-muted);
}
.mp-pdp__qty-unit {
  font-size: 11px;
  color: var(--mp-muted);
  margin-top: 4px;
}
.mp-pdp__qty-total {
  font-size: 13px;
  font-weight: 800;
  color: var(--mp-green-700);
  margin-top: 6px;
}
.mp-pdp__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mp-pdp__cta {
  width: 100%;
  border: none;
  border-radius: var(--mp-radius-pill);
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background .2s, transform .15s;
}
.mp-pdp__cta.mp-btn--primary,
.mp-pdp__cta {
  background: var(--mp-green-600);
  color: #fff;
}
.mp-pdp__cta:hover {
  background: var(--mp-green-800);
  color: #fff;
  transform: translateY(-1px);
}
.mp-pdp__cta-secondary {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--mp-radius-pill);
  border: 2px solid var(--mp-green-600);
  color: var(--mp-green-800);
  font-weight: 700;
  text-decoration: none;
  background: #fff;
}
.mp-pdp__cta-secondary:hover {
  background: var(--mp-green-50);
  color: var(--mp-green-900);
}
.mp-pdp__cta-whatsapp {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--mp-radius-pill);
  background: #111;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.mp-pdp__cta-whatsapp:hover {
  background: #333;
  color: #fff;
}
.mp-pdp__unavailable {
  color: var(--mp-muted);
  font-size: 15px;
  margin: 0;
}
.mp-pdp__details {
  margin-top: 40px;
}
.mp-pdp__accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mp-pdp__acc-item {
  background: #fff;
  border: 1px solid var(--mp-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--mp-shadow);
}
.mp-pdp__acc-head {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-weight: 800;
  font-size: 15px;
  color: var(--mp-green-900);
  cursor: pointer;
  user-select: none;
}
.mp-pdp__acc-head::-webkit-details-marker { display: none; }
.mp-pdp__acc-icon::before {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--mp-green-600);
}
.mp-pdp__acc-item[open] .mp-pdp__acc-icon::before { content: '−'; }
.mp-pdp__acc-body {
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--mp-text);
  border-top: 1px solid var(--mp-border);
}
.mp-pdp__acc-item[open] .mp-pdp__acc-body { padding-top: 18px; }
.mp-pdp__specs {
  margin: 0;
  display: grid;
  gap: 12px;
}
.mp-pdp__specs div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  font-size: 14px;
}
.mp-pdp__specs dt {
  font-weight: 700;
  color: var(--mp-muted);
  margin: 0;
}
.mp-pdp__specs dd { margin: 0; }
.mp-pdp__specs a {
  color: var(--mp-green-700);
  font-weight: 600;
  text-decoration: none;
}
body.mp-v2.template-product #page-content {
  background: linear-gradient(180deg, var(--mp-green-50) 0%, #f8fafc 120px, #f8fafc 100%);
}
body.mp-v2.template-product .mp-page-header {
  display: none;
}
body.mp-v2 .mp-pdp .product-description img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* PDP alerts */
.mp-pdp-alert {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.mp-pdp-alert--success {
  background: var(--mp-green-50);
  color: var(--mp-green-800);
  border: 1px solid var(--mp-green-100);
}
.mp-pdp-alert--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Reviews summary */
.mp-pdp__reviews-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.mp-pdp__stars {
  color: #ff9500;
  font-size: 15px;
  letter-spacing: 1px;
}
.mp-pdp__stars--sm { font-size: 13px; }
.mp-pdp__review-link {
  font-size: 14px;
  color: var(--mp-muted);
  text-decoration: none;
}
.mp-pdp__review-link:hover { color: var(--mp-green-700); text-decoration: underline; }
.mp-pdp__review-link strong { color: var(--mp-green-900); }

/* Manual quantity */
.mp-pdp__qty-manual {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.mp-pdp__qty-manual-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--mp-muted);
}
.mp-pdp__qty-field {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--mp-border);
  border-radius: var(--mp-radius-pill);
  overflow: hidden;
  background: #fff;
}
.mp-pdp__qty-field .qtyBtn {
  border: none;
  background: var(--mp-green-50);
  color: var(--mp-green-800);
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-pdp__qty-field .qtyBtn:hover { background: var(--mp-green-100); }
.mp-pdp__qty-field .qty {
  width: 64px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 800;
  color: var(--mp-green-900);
  padding: 10px 4px;
  -moz-appearance: textfield;
}
.mp-pdp__qty-field .qty::-webkit-outer-spin-button,
.mp-pdp__qty-field .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* WhatsApp actions */
.mp-pdp__wa-row {
  display: grid;
  gap: 10px;
}
.mp-pdp__cta-discuss {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--mp-radius-pill);
  border: 2px solid #25d366;
  color: #128c7e;
  font-weight: 700;
  text-decoration: none;
  background: #f0fdf4;
}
.mp-pdp__cta-discuss:hover {
  background: #dcfce7;
  color: #0d2a14;
}
.mp-pdp__cta-discuss .fa,
.mp-pdp__cta-whatsapp .fa { font-size: 20px; }

/* Bulk quotation */
.mp-pdp__bulk-card {
  margin-top: 28px;
  padding: 22px;
  background: linear-gradient(135deg, #f8fafc 0%, var(--mp-green-50) 100%);
  border: 1px solid var(--mp-border);
  border-radius: 20px;
}
.mp-pdp__bulk-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--mp-green-900);
  margin: 0 0 6px;
}
.mp-pdp__bulk-sub {
  font-size: 14px;
  color: var(--mp-muted);
  margin: 0 0 16px;
}
.mp-pdp__bulk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .mp-pdp__bulk-grid { grid-template-columns: 1fr; }
}
.mp-pdp__bulk-form input,
.mp-pdp__bulk-form textarea {
  width: 100%;
  border: 2px solid var(--mp-border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}
.mp-pdp__bulk-form textarea { margin-bottom: 12px; resize: vertical; }
.mp-pdp__bulk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mp-pdp__bulk-submit {
  flex: 1;
  min-width: 160px;
  background: var(--mp-green-600);
  color: #fff;
  border: none;
  border-radius: var(--mp-radius-pill);
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
}
.mp-pdp__bulk-submit:hover { background: var(--mp-green-800); }
.mp-pdp__bulk-wa {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--mp-radius-pill);
  background: #111;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.mp-pdp__bulk-wa:hover { background: #333; color: #fff; }

/* Reviews section */
.mp-pdp__reviews-block {
  background: #fff;
  border: 1px solid var(--mp-border);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--mp-shadow);
}
.mp-pdp__section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--mp-green-900);
  margin: 0 0 20px;
}
.mp-pdp__review-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.mp-pdp__review-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--mp-border);
}
.mp-pdp__review-item:last-child { border-bottom: none; }
.mp-pdp__review-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.mp-pdp__review-date {
  font-size: 12px;
  color: var(--mp-muted);
}
.mp-pdp__review-item p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55;
}
.mp-pdp__review-empty {
  color: var(--mp-muted);
  font-size: 14px;
  margin: 0 0 20px;
}
.mp-pdp__review-form-wrap {
  background: var(--mp-green-50);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--mp-green-100);
}
.mp-pdp__review-form-title {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--mp-green-900);
}
.mp-pdp__review-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .mp-pdp__review-form-grid { grid-template-columns: 1fr; }
}
.mp-pdp__review-form input,
.mp-pdp__review-form select,
.mp-pdp__review-form textarea {
  width: 100%;
  border: 2px solid var(--mp-border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
}
.mp-pdp__rating-select {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mp-muted);
}
.mp-pdp__review-form textarea { margin-bottom: 12px; resize: vertical; }
.mp-pdp__review-submit {
  background: var(--mp-green-600);
  color: #fff;
  border: none;
  border-radius: var(--mp-radius-pill);
  padding: 12px 28px;
  font-weight: 700;
  cursor: pointer;
}
.mp-pdp__review-submit:hover { background: var(--mp-green-800); }
.mp-pdp__review-item--hidden { display: none; }
.mp-pdp__reviews-more {
  display: block;
  width: 100%;
  margin: 0 0 24px;
  padding: 14px 20px;
  border: 2px solid var(--mp-border);
  border-radius: var(--mp-radius-pill);
  background: #fff;
  color: var(--mp-green-800);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.mp-pdp__reviews-more:hover {
  background: var(--mp-green-50);
  border-color: var(--mp-green-500);
}

/* ——— Prescription upload page ——— */
.mp-prescription-page .mp-prescription-steps {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .mp-prescription-page .mp-prescription-steps {
    grid-template-columns: 1fr;
  }
}
.mp-prescription-page .mp-prescription-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius);
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow: var(--mp-shadow);
}
.mp-prescription-page .mp-prescription-step__num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mp-spring);
  color: var(--mp-forest);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-prescription-page .mp-prescription-step img {
  margin: 8px auto 12px;
  display: block;
}
.mp-prescription-page .mp-prescription-step h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--mp-green-900);
  margin: 0 0 8px;
}
.mp-prescription-page .mp-prescription-step p {
  font-size: 13px;
  color: var(--mp-muted);
  margin: 0;
  line-height: 1.5;
}
.mp-prescription-alert {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: var(--mp-radius);
  margin-bottom: 28px;
}
.mp-prescription-alert i {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.mp-prescription-alert strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.mp-prescription-alert p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.mp-prescription-alert--success {
  background: var(--mp-green-50);
  border: 1px solid var(--mp-green-400);
  color: var(--mp-green-900);
}
.mp-prescription-alert--success i { color: var(--mp-green-700); }
.mp-prescription-alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.mp-prescription-alert--error i { color: #dc2626; }
.mp-prescription-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
  padding-bottom: 48px;
}
@media (max-width: 991px) {
  .mp-prescription-layout {
    grid-template-columns: 1fr;
  }
}
.mp-prescription-card {
  background: #fff;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius);
  padding: 28px;
  box-shadow: var(--mp-shadow);
}
.mp-prescription-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--mp-green-900);
  margin: 0 0 8px;
}
.mp-prescription-card__lead {
  color: var(--mp-muted);
  font-size: 14px;
  margin: 0 0 24px;
  line-height: 1.55;
}
.mp-prescription-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.mp-prescription-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 200px;
  padding: 32px 24px;
  border: 2px dashed var(--mp-green-400);
  border-radius: var(--mp-radius);
  background: var(--mp-green-50);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  margin: 0;
  text-align: center;
}
.mp-prescription-dropzone:hover,
.mp-prescription-dropzone.is-dragover {
  border-color: var(--mp-green-700);
  background: #e8f5e9;
}
.mp-prescription-dropzone__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mp-green-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.mp-prescription-dropzone__title {
  font-weight: 700;
  font-size: 15px;
  color: var(--mp-green-900);
}
.mp-prescription-dropzone__hint {
  font-size: 13px;
  color: var(--mp-muted);
}
.mp-prescription-card--upload.has-preview .mp-prescription-dropzone {
  display: none;
}
.mp-prescription-preview__frame {
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-sm);
  background: #f8fafc;
  padding: 12px;
  text-align: center;
}
.mp-prescription-preview__frame img {
  max-width: 100%;
  max-height: 360px;
  border-radius: 8px;
  object-fit: contain;
}
.mp-prescription-preview__name {
  font-size: 13px;
  color: var(--mp-muted);
  margin: 12px 0 8px;
  word-break: break-all;
}
.mp-prescription-preview__change {
  background: none;
  border: none;
  color: var(--mp-green-700);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.mp-prescription-actions {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--mp-border);
}
.mp-prescription-submit {
  width: 100%;
  justify-content: center;
  border: none;
  font-size: 16px;
}
.mp-prescription-login {
  text-align: center;
  padding: 16px 8px 8px;
}
.mp-prescription-login__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--mp-green-50);
  color: var(--mp-green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.mp-prescription-login h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--mp-green-900);
  margin: 0 0 10px;
}
.mp-prescription-login p {
  color: var(--mp-muted);
  font-size: 14px;
  max-width: 400px;
  margin: 0 auto 24px;
  line-height: 1.55;
}
.mp-prescription-login__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.mp-prescription-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mp-prescription-tips,
.mp-prescription-support,
.mp-prescription-note {
  background: #fff;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius);
  padding: 20px;
  box-shadow: var(--mp-shadow);
}
.mp-prescription-tips h3,
.mp-prescription-support h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--mp-green-900);
  margin: 0 0 14px;
}
.mp-prescription-tips ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mp-prescription-tips li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--mp-muted);
  margin-bottom: 10px;
}
.mp-prescription-tips li i {
  color: var(--mp-green-600);
  margin-top: 2px;
}
.mp-prescription-support p {
  font-size: 14px;
  color: var(--mp-muted);
  margin: 0 0 12px;
  line-height: 1.5;
}
.mp-prescription-support__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--mp-green-800);
  text-decoration: none;
  margin-bottom: 14px;
}
.mp-prescription-support__link:hover {
  color: var(--mp-green-900);
}
.mp-btn--whatsapp {
  background: #25d366;
  color: #fff;
  width: 100%;
  justify-content: center;
}
.mp-btn--whatsapp:hover {
  background: #1da851;
  color: #fff;
}
.mp-prescription-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--mp-green-50);
  border-color: var(--mp-green-200);
}
.mp-prescription-note i {
  color: var(--mp-green-700);
  font-size: 18px;
  flex-shrink: 0;
}
.mp-prescription-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--mp-green-900);
}

/* Promo bar */
body.mp-v2 .mp-promo-bar {
  background: var(--mp-forest);
}

/* ——— Mobile / tablet responsive header & nav ——— */
@media (max-width: 991px) {
  body.mp-v2 .mp-main-nav {
    display: none !important;
  }

  body.mp-v2 .mp-header .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  body.mp-v2 .mp-header__inner {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    grid-template-areas:
      "menu logo actions"
      "search search search";
    align-items: center;
    gap: 8px 10px;
    padding: 10px 0 12px;
  }

  body.mp-v2 .mp-header__menu-btn {
    grid-area: menu;
    margin: 0;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--mp-radius-sm);
  }

  body.mp-v2 .mp-header__menu-btn:active {
    background: var(--mp-green-50);
  }

  body.mp-v2 .mp-logo__text {
    grid-area: logo;
    justify-self: center;
    max-width: 160px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  body.mp-v2 .mp-logo__text img {
    max-height: 38px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  body.mp-v2 .mp-header-actions {
    grid-area: actions;
    margin-left: 0;
    gap: 0;
    flex-wrap: nowrap;
    justify-self: end;
  }

  body.mp-v2 .mp-header-actions__item--hide-xs {
    display: none !important;
  }

  body.mp-v2 .mp-header-actions__item,
  body.mp-v2 .mp-header__cart-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 6px 8px !important;
    font-size: 10px !important;
  }

  body.mp-v2 .mp-header-actions__label {
    display: block;
    line-height: 1.1;
    margin-top: 2px;
  }

  body.mp-v2 .mp-search {
    grid-area: search;
    flex: none;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  body.mp-v2 .mp-search input {
    font-size: 16px;
    padding: 11px 44px 11px 16px;
  }

  /* Cart dropdown — full-width panel on tablet/mobile */
  body.mp-v2 .mp-header__cart #header-cart {
    position: fixed;
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 12px;
    width: auto;
    max-width: none;
    max-height: min(70vh, 520px);
    overflow: auto;
    z-index: 1001;
    border-radius: var(--mp-radius);
    box-shadow: var(--mp-shadow-lg);
  }

  body.mp-v2 .mp-header__cart #header-cart .buttonSet {
    flex-direction: column;
    gap: 8px;
  }

  body.mp-v2 .mp-header__cart #header-cart .buttonSet .btn {
    width: 100%;
    margin: 0 !important;
  }
}

@media (max-width: 767px) {
  body.mp-v2 .mp-top-bar {
    font-size: 11px;
  }

  body.mp-v2 .mp-top-bar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 6px 12px;
  }

  body.mp-v2 .mp-top-bar__phone {
    text-align: center;
    font-size: 12px;
  }

  body.mp-v2 .mp-top-bar__links {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  body.mp-v2 .mp-top-bar__hide-xs,
  body.mp-v2 .mp-top-bar__hide-sm {
    display: none !important;
  }

  body.mp-v2 .mp-top-bar__user {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.mp-v2 .mp-page-header {
    padding: 20px 0 24px;
    margin-bottom: 20px;
  }

  body.mp-v2 .mp-content-shell .create-ac-content,
  body.mp-v2 .mp-content-shell .formFeilds {
    padding: 18px 16px;
  }

  body.mp-v2 .billing-fields > [class*="col-"] {
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  body.mp-v2 .mp-header__inner {
    grid-template-columns: 40px minmax(0, 1fr) auto;
  }

  body.mp-v2 .mp-logo__text {
    max-width: 130px;
  }

  body.mp-v2 .mp-header-actions__label {
    font-size: 9px;
  }
}

/* Mobile drawer — overlay instead of pushing page */
body.mp-v2.menuOn .pageWrapper {
  left: 0 !important;
}

body.mp-v2.menuOn::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(13, 42, 20, 0.45);
  z-index: 998;
  backdrop-filter: blur(2px);
}

body.mp-v2 .mobile-nav-wrapper {
  width: min(320px, 88vw);
  left: calc(-1 * min(320px, 88vw));
  z-index: 1002;
  display: flex !important;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
}

body.mp-v2 .mobile-nav-wrapper.active {
  left: 0;
}

body.mp-v2 .mobile-nav-wrapper .closemobileMenu {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 16px;
  background: var(--mp-green-50);
  color: var(--mp-green-900);
  border-bottom: 1px solid var(--mp-border);
}

body.mp-v2 #MobileNav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
}

body.mp-v2 #MobileNav > li > a {
  font-size: 13px;
  font-weight: 700;
  padding: 14px 48px 14px 16px;
  text-transform: none;
  letter-spacing: 0;
}

body.mp-v2 #MobileNav li a .anm {
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 12px;
}

body.mp-v2 #MobileNav li ul {
  background: #f8fafc;
}

body.mp-v2 #MobileNav .prescription {
  margin: 8px 12px;
  display: block;
  text-align: center;
  padding: 12px 16px !important;
}

body.mp-v2 .mp-mobile-nav__divider {
  height: 8px;
  background: #f1f5f9;
  border: none !important;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.mp-v2 .mp-mobile-nav__quick a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-weight: 600 !important;
  text-transform: none !important;
  padding: 14px 16px !important;
  color: var(--mp-green-800) !important;
}

body.mp-v2 .mp-mobile-nav__quick a i {
  position: static !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
  font-size: 18px !important;
  color: var(--mp-green-700) !important;
}

body.mp-v2 .js-mobile-nav-toggle .anm {
  color: var(--mp-green-800);
}

body.mp-v2 .js-mobile-nav-toggle.mobile-nav--open .anm-bars-r,
body.mp-v2 .js-mobile-nav-toggle.mobile-nav--close .anm-times-l {
  display: inline-block !important;
}
