:root {
  --mp-primary: #16a34a;
  --mp-primary-dark: #0e883a;
  --mp-primary-deep: #14532d;
  --mp-accent: #f59e0b;
  --mp-accent-light: #fbbf24;
  --mp-teal: #0ea5a9;
  --mp-bg: #f4f6f8;
  --mp-text: #1c1917;
  --mp-muted: #6b7280;
  --mp-card: #ffffff;
  --mp-radius: 16px;
  --mp-shadow: 0 8px 30px rgba(22, 163, 74, 0.08);
  --mp-shadow-lg: 0 20px 50px rgba(20, 83, 45, 0.15);
}

* { box-sizing: border-box; }
body.mp-body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--mp-bg);
  color: var(--mp-text);
  line-height: 1.5;
}

.mp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22, 163, 74, 0.1);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.mp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.mp-logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.mp-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.mp-nav a {
  text-decoration: none;
  color: var(--mp-text);
  font-weight: 500;
  font-size: 14px;
}
.mp-nav a.active { color: var(--mp-primary); }
.mp-cart-badge {
  background: var(--mp-accent);
  color: var(--mp-text);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 12px;
  margin-left: 4px;
}
.mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-size: 15px;
}
.mp-btn-primary { background: var(--mp-primary); color: #fff; }
.mp-btn-primary:hover { background: var(--mp-primary-dark); }
.mp-btn-outline {
  background: #fff;
  border: 2px solid var(--mp-primary);
  color: var(--mp-primary);
}
.mp-btn-sm { padding: 8px 14px; font-size: 13px; }
.mp-btn-block { width: 100%; }
.mp-menu-toggle { display: none; background: none; border: none; font-size: 24px; }

.mp-main { min-height: calc(100vh - 180px); }

.mp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #15803d 0%, #0d9488 45%, #14532d 100%);
  color: #fff;
  padding: 56px 20px 64px;
}
.mp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 40%);
  pointer-events: none;
}
.mp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.mp-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.mp-hero h1 {
  font-size: clamp(32px, 6vw, 52px);
  margin: 0 0 16px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.mp-hero-highlight {
  color: var(--mp-accent-light);
  text-shadow: 0 2px 20px rgba(251, 191, 36, 0.4);
}
.mp-hero-lead {
  font-size: clamp(16px, 2.5vw, 19px);
  opacity: 0.95;
  max-width: 580px;
  margin: 0 0 28px;
  line-height: 1.55;
}
.mp-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.mp-hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mp-hero-stats strong {
  font-size: 15px;
  font-weight: 700;
}
.mp-hero-stats span {
  font-size: 13px;
  opacity: 0.8;
}

/* Features strip */
.mp-features {
  margin-top: -32px;
  position: relative;
  z-index: 2;
  padding: 0 20px 48px;
}
.mp-features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mp-feature-card {
  background: var(--mp-card);
  border-radius: var(--mp-radius);
  padding: 24px 20px;
  box-shadow: var(--mp-shadow-lg);
  border: 1px solid rgba(22, 163, 74, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(22, 163, 74, 0.12);
}
.mp-feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-radius: 14px;
  font-size: 26px;
  margin-bottom: 14px;
}
.mp-feature-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--mp-primary-deep);
}
.mp-feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--mp-muted);
  line-height: 1.45;
}

.mp-section-head {
  margin-bottom: 24px;
}
.mp-section-head .mp-section-title {
  margin-bottom: 6px;
}
.mp-stores-section {
  padding-top: 8px;
}

