/* ====================================================
   بوابة «افحص وجبتك» — فاتح + داكن
   ==================================================== */

.mch-page {
  --mch-card: var(--clr-surface, #fff);
  --mch-border: rgba(27, 67, 50, 0.12);
  --mch-accent: var(--clr-primary-dark, #1b4332);
  --mch-muted: var(--clr-text-light, #6b7280);
  --mch-glow: rgba(45, 106, 79, 0.08);
}

.mch-hero .mch-hero-pills li {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.mch-offline-badge {
  margin-top: 12px;
  max-width: 720px;
  padding: 8px 12px;
  background: rgba(254, 243, 199, 0.95);
  border-radius: 8px;
  color: #92400e;
  font-size: 0.9rem;
}

.mch-section {
  position: relative;
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(48px, 7vw, 88px);
  background:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(45, 106, 79, 0.07) 0%, transparent 58%),
    linear-gradient(180deg, var(--clr-bg-alt, #eef7f2) 0%, var(--clr-bg, #f8faf9) 42%, var(--clr-bg, #f8faf9) 100%);
  overflow: hidden;
}

.mch-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(45, 106, 79, 0.055) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.45;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
}

.mch-section > .container {
  position: relative;
  z-index: 1;
}

.mch-checker-card {
  background: var(--mch-card);
  border: 1px solid var(--mch-border);
  border-radius: var(--radius-lg, 20px);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  box-shadow:
    0 4px 6px rgba(15, 41, 25, 0.04),
    0 16px 40px rgba(15, 41, 25, 0.07);
  position: relative;
  overflow: hidden;
}

.mch-checker-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary-dark), var(--clr-accent));
}

.mch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

/* ── Tabs ── */
.mch-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 4px;
  background: var(--clr-bg-alt, #eef7f2);
  border-radius: var(--radius-sm, 12px);
  border: 1px solid var(--mch-border);
}

.mch-tab {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  color: var(--mch-muted);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.mch-tab:hover,
.mch-tab:focus-visible {
  color: var(--mch-accent);
  outline: none;
}

.mch-tab.is-active {
  background: var(--mch-card);
  color: var(--mch-accent);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(45, 106, 79, 0.08);
}

.mch-panel[hidden] {
  display: none !important;
}

.mch-panel-lead {
  margin: 0 0 0.85rem;
  color: var(--mch-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.mch-label {
  display: block;
  font-weight: 700;
  color: var(--mch-accent);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.mch-hint {
  font-size: 0.88rem;
  color: var(--mch-muted);
  margin: 0.5rem 0 0;
}

.mch-actions {
  margin-top: 1rem !important;
}

/* ── Chips ── */
.mch-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.mch-chip {
  border: 1px solid var(--mch-border);
  background: var(--clr-bg-alt, #f8faf9);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-family: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--clr-text-md);
  transition: border-color 0.2s, background 0.2s;
}

.mch-chip:hover,
.mch-chip:focus-visible {
  border-color: var(--clr-primary);
  background: var(--mch-glow);
  outline: none;
}

/* ── Textarea override ── */
.mch-page .mt-meal-tool textarea,
.mch-checker-card textarea {
  width: 100%;
  min-height: 150px;
  padding: 14px 16px;
  border: 1px solid var(--mch-border);
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.7;
  resize: vertical;
  font-family: inherit;
  background: var(--clr-bg, #f8faf9);
  color: var(--clr-text);
}

.mch-checker-card textarea:focus {
  outline: 2px solid rgba(45, 106, 79, 0.35);
  border-color: var(--mch-accent);
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
}

/* ── Dropzone ── */
.mch-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 160px;
  padding: 1.25rem;
  border: 2px dashed rgba(45, 106, 79, 0.28);
  border-radius: 14px;
  background: var(--clr-bg-alt, #f8faf9);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}

.mch-dropzone:hover,
.mch-dropzone.is-dragover,
.mch-dropzone:focus-visible {
  border-color: var(--clr-primary);
  background: var(--mch-glow);
  outline: none;
}

.mch-dropzone__icon {
  font-size: 2rem;
}

.mch-dropzone__text {
  font-weight: 700;
  color: var(--mch-accent);
  font-size: 0.95rem;
}

.mch-dropzone__hint {
  font-size: 0.8rem;
  color: var(--mch-muted);
}

.mch-dropzone__preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mch-dropzone.has-preview .mch-dropzone__icon,
.mch-dropzone.has-preview .mch-dropzone__text,
.mch-dropzone.has-preview .mch-dropzone__hint {
  opacity: 0;
}

.mch-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mch-vision-desc {
  width: 100%;
  margin-top: 0.75rem;
  padding: 10px 12px;
  border: 1px solid var(--mch-border);
  border-radius: 8px;
  font-family: inherit;
  background: var(--clr-bg, #fff);
  color: var(--clr-text);
}

.mch-vision-desc:focus {
  outline: 2px solid rgba(45, 106, 79, 0.3);
  border-color: var(--mch-accent);
}

/* ── Vision locked ── */
.mch-vision-locked {
  text-align: center;
  padding: 2rem 1rem;
}

.mch-vision-locked__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.mch-vision-locked h3 {
  margin: 0 0 0.5rem;
  color: var(--mch-accent);
}

.mch-vision-locked p {
  color: var(--mch-muted);
  margin-bottom: 1rem;
}

.mch-vision-locked .btn {
  margin: 0.35rem;
}

/* ── Results ── */
.mch-result {
  margin-top: 1.25rem !important;
}

.mch-page .mt-meal-result {
  background: linear-gradient(168deg, #fff 0%, #f8fafc 55%, rgba(240, 253, 244, 0.65) 100%);
  border-color: rgba(45, 106, 79, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 28px rgba(15, 41, 25, 0.08);
}

.mch-page .mt-meal-score__text {
  color: var(--clr-text-md);
  text-align: center;
  margin: 0;
}

.mch-page .mt-meal-score__text strong {
  color: var(--mch-accent);
}

.mch-page .mt-meal-score__ring {
  width: 118px;
  height: 118px;
}

.mch-page .mt-meal-alts {
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.07) 0%, rgba(212, 160, 23, 0.08) 100%);
  border: 1px solid var(--mch-border);
}

.mch-signup-nudge {
  margin-top: 1.25rem;
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.1) 0%, rgba(212, 160, 23, 0.12) 100%);
  border: 1px solid rgba(45, 106, 79, 0.22);
  text-align: center;
}

.mch-signup-nudge h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--mch-accent);
}

.mch-signup-nudge p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--clr-text-md);
  line-height: 1.65;
}

.mch-signup-nudge .btn {
  margin: 0 0.25rem;
}

/* ── Steps ── */
.mch-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.mch-step {
  padding: 0.85rem;
  border-radius: 12px;
  background: var(--clr-bg-alt, #eef7f2);
  border: 1px solid var(--mch-border);
  text-align: center;
}

.mch-step__num {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mch-accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.mch-step h3 {
  margin: 0 0 0.2rem;
  font-size: 0.88rem;
  color: var(--mch-accent);
}

.mch-step p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--mch-muted);
  line-height: 1.45;
}

/* ── Sidebar ── */
.mch-aside-card {
  background: var(--mch-card);
  border: 1px solid var(--mch-border);
  border-radius: var(--radius-md, 16px);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.mch-aside-card--signup {
  background: linear-gradient(168deg, var(--clr-surface) 0%, var(--clr-bg-alt) 55%, var(--clr-accent-bg, #fef9e7) 100%);
  border-color: rgba(45, 106, 79, 0.22);
}

.mch-aside-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(45, 106, 79, 0.12);
  color: var(--mch-accent);
  margin-bottom: 0.65rem;
}

.mch-aside-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--mch-accent);
}

.mch-aside-lead {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--clr-text-md);
}

.mch-perks {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.mch-perks li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--clr-text-md);
  border-bottom: 1px dashed var(--mch-border);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.mch-perks li:last-child {
  border-bottom: none;
}

.mch-aside-note {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--mch-muted);
  text-align: center;
}

.mch-cta-pulse {
  animation: mch-pulse 2.5s ease-in-out infinite;
}

@keyframes mch-pulse {
  0%, 100% { box-shadow: var(--btn-shadow); }
  50% { box-shadow: var(--shadow-accent); }
}

.mch-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mch-link-list a {
  display: block;
  padding: 0.45rem 0;
  color: var(--clr-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
}

.mch-link-list a:hover {
  color: var(--clr-accent-dark);
}

.mch-disclaimer {
  margin-top: 2.5rem;
}

.mch-faq-title {
  margin-top: 2.5rem;
}

/* ── Badges (meal checker) ── */
.mch-page .mt-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
}

.mch-page .mt-badge--ok { background: #d1fae5; color: #065f46; }
.mch-page .mt-badge--no { background: #fee2e2; color: #991b1b; }
.mch-page .mt-badge--warn { background: #fef3c7; color: #92400e; }

.mch-page .mt-meal-group li:last-child {
  border-bottom: none;
}

.mch-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.12) 0%, rgba(212, 160, 23, 0.1) 100%);
  border: 1px solid rgba(45, 106, 79, 0.2);
  color: var(--mch-accent);
}

.mch-ai-badge--fallback {
  background: var(--clr-bg-alt, #eef7f2);
  border-color: var(--mch-border);
  color: var(--mch-muted);
}

.mt-meal-score__summary {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--clr-text-md);
  max-width: 42ch;
}

.mch-error-box {
  text-align: center;
  color: #b91c1c;
}

.mch-error-box .btn {
  margin-top: 0.75rem;
}

/* ── Dark mode ── */
html[data-theme="dark"] .mch-page {
  --mch-card: var(--clr-surface, #1a2e26);
  --mch-border: rgba(82, 183, 136, 0.18);
  --mch-accent: var(--clr-primary-dark, #95d5b2);
  --mch-muted: var(--clr-text-light, #7a9b8a);
  --mch-glow: rgba(82, 183, 136, 0.12);
}

html[data-theme="dark"] .mch-section {
  background:
    radial-gradient(ellipse 85% 50% at 50% -5%, rgba(82, 183, 136, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--clr-bg-alt, #0f2319) 0%, var(--clr-bg, #0a1812) 100%);
}

html[data-theme="dark"] .mch-section::before {
  background-image: radial-gradient(rgba(82, 183, 136, 0.08) 1px, transparent 1px);
  opacity: 0.35;
}

html[data-theme="dark"] .mch-tabs {
  background: var(--clr-bg-alt);
  border-color: var(--mch-border);
}

html[data-theme="dark"] .mch-tab.is-active {
  background: var(--clr-surface-elevated);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(82, 183, 136, 0.15);
}

html[data-theme="dark"] .mch-checker-card {
  background: linear-gradient(168deg, var(--clr-surface-elevated, #223d32) 0%, var(--clr-surface) 55%, var(--clr-bg-alt) 100%);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.22),
    0 20px 48px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(82, 183, 136, 0.08);
}

html[data-theme="dark"] .mch-checker-card textarea,
html[data-theme="dark"] .mch-vision-desc {
  background: var(--clr-bg);
  border-color: var(--mch-border);
  color: var(--clr-text);
}

html[data-theme="dark"] .mch-checker-card textarea:focus,
html[data-theme="dark"] .mch-vision-desc:focus {
  outline-color: rgba(82, 183, 136, 0.35);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.12);
}

html[data-theme="dark"] .mch-dropzone {
  background: var(--clr-bg-alt);
  border-color: rgba(82, 183, 136, 0.28);
}

html[data-theme="dark"] .mch-chip {
  background: var(--clr-surface);
  border-color: var(--mch-border);
  color: var(--clr-text-md);
}

html[data-theme="dark"] .mch-step {
  background: var(--clr-surface);
}

html[data-theme="dark"] .mch-aside-card--signup {
  background: linear-gradient(168deg, var(--clr-surface-elevated) 0%, var(--clr-surface) 40%, var(--clr-primary-bg) 100%);
  border-color: rgba(82, 183, 136, 0.3);
}

html[data-theme="dark"] .mch-signup-nudge {
  background: linear-gradient(135deg, rgba(82, 183, 136, 0.12) 0%, rgba(201, 162, 39, 0.1) 100%);
  border-color: rgba(82, 183, 136, 0.25);
}

html[data-theme="dark"] .mch-page .mt-badge--ok { background: rgba(82, 183, 136, 0.2); color: #95d5b2; }
html[data-theme="dark"] .mch-page .mt-badge--no { background: rgba(240, 113, 103, 0.15); color: #f07167; }
html[data-theme="dark"] .mch-page .mt-badge--warn { background: rgba(201, 162, 39, 0.15); color: #d4b84a; }

html[data-theme="dark"] .mch-page .mt-meal-result {
  background: linear-gradient(168deg, var(--clr-surface-elevated, #223d32) 0%, var(--clr-surface) 50%, rgba(15, 35, 25, 0.95) 100%);
  border-color: var(--mch-border);
  box-shadow:
    inset 0 1px 0 rgba(82, 183, 136, 0.1),
    0 10px 36px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] .mch-page .mt-meal-score__ring {
  box-shadow: 0 0 0 4px rgba(26, 46, 38, 0.95), 0 12px 40px var(--ring-glow, rgba(82, 183, 136, 0.28));
}

html[data-theme="dark"] .mch-page .mt-meal-score__ring::after {
  background: var(--clr-surface-elevated, #223d32);
}

html[data-theme="dark"] .mch-page .mt-meal-alts {
  background: linear-gradient(135deg, rgba(82, 183, 136, 0.12) 0%, rgba(201, 162, 39, 0.08) 100%);
  border-color: rgba(82, 183, 136, 0.22);
}

html[data-theme="dark"] .mch-offline-badge {
  background: rgba(201, 162, 39, 0.15);
  color: #d4b84a;
}

html[data-theme="dark"] .mch-ai-badge {
  background: linear-gradient(135deg, rgba(82, 183, 136, 0.14) 0%, rgba(201, 162, 39, 0.1) 100%);
  border-color: rgba(82, 183, 136, 0.25);
}

html[data-theme="dark"] .mch-ai-badge--fallback {
  background: var(--clr-surface);
  border-color: var(--mch-border);
}

html[data-theme="dark"] .mch-page .faq-item {
  background: var(--clr-surface);
  border-color: var(--mch-border);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .mch-layout {
    grid-template-columns: 1fr;
  }

  .mch-aside {
    order: 2;
  }

  .mch-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .mch-tabs {
    flex-direction: column;
  }

  .mch-actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

/* ── Gate modal ── */
.mch-gate-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.mch-gate-modal[hidden] {
  display: none !important;
}

body.mch-gate-open {
  overflow: hidden;
}

.mch-gate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 26, 20, 0.72);
  backdrop-filter: blur(4px);
}

.mch-gate-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  background: var(--clr-surface, #fff);
  border-radius: var(--radius-lg, 20px);
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--mch-border);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.mch-gate-modal__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.mch-gate-modal__panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--mch-accent);
}

.mch-gate-modal__panel p {
  margin: 0 0 1rem;
  color: var(--clr-text-md);
  line-height: 1.65;
  font-size: 0.92rem;
}

.mch-gate-perks {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  text-align: right;
}

.mch-gate-perks li {
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--clr-text-md);
  border-bottom: 1px dashed var(--mch-border);
}

.mch-gate-perks li:last-child {
  border-bottom: none;
}

.mch-gate-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mch-gate-modal__actions .btn {
  width: 100%;
  justify-content: center;
}

.mch-gate-modal__note {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--mch-muted);
}

.mch-gate-modal.is-blocking .mch-gate-modal__backdrop {
  cursor: default;
}

/* ── Share row ── */
.mch-share-row {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.08) 0%, rgba(212, 160, 23, 0.1) 100%);
  border: 1px solid var(--mch-border);
}

.mch-share-row__title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--mch-accent);
}

.mch-share-row__hint {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--mch-muted);
}

.mch-share-row__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mch-share-row__btns .btn {
  flex: 1 1 auto;
  min-width: 120px;
  justify-content: center;
}

/* ── Share landing (?r=) ── */
.mch-share-landing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md, 16px);
  background: linear-gradient(135deg, var(--clr-bg-alt) 0%, var(--clr-accent-bg, #fef9e7) 100%);
  border: 1px solid var(--mch-border);
}

.mch-share-landing__ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  --ring-color: var(--clr-primary-dark);
  --ring-track: #e2e8f0;
  background: conic-gradient(var(--ring-color) calc(var(--pct, 0) * 1%), var(--ring-track) 0);
  position: relative;
  flex-shrink: 0;
  font-weight: 800;
  color: var(--ring-color, var(--mch-accent));
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(27, 67, 50, 0.15);
}

.mch-share-landing__ring::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--clr-surface, #fff);
}

.mch-share-landing__ring span {
  position: relative;
  z-index: 1;
}

.mch-share-landing__hint {
  display: block;
  font-size: 0.88rem;
  color: var(--mch-muted);
  margin-top: 0.25rem;
}

html[data-theme="dark"] .mch-gate-modal__panel {
  background: var(--clr-surface-elevated);
  border-color: rgba(82, 183, 136, 0.25);
}

html[data-theme="dark"] .mch-share-row {
  background: linear-gradient(135deg, rgba(82, 183, 136, 0.1) 0%, rgba(201, 162, 39, 0.08) 100%);
}

html[data-theme="dark"] .mch-share-landing {
  background: linear-gradient(135deg, var(--clr-surface) 0%, var(--clr-primary-bg) 100%);
}

html[data-theme="dark"] .mch-share-landing__ring {
  --ring-track: rgba(82, 183, 136, 0.14);
  --ring-color: var(--clr-primary-light, #52b788);
  box-shadow: 0 8px 24px rgba(82, 183, 136, 0.2);
}

html[data-theme="dark"] .mch-share-landing__ring::after {
  background: var(--clr-surface-elevated);
}