/* App CTA */
.mp-app-cta {
  padding: 0 20px 56px;
}
.mp-app-cta-box {
  max-width: 1200px;
  margin: 0 auto;
}
.mp-app-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, var(--mp-primary-deep) 0%, #166534 50%, var(--mp-teal) 100%);
  border-radius: 24px;
  padding: 40px 36px;
  color: #fff;
  box-shadow: var(--mp-shadow-lg);
  overflow: hidden;
  position: relative;
}
.mp-app-cta-inner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  background: rgba(251, 191, 36, 0.15);
  border-radius: 50%;
}
.mp-app-cta-text {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 260px;
}
.mp-app-cta-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mp-accent-light);
}
.mp-app-cta h2 {
  margin: 8px 0 12px;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
}
.mp-app-cta p {
  margin: 0 0 20px;
  opacity: 0.9;
  max-width: 420px;
  line-height: 1.5;
}
.mp-app-cta-badges {
  display: flex;
  gap: 10px;
}
.mp-app-cta-badges span {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.mp-app-cta-visual {
  position: relative;
  z-index: 1;
}
.mp-app-cta-logo {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
}

.mp-btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}
.mp-btn-light {
  background: #fff;
  color: var(--mp-primary-deep);
}
.mp-btn-light:hover {
  background: #f0fdf4;
}
.mp-btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}
.mp-btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.mp-search {
  margin-top: 24px;
  display: flex;
  gap: 8px;
  max-width: 520px;
}
.mp-search input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
}
.mp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px;
}
.mp-section-title {
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--mp-primary-deep);
}
.mp-search {
  margin-top: 0;
}
.mp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.mp-card {
  background: var(--mp-card);
  border-radius: var(--mp-radius);
  box-shadow: var(--mp-shadow);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.mp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.15);
}
.mp-card-img {
  height: 160px;
  background: #e5e7eb center/cover no-repeat;
}
.mp-card-body { padding: 16px; }
.mp-card h3 { margin: 0 0 8px; font-size: 18px; }
.mp-muted { color: var(--mp-muted); font-size: 14px; }

/* Tarjetas de producto (menú restaurante) */
.mp-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mp-product-card .mp-card-img-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
  height: 200px;
  min-height: 200px;
  background: #e5e7eb center/cover no-repeat;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.mp-product-card .mp-card-img-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.mp-card-img-btn--empty {
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}
.mp-card-img-placeholder {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  line-height: 1;
}
.mp-product-card .mp-card-img-btn::after {
  content: 'Ver foto';
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.2s;
}
.mp-product-card:hover .mp-card-img-btn::after {
  opacity: 1;
}
.mp-product-card .mp-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
}
.mp-product-card .mp-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.mp-product-card .mp-card-content h3 {
  font-size: 17px;
  line-height: 1.3;
  margin: 0 0 6px;
}
.mp-product-desc-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--mp-muted);
  line-height: 1.45;
  min-height: 4.05em;
  flex: 0 0 auto;
}
.mp-product-card .mp-price {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}
.mp-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  flex-shrink: 0;
  padding-top: 4px;
}
.mp-product-grid {
  align-items: stretch;
}
.mp-card-actions .mp-btn {
  padding: 11px 16px;
  font-size: 14px;
}

/* Modal detalle producto */
.mp-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s, visibility 0.25s;
}
.mp-modal.is-open {
  visibility: visible;
  opacity: 1;
}
.mp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  border: none;
  cursor: pointer;
}
.mp-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  background: var(--mp-card);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
}
.mp-modal.is-open .mp-modal-panel {
  transform: translateY(0);
}
.mp-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--mp-text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.mp-modal-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #e5e7eb;
  flex-shrink: 0;
}
.mp-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mp-modal-body {
  padding: 20px 20px 24px;
  overflow-y: auto;
}
.mp-modal-body h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
  padding-right: 40px;
}
.mp-modal-desc {
  color: var(--mp-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
  white-space: pre-wrap;
}
.mp-modal-price {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
}
.mp-variant-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.mp-variant-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.mp-variant-option:has(input:checked) {
  border-color: var(--mp-primary);
  background: #ecfdf5;
}
.mp-variant-option input {
  margin-right: 10px;
}
.mp-modal-footer {
  padding: 0 20px 24px;
  padding-bottom: max(24px, env(safe-area-inset-bottom));
}
@media (min-width: 640px) {
  .mp-modal {
    align-items: center;
    padding: 24px;
  }
  .mp-modal-panel {
    border-radius: 20px;
    max-height: 88vh;
  }
  .mp-modal.is-open .mp-modal-panel {
    transform: translateY(0);
  }
}

.mp-product-row {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--mp-card);
  border-radius: var(--mp-radius);
  margin-bottom: 12px;
  align-items: center;
}
.mp-product-row img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}
.mp-product-info { flex: 1; }
.mp-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mp-qty button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #fff;
  cursor: pointer;
}

.mp-form-group { margin-bottom: 16px; }
.mp-form-group label { display: block; font-weight: 600; margin-bottom: 6px; }
.mp-form-group input,
.mp-form-group select,
.mp-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 15px;
}
.mp-alert {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.mp-alert-warn { background: #fff7ed; border: 1px solid var(--mp-accent); }
.mp-alert-ok { background: #ecfdf5; border: 1px solid var(--mp-primary); }
.mp-alert-error { background: #fef2f2; border: 1px solid #dc2626; }

.mp-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.mp-access-card {
  background: var(--mp-card);
  padding: 32px 24px;
  border-radius: var(--mp-radius);
  text-align: center;
  box-shadow: var(--mp-shadow);
}
.mp-access-card h2 { margin-top: 0; }

/* Badges tiendas (Google Play / App Store) */
.mp-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.mp-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #0f172a;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  min-width: 168px;
}
a.mp-store-badge:hover {
  transform: translateY(-2px);
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.25);
}
.mp-store-badge--soon {
  opacity: 0.72;
  cursor: default;
}
.mp-store-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mp-store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}
.mp-store-badge-text small {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.75;
}
.mp-store-badge-text strong {
  font-size: 15px;
  font-weight: 700;
}
.mp-store-badges--light .mp-store-badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}
.mp-store-badges--light a.mp-store-badge:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Footer premium (unificado, sin franja blanca) */
.mp-footer {
  position: relative;
  background: linear-gradient(180deg, #14532d 0%, #0f172a 100%);
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0;
  padding: 0;
}
.mp-footer a {
  text-decoration: none;
}
.mp-footer-logo-link {
  display: inline-block;
}
.mp-footer-apps {
  background: linear-gradient(90deg, #166534 0%, #14532d 55%, #0f766e 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 20px;
}
.mp-footer-apps-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.mp-footer-apps-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mp-accent-light);
  margin-bottom: 6px;
}
.mp-footer-apps-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.mp-footer-apps-copy p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  line-height: 1.5;
}
.mp-footer-apps .mp-store-badges {
  margin-top: 16px;
}
.mp-footer-apps-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.mp-footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 32px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px 32px;
}
.mp-footer-brand {
  padding-right: 16px;
}
.mp-footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 12px;
  display: block;
}
.mp-footer-tagline {
  font-size: 15px;
  font-weight: 700;
  color: var(--mp-accent-light);
  margin: 0 0 10px;
}
.mp-footer-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 20px;
  max-width: 280px;
}
.mp-footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 12px 16px;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.mp-footer-wa:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25d366;
  transform: translateY(-2px);
}
.mp-footer-wa-icon {
  font-size: 24px;
}
.mp-footer-wa strong {
  font-size: 13px;
  color: #86efac;
}
.mp-footer-col h3 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}
.mp-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mp-footer-col li {
  margin-bottom: 10px;
}
.mp-footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s, padding-left 0.15s;
}
.mp-footer-col a:hover {
  color: var(--mp-accent-light);
  padding-left: 4px;
}
.mp-footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.mp-footer-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}
.mp-footer-trust {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}
.mp-footer-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 32px;
}
.mp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.mp-trust-item span:first-child {
  font-size: 18px;
}
.mp-footer-bottom {
  padding: 20px;
}
.mp-footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.mp-footer-bottom p {
  margin: 0;
}
.mp-footer-credits a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
}
.mp-footer-credits a:hover {
  color: var(--mp-accent-light);
}

@media (max-width: 900px) {
  .mp-features-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .mp-footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .mp-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .mp-features-inner {
    grid-template-columns: 1fr;
  }
  .mp-footer-apps-inner {
    flex-direction: column;
    text-align: center;
  }
  .mp-footer-apps-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .mp-footer-apps .mp-store-badges {
    justify-content: center;
  }
  .mp-footer-apps-actions {
    width: 100%;
    align-items: center;
  }
  .mp-app-cta-inner {
    padding: 28px 24px;
    text-align: center;
  }
  .mp-app-cta-visual {
    margin: 0 auto;
  }
  .mp-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .mp-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .mp-menu-toggle { display: block; }
  .mp-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
  }
  .mp-nav.open { display: flex; }
  .mp-header-inner { position: relative; flex-wrap: wrap; }
}
