/**
 * MiroMarket — WooCommerce digital marketplace theme
 */

:root {
    --mx-bg: #020617;
    --mx-surface: #0f172a;
    --mx-card: #111827;
    --mx-text: #f8fafc;
    --mx-muted: #94a3b8;
    --mx-gold: #fbbf24;
    --mx-gold-dark: #d97706;
    --mx-gold-glow: rgba(251, 191, 36, 0.25);
    --mx-border: rgba(148, 163, 184, 0.12);
    --mx-radius: 16px;
    --mx-radius-sm: 10px;
    --mx-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    --mx-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    --mx-body-color: rgb(72, 101, 129);
    --mx-body-size: 21px;
    --mx-body-lh: 31px;
    --mx-body-weight: 400;
    --mx-bg-light: #F0F4F8;
    --mx-max: 1180px;
    --mx-shadow: 0 20px 50px rgba(2, 6, 23, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    overflow-x: clip;
}

img, video, svg {
    max-width: 100%;
    height: auto;
}

body.miroseo-ui {
    font-family: var(--mx-font);
    font-weight: var(--mx-body-weight);
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-optical-sizing: auto;
    background: #F0F4F8;
    margin: 0;
    min-height: 100vh;
    color: var(--mx-body-color);
    overflow-x: clip;
}

body.miroseo-ui button,
body.miroseo-ui input,
body.miroseo-ui textarea,
body.miroseo-ui select {
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
}

/* ─── Header ─── */
.mx-site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.25s;
}

.mx-site-header.is-scrolled { box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06); }

.mx-container {
    width: min(var(--mx-max), 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.mx-header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 68px;
    height: 68px;
}

.mx-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex: 0 0 auto;
    order: 1;
}

.mx-logo img,
.mx-logo .mx-logo-img {
    max-height: 44px;
    width: auto;
    display: block;
    border-radius: 10px;
}

.mx-logo-footer {
    margin-bottom: 14px;
}

.mx-logo-footer .mx-logo-img {
    max-height: 40px;
}

.mx-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1;
}

.mx-logo:hover .mx-logo-text { color: var(--mx-gold-dark); }

.mx-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    order: 2;
    min-width: 0;
}

.mx-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    margin-left: auto;
    order: 3;
}

.mx-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mx-menu a {
    display: block;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}

.mx-menu a:hover,
.mx-menu .current-menu-item > a {
    background: rgba(251, 191, 36, 0.12);
    color: var(--mx-gold-dark);
}

.mx-menu .sub-menu {
    list-style: none;
    margin: 4px 0 0;
    padding: 4px 0 4px 12px;
}

.mx-menu .sub-menu a {
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0;
}

body.mx-nav-open {
    overflow: hidden;
}

/* Ghost Blocksy overlays (stale child-theme DB link) */
#offcanvas,
.ct-header,
.ct-panel,
.ct-panel-actions,
.ct-drawer-canvas {
    display: none !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.mx-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.mx-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
}

.mx-main { min-height: 50vh; }

/* ─── Buttons ─── */
.mx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 24px;
    border-radius: var(--mx-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mx-btn:hover { transform: translateY(-2px); }

.mx-btn-gold {
    background: linear-gradient(135deg, #fde047 0%, #f59e0b 100%);
    color: #111827;
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.35);
}

.mx-btn-gold:hover { box-shadow: 0 12px 36px rgba(245, 158, 11, 0.45); }

.mx-btn-brand {
    background: var(--mx-brand-grad, linear-gradient(135deg, #d97706 0%, #f59e0b 55%, #fbbf24 100%));
    color: #fff;
    border: none;
    box-shadow: 0 8px 22px var(--mx-brand-shadow, rgba(245, 158, 11, 0.28));
}

.mx-btn-brand:hover {
    filter: brightness(1.06);
    box-shadow: 0 12px 30px var(--mx-brand-shadow, rgba(245, 158, 11, 0.38));
}

.mx-btn-sale-price {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid rgba(17, 24, 39, 0.15);
    white-space: nowrap;
}

.mx-btn-sale-price s {
    font-size: 0.82em;
    font-weight: 600;
    opacity: 0.65;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.mx-btn-sale-price strong {
    font-size: 1.05em;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.mx-card-price-note-only {
    margin: 0 0 14px;
    text-align: center;
}

.mx-btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fde68a;
    border-color: rgba(251, 191, 36, 0.35);
}

.mx-btn-outline {
    background: #fff;
    color: #0f172a;
    border-color: #e2e8f0;
}

.mx-btn-dark {
    background: #0f172a;
    color: #fde68a;
    margin-top: 16px;
}

.mx-btn-lg {
    padding: 15px 28px;
    font-size: 0.95rem;
}

.mx-btn-white {
    background: #fff;
    color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.mx-btn-white:hover {
    background: #F0F4F8;
}

.mx-btn-outline-light {
    background: transparent;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.mx-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.miroseo-home .mx-btn-outline {
    background: #fff;
    color: #0f172a;
    border-color: #cbd5e1;
}

.miroseo-home .mx-btn-outline:hover {
    border-color: #94a3b8;
    background: #F0F4F8;
}

.mx-header-cta { padding: 10px 20px !important; font-size: 0.82rem !important; }

/* ─── Hero ─── */
.miroseo .mx-hero {
    position: relative;
    padding: 56px 0 72px;
    overflow: hidden;
    background: linear-gradient(165deg, #020617 0%, #0f172a 55%, #1e293b 100%);
    color: var(--mx-text);
}

.mx-hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, #000 20%, transparent 90%);
    pointer-events: none;
}

.mx-hero-bg::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 55%;
    height: 80%;
    background: radial-gradient(ellipse, var(--mx-gold-glow), transparent 65%);
    pointer-events: none;
}

.mx-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.mx-hero-centered {
    padding: 72px 0 80px;
    text-align: center;
}

.mx-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.mx-hero-lead-wide {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.mx-hero-actions-center,
.mx-hero-checks-center {
    justify-content: center;
}

.mx-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fde68a;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.mx-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.mx-hero h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.04em;
    color: #fff;
}

.mx-gradient {
    background: linear-gradient(135deg, #fff 0%, #fde68a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mx-hero-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--mx-muted);
    margin: 0 0 28px;
    max-width: 480px;
}

.mx-hero-lead strong { color: #e2e8f0; }

.mx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.mx-hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
    color: #64748b;
}

.mx-hero-checks li {
    position: relative;
    padding-left: 22px;
}

.mx-hero-checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mx-gold);
    font-weight: 700;
}

/* Hero plugin previews (not charts) */
.mx-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mx-preview {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--mx-border);
    border-radius: var(--mx-radius);
    overflow: hidden;
    box-shadow: var(--mx-shadow);
    backdrop-filter: blur(8px);
}

.mx-preview-woo { margin-left: 32px; }

.mx-preview-bar {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid var(--mx-border);
}

.mx-preview-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #334155;
}

.mx-preview-bar span:nth-child(1) { background: #ef4444; }
.mx-preview-bar span:nth-child(2) { background: #eab308; }
.mx-preview-bar span:nth-child(3) { background: #22c55e; }

.mx-preview-body { padding: 18px 20px; }

.mx-preview-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mx-gold);
    margin-bottom: 14px;
}

.mx-preview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--mx-border);
    font-size: 0.88rem;
    color: #cbd5e1;
}

.mx-preview-row:last-child { border-bottom: none; }

.mx-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
}

.mx-badge.gold {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.mx-stat {
    font-family: var(--mx-mono);
    font-size: 0.82rem;
    font-weight: 700;
    color: #4ade80;
}

/* ─── Highlights (below hero) ─── */
.mx-highlights {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    padding: 36px 0 40px;
    margin-top: -1px;
}

.mx-highlights-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.mx-highlight-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.mx-highlight-glow {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 120%;
    border-radius: 50%;
    opacity: 0.35;
    pointer-events: none;
    transition: opacity 0.25s;
}

.mx-highlight-card-seo .mx-highlight-glow {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.45), transparent 70%);
}

.mx-highlight-card-woo .mx-highlight-glow {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.4), transparent 70%);
}

.mx-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.mx-highlight-card-seo:hover {
    border-color: rgba(251, 191, 36, 0.45);
}

.mx-highlight-card-woo:hover {
    border-color: rgba(34, 197, 94, 0.45);
}

.mx-highlight-card:hover .mx-highlight-glow {
    opacity: 0.65;
}

.mx-highlight-icon {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mx-highlight-card-seo .mx-highlight-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(217, 119, 6, 0.08));
    box-shadow: 0 0 24px rgba(251, 191, 36, 0.15);
}

.mx-highlight-card-woo .mx-highlight-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.08));
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.12);
}

.mx-highlight-text {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mx-highlight-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: -0.02em;
}

.mx-highlight-desc {
    font-size: 0.84rem;
    color: #94a3b8;
    line-height: 1.45;
}

.mx-highlight-arrow {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #64748b;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: color 0.2s, background 0.2s, transform 0.2s;
}

.mx-highlight-card:hover .mx-highlight-arrow {
    color: #fde68a;
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.25);
    transform: translateX(2px);
}

.mx-highlight-card-woo:hover .mx-highlight-arrow {
    color: #86efac;
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.25);
}

.mx-highlights-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
}

.mx-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    font-size: 0.8rem;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 999px;
}

.mx-highlight-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mx-gold);
    box-shadow: 0 0 8px var(--mx-gold);
}

.mx-highlight-badge-dot-green {
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.mx-highlight-badge strong {
    color: #f8fafc;
    font-weight: 700;
}

/* ─── Plugin spotlights ─── */
.mx-spotlight {
    padding: 80px 0;
    background: #fff;
}

.mx-spotlight-alt {
    background: #F0F4F8;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.mx-spotlight-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.mx-spotlight-grid-reverse .mx-spotlight-copy { order: 2; }
.mx-spotlight-grid-reverse .mx-spotlight-panel { order: 1; }

.mx-spotlight-copy .mx-eyebrow {
    margin-bottom: 12px;
}

.mx-spotlight-copy h2 {
    font-size: clamp(1.65rem, 2.8vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0 0 16px;
}

.mx-spotlight-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 24px;
    max-width: 560px;
}

.mx-spotlight-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 14px;
}

.mx-spotlight-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.mx-spotlight-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mx-gold);
}

.mx-spotlight-list strong {
    color: #0f172a;
}

.mx-spotlight-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mx-spotlight-panel {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: var(--mx-radius);
    padding: 32px 28px;
    box-shadow: var(--mx-shadow);
}

.mx-spotlight-panel-seo {
    border-top: 4px solid var(--mx-gold);
}

.mx-spotlight-panel-woo {
    border-top: 4px solid #22c55e;
}

.mx-spotlight-panel h3 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fde68a;
    margin: 0 0 10px;
}

.mx-spotlight-panel h3:not(:first-child) {
    margin-top: 24px;
}

.mx-spotlight-panel p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #94a3b8;
}

.mx-spotlight-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.mx-spotlight-panel ul li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.mx-spotlight-panel ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

/* ─── Sections shared ─── */
.mx-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mx-gold-dark);
    margin-bottom: 10px;
}

.mx-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.mx-section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.mx-section-head p {
    margin: 0 auto;
    max-width: 620px;
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: var(--mx-body-color);
}

.mx-section-head-light h2,
.mx-why .mx-section-head h2 {
    color: #ffffff;
}

.mx-section-head-light .mx-eyebrow {
    color: #fde68a;
}

.mx-section-head-light p,
.mx-why .mx-section-head p {
    color: #94a3b8;
}

/* ─── Marketplace cards ─── */
.mx-market {
    padding: 96px 0 100px;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.mx-market-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, #F0F4F8 0%, transparent 100%);
    pointer-events: none;
}

.mx-market::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.mx-market::after {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 90vw);
    height: 400px;
    background: radial-gradient(ellipse, rgba(251, 191, 36, 0.08), transparent 70%);
    pointer-events: none;
}

.mx-market .mx-container {
    position: relative;
    z-index: 1;
}

.mx-section-head-market {
    margin-bottom: 56px;
}

.mx-section-head-market .mx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: #fde68a;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.mx-market .mx-section-head h2 {
    color: #f8fafc;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.mx-market .mx-section-head p {
    color: #94a3b8;
    max-width: 560px;
    font-size: 1.08rem;
}

.mx-grid-plugins {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    align-items: stretch;
}

.mx-card {
    position: relative;
    display: flex;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mx-card-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mx-card--mirolabs .mx-card-glow {
    background: radial-gradient(ellipse at 90% 0%, rgba(251, 191, 36, 0.2), transparent 60%);
}

.mx-card--mirocart .mx-card-glow {
    background: radial-gradient(ellipse at 90% 0%, rgba(34, 197, 94, 0.16), transparent 60%);
}

.mx-card--mirogeo-local .mx-card-glow {
    background: radial-gradient(ellipse at 90% 0%, rgba(27, 154, 170, 0.18), transparent 60%);
}

.mx-card--mirosell-digital .mx-card-glow {
    background: radial-gradient(ellipse at 90% 0%, rgba(139, 92, 246, 0.18), transparent 60%);
}

.mx-card-inner {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px 28px 24px;
    background: linear-gradient(165deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 1) 100%);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.mx-card:hover {
    transform: translateY(-5px);
}

.mx-card:hover .mx-card-glow {
    opacity: 1;
}

.mx-card:hover .mx-card-inner {
    border-color: rgba(148, 163, 184, 0.3);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.mx-card.is-featured .mx-card-inner {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: inset 0 1px 0 rgba(251, 191, 36, 0.15);
}

.mx-card-band {
    display: block;
    margin-bottom: 18px;
}

.mx-card-band-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.mx-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mx-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.mx-card-cat {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    padding: 4px 9px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mx-card-flag {
    font-size: 0.62rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fde047, #f59e0b);
    color: #111827;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mx-card-icon-wrap {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mx-card--mirolabs .mx-card-icon-wrap {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(217, 119, 6, 0.08));
    box-shadow: 0 0 28px rgba(251, 191, 36, 0.12);
}

.mx-card--mirocart .mx-card-icon-wrap {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.08));
    box-shadow: 0 0 28px rgba(34, 197, 94, 0.1);
}

.mx-card--mirogeo-local .mx-card-icon-wrap {
    background: linear-gradient(135deg, rgba(27, 154, 170, 0.22), rgba(15, 76, 92, 0.08));
    box-shadow: 0 0 28px rgba(27, 154, 170, 0.12);
}

.mx-card--mirosell-digital .mx-card-icon-wrap {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(91, 33, 182, 0.08));
    box-shadow: 0 0 28px rgba(139, 92, 246, 0.12);
}

.mx-card-icon {
    font-size: 1.85rem;
    line-height: 1;
}

.mx-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 4px;
    letter-spacing: -0.03em;
    color: #f8fafc;
    line-height: 1.2;
}

.mx-card-tagline {
    font-size: 0.84rem;
    font-weight: 600;
    color: #fde68a;
    margin: 0;
    line-height: 1.4;
}

.mx-card--mirocart .mx-card-tagline {
    color: #86efac;
}

.mx-card--mirogeo-local .mx-card-tagline {
    color: #67e8f9;
}

.mx-card--mirosell-digital .mx-card-tagline {
    color: #c4b5fd;
}

.mx-card-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #94a3b8;
    margin: 0 0 16px;
}

.mx-card-features {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    flex: 1;
    display: grid;
    gap: 8px;
}

.mx-card-features li {
    position: relative;
    padding: 12px 14px 12px 38px;
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.55;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 10px;
}

.mx-card-features li::before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--mx-gold);
}

.mx-card--mirocart .mx-card-features li::before {
    color: #4ade80;
}

.mx-card--mirogeo-local .mx-card-features li::before {
    color: #22d3ee;
}

.mx-card--mirosell-digital .mx-card-features li::before {
    color: #a78bfa;
}

.mx-card-foot {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.mx-card-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 14px;
    margin-bottom: 16px;
}

.mx-card-price {
    font-size: 1.85rem;
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -0.04em;
    line-height: 1;
}

.mx-card-price-note {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.45;
}

.mx-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mx-btn-block {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.92rem;
}

.mx-card-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
}

.mx-card-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.mx-card-links a:hover {
    color: #fde68a;
}

.mx-card--mirocart .mx-card-links a:hover {
    color: #86efac;
}

.mx-card--mirogeo-local .mx-card-links a:hover {
    color: #67e8f9;
}

.mx-card--mirosell-digital .mx-card-links a:hover {
    color: #c4b5fd;
}

/* ─── Steps ─── */
.mx-steps {
    padding: 80px 0;
    background: #fff;
}

.mx-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mx-step {
    padding: 28px;
    border-radius: var(--mx-radius);
    border: 1px solid #e2e8f0;
    background: #F0F4F8;
}

.mx-step-num {
    display: block;
    font-family: var(--mx-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--mx-gold-dark);
    margin-bottom: 12px;
}

.mx-step h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.mx-step p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* ─── Why ─── */
.mx-why {
    padding: 80px 0;
    background: linear-gradient(165deg, #020617, #0f172a);
    color: #fff;
}

.mx-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mx-why-card {
    padding: 28px;
    border-radius: var(--mx-radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--mx-border);
    text-align: center;
}

.mx-why-icon { font-size: 2rem; margin-bottom: 12px; }

.mx-why-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    color: #f8fafc;
}

.mx-why-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.65;
}

/* ─── Trust ─── */
.mx-trust {
    padding: 56px 0;
    background: #F0F4F8;
}

.mx-trust .mx-section-head {
    margin-bottom: 32px;
}

.mx-trust .mx-section-head h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    margin: 0 0 10px;
}

.mx-trust .mx-section-head p {
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 540px;
}

.mx-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    max-width: 1040px;
    margin: 0 auto;
}

.mx-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 24px 20px 26px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.mx-trust-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 0 14px;
    flex-shrink: 0;
    border-radius: 14px;
    font-size: 2rem;
    line-height: 1;
    background: linear-gradient(145deg, #fffbeb 0%, #fde68a 42%, #fbbf24 100%);
    border: 2px solid rgba(251, 191, 36, 0.45);
    box-shadow:
        0 8px 20px rgba(245, 158, 11, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.miroseo .mx-trust-ico,
.miroseo-home .mx-trust-ico,
.mx-pricing-page .mx-trust-ico {
    font-size: 2rem;
    line-height: 1;
}

.mx-trust .mx-section-head p {
    font-weight: 500;
    color: #334155;
}

.mx-trust-item h4 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.mx-trust-item .mx-trust-desc {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
    color: #475569;
}

.mx-guarantee {
    text-align: center;
    padding: 28px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fde047 0%, #f59e0b 100%);
    color: #111827;
    box-shadow: 0 12px 36px rgba(245, 158, 11, 0.22);
    max-width: 1040px;
    margin: 0 auto;
}

.mx-guarantee h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 800;
}

.mx-guarantee p {
    margin: 0;
    font-size: 0.92rem;
    opacity: 0.92;
    line-height: 1.55;
}

.mx-guarantee .mx-btn {
    margin-top: 16px;
}

/* ─── CTA ─── */
.mx-cta {
    padding: 80px 24px;
    background: var(--mx-bg);
}

.mx-cta-box {
    text-align: center;
    padding: 56px 32px;
    border-radius: 24px;
    border: 1px solid var(--mx-border);
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(251, 191, 36, 0.12), transparent),
        linear-gradient(165deg, #0f172a, #020617);
}

.mx-cta-box h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 12px;
    color: #fff;
}

.mx-cta-box p {
    color: var(--mx-muted);
    margin: 0 0 28px;
    font-size: 1.05rem;
}

.mx-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ─── Footer ─── */
.mx-site-footer {
    background: #020617;
    color: #94a3b8;
    padding: 64px 0 32px;
}

.mx-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.mx-footer-brand .mx-logo-text {
    color: #fde68a;
    font-size: 1.35rem;
}

.mx-footer-brand p {
    margin: 12px 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.mx-footer-col h4 {
    margin: 0 0 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #e2e8f0;
}

.mx-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mx-footer-col li { margin-bottom: 10px; }

.mx-footer-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s;
}

.mx-footer-col a:hover { color: var(--mx-gold); }

.mx-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.mx-footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
}

.mx-footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.mx-footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.15s;
}

.mx-footer-legal a:hover {
    color: var(--mx-gold);
}

.mx-footer-legal-sep {
    color: #475569;
}

.mx-copyright {
    margin: 0;
    font-size: 0.85rem;
}

.mx-copyright a { color: #fde68a; text-decoration: none; }

/* ─── Inner pages ─── */
.miroseo .miro-container {
    width: min(var(--mx-max), 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.mx-page-hero,
.miroseo .miro-pricing-hero,
.miroseo .miro-contact-hero,
.miroseo .miro-about-hero,
.miroseo .miro-docs-header,
.miroseo .miro-hero-section {
    background: linear-gradient(165deg, #020617, #0f172a);
    padding: 56px 24px 48px;
    text-align: center;
    color: #f1f5f9;
}

.mx-page-hero-sm { padding: 40px 24px 32px; }

.mx-page-hero h1,
.miroseo .miro-pricing-hero h1,
.miroseo .miro-contact-hero h1,
.miroseo .miro-about-hero h1,
.miroseo .miro-docs-header h1,
.miroseo .miro-hero-section h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.03em;
}

.mx-page-meta { color: var(--mx-muted); margin-top: 10px; }

.mx-page-content,
.miroseo .miro-content-section {
    padding: 56px 24px 72px;
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: var(--mx-body-color);
}

.miroseo .miro-content-section { background: #F0F4F8; }
.miroseo .miro-content-section.alternate { background: #fff; }

/* ─── Blog (featured images + SEO-friendly layout) ─── */
.mx-blog {
    --mx-blog-read: 760px;
    --mx-blog-text: #334155;
    --mx-blog-heading: #0f172a;
    --mx-blog-muted: #64748b;
    --mx-blog-border: #e2e8f0;
    --mx-blog-surface: #ffffff;
}

.mx-blog-single {
    --mx-blog-read: var(--mx-max);
}

.mx-blog-archive-header,
.mx-blog-header {
    background: var(--mx-blog-surface);
    border-bottom: 1px solid var(--mx-blog-border);
    padding: 48px 0 40px;
}

.mx-blog-archive-header-inner,
.mx-blog-header-inner {
    max-width: var(--mx-blog-read);
    margin: 0 auto;
    text-align: left;
}

.mx-blog-kicker {
    margin: 0 0 10px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mx-gold-dark);
}

.mx-blog-archive-header h1,
.mx-blog-title {
    margin: 0;
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--mx-blog-heading);
}

.mx-blog-lead {
    margin: 14px 0 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--mx-blog-muted);
    max-width: 640px;
}

.mx-blog-list {
    padding: 48px 24px 72px;
}

.mx-post-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.mx-post-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--mx-blog-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.25s, transform 0.25s;
}

.mx-post-card:hover {
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
    transform: translateY(-3px);
}

.mx-post-card-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e8edf2;
}

.mx-post-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.mx-post-card:hover .mx-post-card-img {
    transform: scale(1.04);
}

.mx-post-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2.5rem;
    background: linear-gradient(145deg, #eef2ff, #e8edf2);
}

.mx-post-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 24px 26px;
}

.mx-post-card-cat {
    margin: 0 0 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mx-post-card-cat a {
    color: var(--mx-gold-dark);
    text-decoration: none;
}

.mx-post-card-cat a:hover {
    text-decoration: underline;
}

.mx-post-card-title {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.mx-post-card-title a {
    color: var(--mx-blog-heading);
    text-decoration: none;
}

.mx-post-card-title a:hover {
    color: #4338ca;
}

.mx-post-card .mx-blog-meta {
    margin-bottom: 12px;
}

.mx-post-card-excerpt {
    margin: 0 0 16px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--mx-blog-text);
    flex: 1;
}

.mx-post-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #4338ca;
    text-decoration: none;
}

.mx-post-card-link:hover {
    text-decoration: underline;
}

.mx-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--mx-blog-muted);
}

.mx-blog-meta strong {
    color: var(--mx-blog-heading);
    font-weight: 600;
}

.mx-blog-meta-cats a {
    color: #4338ca;
    text-decoration: none;
    font-weight: 600;
}

.mx-blog-meta-cats a:hover {
    text-decoration: underline;
}

.mx-blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--mx-blog-muted);
}

.mx-blog-breadcrumb a {
    color: #4338ca;
    text-decoration: none;
}

.mx-blog-breadcrumb a:hover {
    text-decoration: underline;
}

.mx-blog-breadcrumb-current {
    color: var(--mx-blog-heading);
    font-weight: 600;
}

.mx-blog-breadcrumb-sep {
    color: var(--mx-blog-muted);
}

.mx-blog-article-inner {
    max-width: var(--mx-blog-read);
    margin: 0 auto;
    padding: 40px 24px 72px;
}

.mx-blog-featured {
    margin: 0 0 32px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--mx-blog-border);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.mx-blog-featured-img {
    display: block;
    width: 100%;
    height: auto;
}

.mx-blog-single {
    font-family: var(--mx-font);
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: var(--mx-body-color);
}

.mx-blog-single .mx-blog-breadcrumb,
.mx-blog-single .mx-blog-meta,
.mx-blog-single .mx-blog-tags,
.mx-blog-single .mx-blog-back,
.mx-blog-single .mx-entry-content {
    font-family: var(--mx-font);
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: var(--mx-body-color);
}

.mx-blog-single .mx-blog-meta strong,
.mx-blog-single .mx-blog-tags-label {
    font-weight: var(--mx-body-weight);
    color: var(--mx-body-color);
}

.mx-blog-single .mx-blog-breadcrumb a,
.mx-blog-single .mx-blog-meta-cats a,
.mx-blog-single .mx-blog-tags a,
.mx-blog-single .mx-blog-back a,
.mx-blog-single .mx-entry-content a {
    color: var(--mx-body-color);
    font-weight: var(--mx-body-weight);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mx-entry-content {
    font-family: var(--mx-font);
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: var(--mx-body-color);
}

.mx-entry-content > *:first-child {
    margin-top: 0;
}

.mx-entry-content > *:last-child {
    margin-bottom: 0;
}

.mx-entry-content h2,
.mx-entry-content h3,
.mx-entry-content h4 {
    color: var(--mx-blog-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 2em 0 0.75em;
}

.mx-entry-content h2 { font-size: 1.65rem; }
.mx-entry-content h3 { font-size: 1.35rem; }
.mx-entry-content h4 { font-size: 1.15rem; }

.mx-entry-content p {
    margin: 0 0 1.25em;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit;
}

.mx-entry-content a {
    color: var(--mx-body-color);
    font-weight: var(--mx-body-weight);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mx-entry-content ul,
.mx-entry-content ol {
    margin: 0 0 1.25em;
    padding-left: 1.4em;
}

.mx-entry-content li {
    margin-bottom: 0.5em;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit;
}

.mx-entry-content blockquote {
    margin: 1.5em 0;
    padding: 18px 22px;
    border-left: 4px solid var(--mx-gold);
    background: #fffbeb;
    border-radius: 0 12px 12px 0;
    color: var(--mx-body-color);
    font-weight: var(--mx-body-weight);
    font-size: inherit;
    line-height: inherit;
}

.mx-entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.mx-blog-single .mx-entry-content .wp-block-image,
.mx-blog-single .mx-entry-content .wp-block-image figure,
.mx-blog-single .mx-entry-content .wp-block-image figure.is-resized,
.mx-blog-single .mx-entry-content .wp-block-gallery,
.mx-blog-single .mx-entry-content .wp-block-columns,
.mx-blog-single .mx-entry-content .wp-block-group,
.mx-blog-single .mx-entry-content .wp-block-cover,
.mx-blog-single .mx-entry-content .wp-block-media-text,
.mx-blog-single .mx-entry-content .alignwide,
.mx-blog-single .mx-entry-content .alignfull {
    max-width: 100%;
    width: 100%;
}

.mx-blog-single .mx-entry-content .wp-block-image img,
.mx-blog-single .mx-entry-content .wp-block-gallery img,
.mx-blog-single .mx-entry-content figure img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
}

.mx-blog-single .mx-entry-content .wp-block-columns {
    gap: 1.5rem;
}

.mx-blog-single .mx-entry-content .wp-block-column {
    min-width: 0;
}

.mx-entry-content pre,
.mx-entry-content code {
    font-family: var(--mx-mono);
    font-size: 0.92em;
}

.mx-entry-content pre {
    overflow-x: auto;
    padding: 16px 18px;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 12px;
    margin: 1.5em 0;
}

.mx-entry-content :not(pre) > code {
    padding: 2px 6px;
    background: #f1f5f9;
    border-radius: 6px;
}

.mx-blog-tags {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--mx-blog-border);
    font-size: 0.95rem;
    color: var(--mx-blog-muted);
}

.mx-blog-tags-label {
    font-weight: 700;
    color: var(--mx-blog-heading);
    margin-right: 8px;
}

.mx-blog-tags a {
    color: #4338ca;
    text-decoration: none;
    font-weight: 600;
}

.mx-blog-tags a:hover {
    text-decoration: underline;
}

.mx-blog-back {
    margin: 28px 0 0;
}

.mx-blog-back a {
    font-weight: 700;
    color: #4338ca;
    text-decoration: none;
}

.mx-blog-back a:hover {
    text-decoration: underline;
}

.mx-blog-pagination {
    margin-top: 40px;
}

.mx-blog-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.mx-blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid var(--mx-blog-border);
    background: #fff;
    color: var(--mx-blog-heading);
    font-weight: 600;
    text-decoration: none;
}

.mx-blog-pagination .page-numbers.current {
    background: #4338ca;
    border-color: #4338ca;
    color: #fff;
}

.mx-blog-empty {
    text-align: center;
    color: var(--mx-blog-muted);
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .mx-post-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mx-blog-archive-header,
    .mx-blog-header {
        padding: 36px 0 28px;
    }

    .mx-blog-list {
        padding: 32px 16px 56px;
    }

    .mx-blog-article-inner {
        padding: 28px 16px 56px;
    }

    .mx-blog-single,
    .mx-blog-single .mx-blog-breadcrumb,
    .mx-blog-single .mx-blog-meta,
    .mx-blog-single .mx-blog-tags,
    .mx-blog-single .mx-blog-back,
    .mx-blog-single .mx-entry-content,
    .mx-blog-single .mx-entry-content p,
    .mx-blog-single .mx-entry-content li,
    .mx-blog-single .mx-entry-content blockquote {
        font-size: 21px;
        line-height: 31px;
    }
}

.miroseo .miro-section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.miroseo .miro-section-subtitle {
    text-align: center;
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: var(--mx-body-color);
    max-width: 620px;
    margin: 0 auto 32px;
}

.miroseo .miro-btn,
.miroseo .miro-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    border-radius: var(--mx-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    background: linear-gradient(135deg, #fde047, #f59e0b);
    color: #111827;
}

.miroseo .miro-btn-demo,
.miroseo .miro-btn-outline {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
}

.miroseo .miro-cta-section {
    padding: 72px 24px;
    text-align: center;
    background: #0f172a;
    color: #f1f5f9;
}

.miroseo .miro-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    max-width: var(--mx-max);
    margin: 0 auto;
    padding: 0 24px 56px;
}

.miroseo .miro-contact-form-wrap {
    background: #fff;
    padding: 28px;
    border-radius: var(--mx-radius);
    border: 1px solid #e2e8f0;
    box-shadow: var(--mx-shadow);
}

.miroseo .miro-form-group { margin-bottom: 18px; }
.miroseo .miro-form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; }
.miroseo .miro-form-group input,
.miroseo .miro-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font: inherit;
}

.miroseo .miro-form-group input:focus,
.miroseo .miro-form-group textarea:focus {
    outline: none;
    border-color: var(--mx-gold);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.miroseo .miro-docs-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    max-width: var(--mx-max);
    margin: 0 auto;
    padding: 40px 24px 72px;
}

.miroseo .miro-docs-content {
    background: #fff;
    padding: 32px;
    border-radius: var(--mx-radius);
    border: 1px solid #e2e8f0;
}

.miroseo .miro-features-grid,
.miroseo .miro-commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.miroseo .miro-feature-card,
.miroseo .miro-commitment-item {
    background: #fff;
    padding: 24px;
    border-radius: var(--mx-radius);
    border: 1px solid #e2e8f0;
}

/* About — Our Expertise */
.miroseo .miro-expertise-section {
    padding: 72px 24px 80px;
    background: #fff;
}

.miroseo .miro-expertise-section .miro-section-title {
    margin-bottom: 48px;
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 500;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.miroseo .miro-expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--mx-max);
    margin: 0 auto;
}

.miroseo .miro-expertise-item {
    text-align: center;
    padding: 36px 24px 32px;
    background: #F0F4F8;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.miroseo .miro-expertise-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.miroseo .miro-expertise-icon-wrap {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.12) 0%, rgba(251, 191, 36, 0.22) 100%);
    border: 3px solid rgba(251, 191, 36, 0.4);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.12);
}

.miroseo .miro-expertise-icon {
    display: block;
    font-size: 2.25rem;
    line-height: 1;
}

.miroseo .miro-expertise-item h3 {
    font-size: 1.35rem;
    font-weight: 500;
    color: #0f172a;
    margin: 0 0 14px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.miroseo .miro-expertise-item p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

@media (max-width: 1024px) {
    .miroseo .miro-expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .miroseo .miro-expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .miroseo .miro-expertise-icon-wrap {
        width: 88px;
        height: 88px;
        margin-bottom: 20px;
    }

    .miroseo .miro-expertise-icon {
        font-size: 2rem;
    }
}

.miroseo .miro-compare-wrap { overflow-x: auto; border-radius: var(--mx-radius); border: 1px solid #e2e8f0; }
.miroseo .miro-compare-table { width: 100%; border-collapse: collapse; background: #fff; }
.miroseo .miro-compare-table th { background: #0f172a; color: #fff; padding: 12px 16px; }
.miroseo .miro-compare-table td { padding: 12px 16px; border-bottom: 1px solid #f1f5f9; }

.miroseo .miro-price-and-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: var(--mx-max);
    margin: 0 auto;
    padding: 0 24px;
}

.miroseo .miro-price-card {
    background: #fff;
    border-radius: var(--mx-radius);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: var(--mx-shadow);
}

/* ─── Pricing page ─── */
.mx-pricing-page {
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: #334155;
    --mx-pricing-copy: 18px;
    --mx-pricing-copy-lh: 28px;
    --mx-pricing-copy-weight: 500;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.mx-pricing-page .mx-trust {
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

.mx-pricing-page .mx-trust .mx-section-head p {
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: 500;
    color: #334155;
}

.mx-pricing-page .mx-trust-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.mx-pricing-page .mx-trust-item .mx-trust-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
    color: #475569;
}

.mx-pricing-page .mx-guarantee h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.3;
}

.mx-pricing-page .mx-guarantee p {
    font-size: var(--mx-pricing-copy);
    line-height: var(--mx-pricing-copy-lh);
    font-weight: var(--mx-pricing-copy-weight);
}

.mx-pricing-page .mx-pricing-hero {
    position: relative;
    padding: 72px 0 64px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(165deg, #020617 0%, #0f172a 55%, #1e293b 100%);
    color: #f1f5f9;
}

.mx-pricing-page .mx-pricing-hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.mx-pricing-page .mx-pricing-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.mx-pricing-page .mx-pricing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 22px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fde68a;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: 999px;
}

.mx-pricing-page .mx-pricing-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.mx-pricing-page .mx-pricing-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
    margin: 0 0 20px;
    color: #fff;
}

.mx-pricing-page .mx-pricing-hero h1 .mx-gradient {
    background: linear-gradient(135deg, #fff 0%, #fde68a 55%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mx-pricing-page .mx-pricing-lead {
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: 500;
    color: #e2e8f0;
    margin: 0 auto 28px;
    max-width: 620px;
}

.mx-pricing-page .mx-pricing-lead strong {
    color: #fde68a;
    font-weight: 600;
}

.mx-pricing-page .mx-pricing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.mx-pricing-page .mx-pricing-hero-notes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--mx-pricing-copy);
    line-height: var(--mx-pricing-copy-lh);
    font-weight: var(--mx-pricing-copy-weight);
    color: #cbd5e1;
}

.mx-pricing-page .mx-pricing-hero-notes li {
    position: relative;
    padding-left: 20px;
}

.mx-pricing-page .mx-pricing-hero-notes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mx-gold);
    font-weight: 700;
}

.mx-pricing-page .mx-pricing-compat {
    padding: 32px 0;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    border-bottom: none;
}

.mx-pricing-page .mx-pricing-compat-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    max-width: 920px;
    margin: 0 auto;
}

.mx-pricing-page .mx-pricing-compat-label {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #92400e;
    padding: 6px 12px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 999px;
}

.mx-pricing-page .mx-pricing-compat-inner p {
    margin: 0;
    flex: 1;
    min-width: 240px;
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    color: var(--mx-body-color);
    font-weight: var(--mx-body-weight);
}

.mx-pricing-page .mx-pricing-section {
    padding: 72px 0;
    background: #F0F4F8;
}

.mx-pricing-page .mx-pricing-section-alt {
    background: #fff;
}

.mx-pricing-page .mx-pricing-section-head {
    text-align: center;
    margin-bottom: 40px;
}

.mx-pricing-page .mx-pricing-section-head .mx-eyebrow {
    display: inline-flex;
    padding: 6px 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #92400e;
    background: rgba(251, 191, 36, 0.14);
    border: 1px solid rgba(245, 158, 11, 0.28);
}

.mx-pricing-page .mx-pricing-section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0 0 12px;
}

.mx-pricing-page .mx-pricing-section-head p {
    margin: 0 auto;
    max-width: 620px;
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: var(--mx-body-color);
}

.mx-pricing-page .mx-pricing-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    background: #fff;
}

.mx-pricing-page .mx-pricing-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 0.95rem;
    line-height: 1.5;
}

.mx-pricing-page .mx-pricing-table th,
.mx-pricing-page .mx-pricing-table td {
    padding: 14px 18px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
}

.mx-pricing-page .mx-pricing-table thead th {
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.4;
    border-bottom: 1px solid #e2e8f0;
}

.mx-pricing-page .mx-pricing-table thead th.is-highlight {
    background: #fffbeb;
    border-top: 3px solid #f59e0b;
}

.mx-pricing-page .mx-pricing-table-price {
    display: block;
    margin-top: 4px;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1.1;
}

.mx-pricing-page .mx-pricing-table tbody td:first-child {
    color: #1e293b;
    font-weight: 500;
    max-width: 380px;
}

.mx-pricing-page .mx-pricing-table tbody td:not(:first-child):not(.is-highlight) {
    color: #475569;
    font-weight: 500;
}

.mx-pricing-page .mx-pricing-table tbody td.is-highlight {
    background: #fffbeb;
    text-align: center;
    font-weight: 600;
    color: #0f172a;
}

.mx-pricing-page .mx-pricing-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #059669;
    font-weight: 700;
    font-size: 0.72rem;
}

.mx-pricing-page .mx-pricing-offer {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 32px;
    align-items: start;
}

.mx-pricing-page .mx-pricing-plan {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
    background: #fff;
}

.mx-pricing-page .mx-pricing-plan-band {
    padding: 22px 24px 20px;
    background: linear-gradient(135deg, #92400e 0%, #d97706 45%, #fbbf24 100%);
    color: #fff;
}

.mx-pricing-page .mx-pricing-plan-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #fff;
    color: #92400e;
    border-radius: 999px;
}

.mx-pricing-page .mx-pricing-plan-band h3 {
    margin: 0 0 6px;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
}

.mx-pricing-page .mx-pricing-plan-band p {
    margin: 0;
    font-size: var(--mx-pricing-copy);
    line-height: var(--mx-pricing-copy-lh);
    color: rgba(255, 255, 255, 0.95);
}

.mx-pricing-page .mx-pricing-plan-body {
    padding: 28px 24px;
}

.mx-pricing-page .mx-pricing-plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.mx-pricing-page .mx-pricing-plan-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #b45309;
}

.mx-pricing-page .mx-pricing-plan-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: #0f172a;
    letter-spacing: -0.04em;
}

.mx-pricing-page .mx-pricing-plan-term {
    font-size: var(--mx-pricing-copy);
    font-weight: 600;
    color: #64748b;
}

.mx-pricing-page .mx-pricing-plan-note {
    margin: 0 0 20px;
    font-size: var(--mx-pricing-copy);
    line-height: var(--mx-pricing-copy-lh);
    font-weight: var(--mx-pricing-copy-weight);
    color: var(--mx-body-color);
}

.mx-pricing-page .mx-pricing-plan-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.mx-pricing-page .mx-pricing-plan-demo {
    margin: 0;
    text-align: center;
    font-size: var(--mx-pricing-copy);
    line-height: var(--mx-pricing-copy-lh);
    color: #475569;
}

.mx-pricing-page .mx-pricing-includes {
    padding: 32px;
    background: #F0F4F8;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.mx-pricing-page .mx-pricing-includes h3 {
    margin: 0 0 20px;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
}

.mx-pricing-page .mx-pricing-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.mx-pricing-page .mx-pricing-checklist li {
    position: relative;
    padding: 14px 16px 14px 40px;
    font-size: var(--mx-pricing-copy);
    line-height: var(--mx-pricing-copy-lh);
    font-weight: var(--mx-pricing-copy-weight);
    color: #1e293b;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.mx-pricing-page .mx-pricing-checklist li::before {
    content: '✓';
    position: absolute;
    left: 14px;
    top: 12px;
    color: #b45309;
    font-weight: 800;
}

.mx-pricing-page .mx-pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mx-pricing-page .mx-pricing-feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.mx-pricing-page .mx-pricing-feature-card h3 {
    margin: 0 0 16px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mx-pricing-page .mx-pricing-feature-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.mx-pricing-page .mx-pricing-feature-card li {
    position: relative;
    padding-left: 18px;
    font-size: var(--mx-pricing-copy);
    line-height: var(--mx-pricing-copy-lh);
    font-weight: var(--mx-pricing-copy-weight);
    color: #1e293b;
}

.mx-pricing-page .mx-pricing-feature-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f59e0b;
}

.mx-pricing-page .mx-pricing-summary {
    max-width: 820px;
    margin: 0 auto;
    padding: 32px 36px;
    background: #fff;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.08);
}

.mx-pricing-page .mx-pricing-summary h2 {
    margin: 0 0 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.mx-pricing-page .mx-pricing-checklist-compact li {
    font-size: var(--mx-pricing-copy);
    line-height: var(--mx-pricing-copy-lh);
    background: #fffbeb;
    border-color: #fde68a;
}

.mx-pricing-page .mx-pricing-final {
    padding: 72px 0;
    text-align: center;
    background: var(--mx-bg-light);
    color: #0f172a;
    border-top: 1px solid #e2e8f0;
}

.mx-pricing-page .mx-pricing-final-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.mx-pricing-page .mx-pricing-final h2 {
    font-size: clamp(1.85rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
    color: #0f172a;
}

.mx-pricing-page .mx-pricing-final p {
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    color: #334155;
    font-weight: 500;
    margin: 0 0 28px;
}

.mx-pricing-page .mx-pricing-final-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.mx-pricing-page .mx-pricing-final-back {
    margin: 0;
    font-size: 0.9rem;
}

.mx-pricing-page .mx-pricing-final-back a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
}

.mx-pricing-page .mx-pricing-final-back a:hover {
    color: #b45309;
}



.mx-pricing-page .mx-pricing-plugins {
    padding-top: 0;
}

.mx-pricing-page .mx-pricing-overview .mx-grid-plugins {
    margin-top: 8px;
}

/* Per-plugin pricing blocks */
.mx-plugin-pricing {
    padding: 64px 0;
    border-top: 1px solid #e2e8f0;
}

.mx-plugin-pricing.is-alt {
    background: #f8fafc;
}

.mx-plugin-pricing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 40px;
    align-items: start;
}

.mx-plugin-pricing-head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.mx-plugin-pricing-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mx-plugin-pricing.is-alt .mx-plugin-pricing-icon {
    background: #fff;
}

.mx-plugin-pricing-copy h2 {
    margin: 0 0 6px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.15;
    color: #0f172a;
}

.mx-plugin-pricing-tagline {
    margin: 0;
    color: #64748b;
    font-size: 1rem;
}

.mx-plugin-pricing-desc {
    margin: 0 0 20px;
    color: var(--mx-body-color);
    max-width: 54ch;
}

.mx-plugin-pricing-highlights {
    margin-bottom: 18px;
}

.mx-plugin-pricing-more {
    margin: 0;
}

.mx-plugin-pricing-more a {
    color: #b45309;
    font-weight: 600;
    text-decoration: none;
}

.mx-plugin-pricing-more a:hover {
    text-decoration: underline;
}

.mx-plugin-pricing-offer .mx-plugin-pricing-plan {
    max-width: 420px;
    margin-left: auto;
}

.mx-plugin-pricing-was {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
    color: #94a3b8;
}

.mx-plugin-pricing-label {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
    color: #0f172a;
}

.mx-plugin-pricing--mirolabs .mx-pricing-plan-band {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.mx-plugin-pricing--mirocart .mx-pricing-plan-band {
    background: linear-gradient(135deg, #14532d 0%, #166534 100%);
}

.mx-plugin-pricing--mirogeo-local .mx-pricing-plan-band {
    background: linear-gradient(135deg, #0a3540 0%, #0f4c5c 100%);
}

.mx-plugin-pricing--mirosell-digital .mx-pricing-plan-band {
    background: linear-gradient(135deg, #3b0764 0%, #5b21b6 100%);
}

/* Marketplace pricing — matches theme cards & trust blocks */
.mx-pricing-blocks {
    background: var(--mx-bg-light);
    padding: 16px 0 56px;
}

.mx-pricing-block {
    scroll-margin-top: 96px;
    padding: 20px 0;
}

.mx-pricing-block-card {
    position: relative;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 28px 28px 24px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.09);
    overflow: hidden;
}

.mx-pricing-block-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0.35;
}

.mx-pricing-block--mirolabs .mx-pricing-block-glow {
    background: radial-gradient(ellipse at 92% 0%, rgba(251, 191, 36, 0.14), transparent 58%);
}

.mx-pricing-block--mirocart .mx-pricing-block-glow {
    background: radial-gradient(ellipse at 92% 0%, rgba(34, 197, 94, 0.12), transparent 58%);
}

.mx-pricing-block--mirogeo-local .mx-pricing-block-glow {
    background: radial-gradient(ellipse at 92% 0%, rgba(27, 154, 170, 0.13), transparent 58%);
}

.mx-pricing-block--miropage-seo .mx-pricing-block-glow {
    background: radial-gradient(ellipse at 92% 0%, rgba(59, 130, 246, 0.13), transparent 58%);
}

.mx-pricing-block--mirosell-digital .mx-pricing-block-glow {
    background: radial-gradient(ellipse at 92% 0%, rgba(139, 92, 246, 0.13), transparent 58%);
}

.mx-pricing-block-head,
.mx-pricing-block-caption,
.mx-pricing-block-footnote,
.mx-pricing-block .mx-pricing-table-wrap--block {
    position: relative;
    z-index: 1;
}

.mx-pricing-block-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
}

.mx-pricing-block-brand {
    display: flex;
    gap: 18px;
    align-items: center;
}

.mx-pricing-block-brand .mx-eyebrow {
    margin-bottom: 6px;
    color: #0f172a;
    font-weight: 800;
}

.mx-pricing-block-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    font-size: 1.9rem;
    line-height: 1;
    flex-shrink: 0;
    border: 1px solid rgba(148, 163, 184, 0.2);
    align-self: center;
}

.mx-pricing-block--mirolabs .mx-pricing-block-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.18), rgba(217, 119, 6, 0.06));
    box-shadow: 0 0 24px rgba(251, 191, 36, 0.1);
}

.mx-pricing-block--mirocart .mx-pricing-block-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(22, 163, 74, 0.06));
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.08);
}

.mx-pricing-block--mirogeo-local .mx-pricing-block-icon {
    background: linear-gradient(135deg, rgba(27, 154, 170, 0.18), rgba(15, 76, 92, 0.06));
    box-shadow: 0 0 24px rgba(27, 154, 170, 0.1);
}

.mx-pricing-block--miropage-seo .mx-pricing-block-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(30, 64, 175, 0.06));
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.1);
}

.mx-pricing-block--mirosell-digital .mx-pricing-block-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(91, 33, 182, 0.06));
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.1);
}

.mx-pricing-block-head h2 {
    margin: 0 0 4px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.mx-pricing-block-tagline {
    margin: 0;
    color: #334155;
    font-size: 1.02rem;
    line-height: 1.5;
    font-weight: 600;
}

.mx-pricing-block--mirolabs .mx-pricing-block-tagline { color: #78350f; }
.mx-pricing-block--mirocart .mx-pricing-block-tagline { color: #14532d; }
.mx-pricing-block--mirogeo-local .mx-pricing-block-tagline { color: #115e59; }
.mx-pricing-block--miropage-seo .mx-pricing-block-tagline { color: #1e40af; }
.mx-pricing-block--mirosell-digital .mx-pricing-block-tagline { color: #5b21b6; }

.mx-pricing-block-landing {
    flex-shrink: 0;
    margin-top: 4px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    white-space: nowrap;
}

.mx-pricing-block-landing:hover {
    color: var(--mx-gold-dark);
    text-decoration: underline;
}

.mx-pricing-block-caption {
    margin: 0 0 20px;
    max-width: 68ch;
    color: #334155;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.mx-pricing-block-footnote {
    margin: 18px 0 0;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}

.mx-pricing-block-footnote a {
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
}

.mx-pricing-block-footnote a:hover {
    color: var(--mx-gold-dark);
}

/* Comparison table — sharper contrast, readable on light bg */
.mx-pricing-block .mx-pricing-table-wrap--block {
    border-radius: 16px;
    border: 1px solid #cbd5e1;
    background: #fff;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.mx-pricing-page .mx-pricing-block .mx-pricing-table-wrap--block {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.mx-pricing-block .mx-pricing-table--compare {
    border-collapse: collapse;
    font-size: 1rem;
}

.mx-pricing-block .mx-pricing-table--compare thead th {
    text-align: center;
    vertical-align: bottom;
    min-width: 128px;
    padding: 20px 16px 16px;
    background: #f8fafc;
    color: #0f172a;
    border-bottom: 2px solid #e2e8f0;
    border-left: 1px solid #e2e8f0;
}

.mx-pricing-block .mx-pricing-table--compare .mx-pricing-table-feature-col {
    text-align: left;
    min-width: 200px;
    width: 36%;
    background: #f1f5f9;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #334155;
    border-left: none;
}

.mx-pricing-block .mx-pricing-table--compare thead th.is-highlight {
    background: #fef3c7;
    border-top: 4px solid var(--mx-gold);
    box-shadow: inset 0 0 0 1px rgba(217, 119, 6, 0.28);
}

.mx-pricing-block .mx-pricing-table-badge {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fde047, #f59e0b);
    color: #111827;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mx-pricing-block .mx-pricing-table-plan {
    display: block;
    font-size: 1.02rem;
    font-weight: 800;
    color: #0f172a;
}

.mx-pricing-block .mx-pricing-table-price {
    display: block;
    margin-top: 6px;
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: #0f172a;
}

.mx-pricing-block .mx-pricing-table-term {
    display: block;
    margin-top: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
}

.mx-pricing-block .mx-pricing-table--compare tbody th[scope="row"] {
    background: #fff;
    color: #1e293b;
    font-weight: 600;
    text-align: left;
    border-right: 1px solid #e2e8f0;
    font-size: 0.98rem;
    line-height: 1.45;
    position: sticky;
    left: 0;
    z-index: 1;
}

.mx-pricing-block .mx-pricing-table--compare tbody tr:nth-child(even) th[scope="row"] {
    background: #f8fafc;
}

.mx-pricing-block .mx-pricing-table--compare tbody td {
    text-align: center;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.98rem;
    border-left: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.mx-pricing-block .mx-pricing-table--compare tbody tr:nth-child(even) td:not(.is-highlight) {
    background: #f8fafc;
}

.mx-pricing-block .mx-pricing-table--compare tbody td.is-highlight {
    background: #fef3c7;
    font-weight: 700;
    color: #0f172a;
}

.mx-pricing-block .mx-pricing-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fde68a 0%, #f59e0b 100%);
    color: #78350f;
    border: 1px solid #d97706;
    font-weight: 800;
    font-size: 0.72rem;
}

.mx-pricing-block .mx-pricing-table--compare tfoot td {
    background: #fff;
    border-bottom: none;
    padding: 18px 16px 20px;
    vertical-align: middle;
    border-top: 2px solid #e2e8f0;
    border-left: 1px solid #e2e8f0;
}

.mx-pricing-block .mx-pricing-table--compare tfoot td.is-highlight {
    background: #fef3c7;
}

.mx-pricing-block .mx-pricing-table--compare .mx-pricing-table-price s {
    display: inline-block;
    margin-right: 4px;
    font-size: 0.72em;
    font-weight: 700;
    color: #64748b;
    text-decoration: line-through;
}

.mx-pricing-no {
    color: #94a3b8;
    font-weight: 600;
}

@media (max-width: 900px) {
    .mx-pricing-block {
        padding: 14px 0;
    }

    .mx-pricing-block-card {
        padding: 22px 18px 18px;
        border-radius: 16px;
    }

    .mx-pricing-block-head {
        flex-direction: column;
        gap: 12px;
    }

    .mx-pricing-block-landing {
        white-space: normal;
        margin-top: 0;
    }

    .mx-pricing-block .mx-pricing-table--compare .mx-btn {
        font-size: 0.8rem;
        padding: 11px 12px;
    }

    .mx-pricing-block .mx-pricing-table-price {
        font-size: 1.45rem;
    }

    .mx-pricing-page .mx-pricing-final {
        padding: 56px 0;
    }
}

.mx-mirolabs-pricing-back {
    margin: 24px 0 0;
}

.mx-mirolabs-pricing-back a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
}

.mx-mirolabs-pricing-back a:hover {
    color: #fde68a;
}

.mx-card-price-was {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-right: 6px;
}

.mx-card-price-term {
    display: inline-block;
    margin-left: 6px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 960px) {
    .mx-plugin-pricing-grid {
        grid-template-columns: 1fr;
    }

    .mx-plugin-pricing-offer .mx-plugin-pricing-plan {
        max-width: none;
        margin-left: 0;
    }
}

.mx-pricing-page .mx-pricing-final-demo {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 960px) {
    .mx-pricing-page .mx-pricing-offer,
    .mx-pricing-page .mx-pricing-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .mx-pricing-page .mx-pricing-compat {
        padding: 24px 0;
    }

    .mx-pricing-page .mx-pricing-compat-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .mx-pricing-page .mx-pricing-hero {
        padding: 56px 0 48px;
    }

    .mx-pricing-page .mx-pricing-hero-notes {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .mx-pricing-block {
        padding: 12px 0;
    }

    .mx-pricing-block-card {
        padding: 18px 14px 16px;
    }

    .mx-pricing-block-icon {
        width: 56px;
        height: 56px;
        font-size: 1.65rem;
        border-radius: 16px;
    }

    .mx-pricing-page .mx-pricing-table {
        min-width: 580px;
    }

    .mx-pricing-page .mx-pricing-table th,
    .mx-pricing-page .mx-pricing-table td {
        padding: 12px 14px;
    }

    .mx-pricing-page .mx-pricing-table-price {
        font-size: 1.4rem;
    }
}

/* ─── About page ─── */
.mx-about-page .mx-about-hero {
    position: relative;
    padding: 80px 0 72px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(165deg, #020617 0%, #0f172a 55%, #1e293b 100%);
    color: #f1f5f9;
}

.mx-about-page .mx-about-hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.mx-about-page .mx-about-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.mx-about-page .mx-about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 22px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fde68a;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: 999px;
}

.mx-about-page .mx-about-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.mx-about-page .mx-about-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
    margin: 0 0 20px;
    color: #fff;
}

.mx-about-page .mx-about-hero h1 .mx-gradient {
    background: linear-gradient(135deg, #fff 0%, #fde68a 55%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mx-about-page .mx-about-lead {
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: #cbd5e1;
    margin: 0 auto 28px;
    max-width: 640px;
}

.mx-about-page .mx-about-lead strong {
    color: #e2e8f0;
    font-weight: 600;
}

.mx-about-page .mx-about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.mx-about-page .mx-about-hero .mx-btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fde68a;
    border: 1px solid rgba(251, 191, 36, 0.35);
}

.mx-about-page .mx-about-hero .mx-btn-ghost:hover {
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.5);
    color: #fff;
}

.mx-about-page .mx-about-intro {
    padding: 72px 0;
    background: #fff;
    text-align: center;
}

.mx-about-page .mx-about-intro-inner {
    max-width: 760px;
    margin: 0 auto;
}

.mx-about-page .mx-about-intro h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0 0 16px;
}

.mx-about-page .mx-about-intro p {
    margin: 0;
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: var(--mx-body-color);
}

.mx-about-page .mx-about-stats {
    padding: 0 0 72px;
    background: #fff;
}

.mx-about-page .mx-about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mx-about-page .mx-about-stats-grid article {
    text-align: center;
    padding: 28px 20px;
    background: #F0F4F8;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.mx-about-page .mx-about-stats-grid strong {
    display: block;
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 6px;
}

.mx-about-page .mx-about-stats-grid span {
    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 500;
    color: var(--mx-body-color);
}

.mx-about-page .mx-about-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.mx-about-page .mx-about-section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0 0 12px;
}

.mx-about-page .mx-about-section-head p {
    margin: 0 auto;
    max-width: 620px;
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: var(--mx-body-color);
}

.mx-about-page .mx-about-pillars {
    padding: 80px 0;
    background: #F0F4F8;
}

.mx-about-page .mx-about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mx-about-page .mx-about-pillar {
    text-align: center;
    padding: 32px 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
    transition: box-shadow 0.25s, transform 0.25s;
}

.mx-about-page .mx-about-pillar:hover {
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
    transform: translateY(-3px);
}

.mx-about-page .mx-about-pillar-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.75rem;
    line-height: 1;
    background: #eef2ff;
    border-radius: 14px;
}

.mx-about-page .mx-about-pillar h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
}

.mx-about-page .mx-about-pillar p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--mx-body-color);
}

.mx-about-page .mx-about-products {
    padding: 80px 0;
    background: #fff;
}

.mx-about-page .mx-about-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.mx-about-page .mx-about-product {
    padding: 36px 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.mx-about-page .mx-about-product-seo {
    background: linear-gradient(180deg, #fff 0%, #fffbeb 100%);
    border-color: #fde68a;
}

.mx-about-page .mx-about-product-cart {
    background: linear-gradient(180deg, #fff 0%, #ecfdf5 100%);
    border-color: #a7f3d0;
}

.mx-about-page .mx-about-product-label {
    display: inline-block;
    margin: 0 0 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #92400e;
}

.mx-about-page .mx-about-product-cart .mx-about-product-label {
    color: #065f46;
}

.mx-about-page .mx-about-product h3 {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0 0 12px;
    line-height: 1.25;
}

.mx-about-page .mx-about-product p {
    margin: 0 0 24px;
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: var(--mx-body-color);
}

.mx-about-page .mx-about-timeline {
    padding: 80px 0;
    background: #F0F4F8;
}

.mx-about-page .mx-about-timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    gap: 0;
}

.mx-about-page .mx-about-timeline-list li {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid #e2e8f0;
}

.mx-about-page .mx-about-timeline-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mx-about-page .mx-about-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #4338ca);
}

.mx-about-page .mx-about-timeline-list h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.mx-about-page .mx-about-timeline-list p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--mx-body-color);
}

.mx-about-page .mx-about-values {
    padding: 80px 0;
    background: #fff;
}

.mx-about-page .mx-about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mx-about-page .mx-about-values-grid article {
    padding: 28px 24px;
    background: #F0F4F8;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.mx-about-page .mx-about-values-grid h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.mx-about-page .mx-about-values-grid p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--mx-body-color);
}

.mx-about-page .mx-about-final {
    padding: 88px 24px;
    background: linear-gradient(135deg, #312e81 0%, #4338ca 50%, #4f46e5 100%);
    text-align: center;
}

.mx-about-page .mx-about-final-inner {
    max-width: 680px;
    margin: 0 auto;
}

.mx-about-page .mx-about-final h2 {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.mx-about-page .mx-about-final p {
    margin: 0 0 28px;
    font-size: var(--mx-body-size);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.mx-about-page .mx-about-final-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.mx-about-page .mx-about-final .mx-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fde68a;
    border: 1px solid rgba(251, 191, 36, 0.35);
}

.mx-about-page .mx-about-final .mx-btn-ghost:hover {
    background: rgba(251, 191, 36, 0.15);
    color: #fff;
}

@media (max-width: 960px) {
    .mx-about-page .mx-about-stats-grid,
    .mx-about-page .mx-about-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mx-about-page .mx-about-products-grid,
    .mx-about-page .mx-about-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .mx-about-page .mx-about-hero {
        padding: 56px 0 48px;
    }

    .mx-about-page .mx-about-stats-grid,
    .mx-about-page .mx-about-pillars-grid {
        grid-template-columns: 1fr;
    }

    .mx-about-page .mx-about-timeline-list li {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mx-about-page .mx-about-year {
        width: fit-content;
    }

    .mx-about-page .mx-about-hero-actions,
    .mx-about-page .mx-about-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mx-about-page .mx-about-hero-actions .mx-btn,
    .mx-about-page .mx-about-final-actions .mx-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ─── Contact page ─── */
.mx-contact-page .mx-contact-hero {
    position: relative;
    padding: 80px 0 64px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(165deg, #020617 0%, #0f172a 55%, #1e293b 100%);
    color: #f1f5f9;
}

.mx-contact-page .mx-contact-hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.mx-contact-page .mx-contact-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.mx-contact-page .mx-contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 22px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fde68a;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: 999px;
}

.mx-contact-page .mx-contact-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.mx-contact-page .mx-contact-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
    margin: 0 0 20px;
    color: #fff;
}

.mx-contact-page .mx-contact-hero h1 .mx-gradient {
    background: linear-gradient(135deg, #fff 0%, #fde68a 55%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mx-contact-page .mx-contact-lead {
    margin: 0 auto;
    max-width: 640px;
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: #cbd5e1;
}

.mx-contact-page .mx-contact-lead strong {
    color: #e2e8f0;
    font-weight: 600;
}

.mx-contact-page .mx-contact-body {
    padding: 72px 0 88px;
    background: #F0F4F8;
}

.mx-contact-page .mx-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 32px;
    align-items: start;
}

.mx-contact-page .mx-contact-aside h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0 0 12px;
}

.mx-contact-page .mx-contact-aside-lead {
    margin: 0 0 28px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--mx-body-color);
}

.mx-contact-page .mx-contact-cards {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.mx-contact-page .mx-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
}

.mx-contact-page .mx-contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.35rem;
    line-height: 1;
    background: #eef2ff;
    border-radius: 12px;
}

.mx-contact-page .mx-contact-card h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.mx-contact-page .mx-contact-card p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
    color: var(--mx-body-color);
}

.mx-contact-page .mx-contact-card a {
    color: #4338ca;
    font-weight: 600;
    text-decoration: none;
}

.mx-contact-page .mx-contact-card a:hover {
    text-decoration: underline;
}

.mx-contact-page .mx-contact-links h3 {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
}

.mx-contact-page .mx-contact-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.mx-contact-page .mx-contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #4338ca;
    text-decoration: none;
}

.mx-contact-page .mx-contact-links a:hover {
    text-decoration: underline;
}

.mx-contact-page .mx-contact-links a::after {
    content: '→';
    font-size: 0.9em;
}

.mx-contact-page .mx-contact-form-panel {
    padding: 36px 32px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.mx-contact-page .mx-contact-form-head {
    margin-bottom: 28px;
}

.mx-contact-page .mx-contact-form-head h2 {
    margin: 0 0 8px;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.mx-contact-page .mx-contact-form-head p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--mx-body-color);
}

.mx-contact-page .mx-contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mx-contact-page .mx-contact-field {
    margin-bottom: 18px;
}

.mx-contact-page .mx-contact-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0f172a;
}

.mx-contact-page .mx-required {
    color: #dc2626;
}

.mx-contact-page .mx-contact-field input,
.mx-contact-page .mx-contact-field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font: inherit;
    font-size: 1rem;
    line-height: 1.5;
    color: #0f172a;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.mx-contact-page .mx-contact-field textarea {
    min-height: 160px;
    resize: vertical;
}

.mx-contact-page .mx-contact-field input:focus,
.mx-contact-page .mx-contact-field textarea:focus {
    outline: none;
    border-color: var(--mx-gold);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.22);
}

.mx-contact-page .mx-contact-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.mx-contact-page .mx-contact-error {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.mx-contact-page .mx-contact-success {
    text-align: center;
    padding: 24px 12px 8px;
}

.mx-contact-page .mx-contact-success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.25);
}

.mx-contact-page .mx-contact-success h3 {
    margin: 0 0 10px;
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
}

.mx-contact-page .mx-contact-success p {
    margin: 0 0 24px;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--mx-body-color);
}

@media (max-width: 960px) {
    .mx-contact-page .mx-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .mx-contact-page .mx-contact-hero {
        padding: 56px 0 44px;
    }

    .mx-contact-page .mx-contact-body {
        padding: 48px 0 64px;
    }

    .mx-contact-page .mx-contact-form-panel {
        padding: 28px 22px;
    }

    .mx-contact-page .mx-contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

body.miroseo-ui.woocommerce .mx-main,
body.miroseo-ui.woocommerce-page .mx-main {
    background: #F0F4F8;
}

.mx-woo .mx-shop-hero {
    background: linear-gradient(165deg, #020617 0%, #0f172a 52%, #1e293b 100%);
    padding: 64px 0 56px;
    text-align: center;
    color: #f8fafc;
    border-bottom: none;
}

.mx-woo .mx-shop-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fde68a;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.22);
}

.mx-woo .mx-shop-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.mx-woo .mx-shop-lead {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin: 0 auto 22px;
    max-width: 560px;
    line-height: 1.65;
}

.mx-woo .mx-shop-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.88rem;
    color: #94a3b8;
}

.mx-woo .mx-shop-trust li::before {
    content: '✓ ';
    color: #34d399;
    font-weight: 700;
}

.mx-woo .mx-shop-content {
    padding: 40px 24px 88px;
}

.mx-woo .woocommerce-breadcrumb {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 24px;
}

.mx-woo .woocommerce-breadcrumb a {
    color: #4338ca;
    text-decoration: none;
}

.mx-woo .woocommerce-breadcrumb a:hover {
    text-decoration: underline;
}

.mx-woo .page-title {
    display: none !important;
}

.mx-woo .woocommerce-result-count,
.mx-woo .woocommerce-ordering {
    margin-bottom: 0;
}

.mx-woo .mx-shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
    clear: both;
}

.mx-woo .woocommerce-result-count {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    float: none !important;
}

.mx-woo .woocommerce-ordering {
    margin: 0;
    float: none !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mx-woo .woocommerce-ordering::before {
    content: 'Sort by';
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
}

.mx-woo .woocommerce-ordering select.orderby {
    appearance: none;
    -webkit-appearance: none;
    display: inline-block;
    width: auto;
    min-width: 210px;
    max-width: 100%;
    min-height: 0;
    height: auto;
    line-height: 1.4;
    padding: 10px 40px 10px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #334155;
    background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1.41.59 6 5.17 10.59.59 12 2 6 8 0 2z'/%3E%3C/svg%3E") no-repeat right 14px center;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
}

.mx-woo ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    max-width: 1280px;
}

.mx-woo ul.products::before,
.mx-woo ul.products::after {
    display: none !important;
}

.mx-woo ul.products li.product.mx-shop-card {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    list-style: none;
}

.mx-shop-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mx-shop-card:hover .mx-shop-card-inner {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.mx-shop-card.is-featured .mx-shop-card-inner {
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow:
        0 10px 40px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(251, 191, 36, 0.2);
}

.mx-shop-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 4px 9px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
}

.mx-shop-badge--featured {
    color: #92400e;
    background: linear-gradient(135deg, #fde047, #f59e0b);
}

.mx-shop-badge--sale {
    color: #fff;
    background: #ef4444;
}

.mx-shop-card-media {
    position: relative;
    display: block;
    width: 100%;
    flex-shrink: 0;
    text-decoration: none;
    background: #f1f5f9;
}

.mx-shop-card-media-frame {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #f1f5f9;
}

.mx-shop-card-media-frame .mx-shop-card-thumb {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover;
    object-position: center;
    border: 0;
    border-radius: 0;
    margin: 0 !important;
    padding: 0;
}

.mx-shop-card--mirolabs .mx-shop-card-media,
.mx-shop-card--mirolabs .mx-shop-card-media-frame {
    background: #fffbeb;
}

.mx-shop-card--whatscart-recovery .mx-shop-card-media,
.mx-shop-card--whatscart-recovery .mx-shop-card-media-frame,
.mx-shop-card--mirocart .mx-shop-card-media,
.mx-shop-card--mirocart .mx-shop-card-media-frame {
    background: #ecfdf5;
}

.mx-shop-card--mirogeo-local .mx-shop-card-media,
.mx-shop-card--mirogeo-local .mx-shop-card-media-frame {
    background: #ecfeff;
}

.mx-shop-card--miropage-seo .mx-shop-card-media,
.mx-shop-card--miropage-seo .mx-shop-card-media-frame {
    background: #eff6ff;
}

.mx-shop-card-icon {
    display: none;
}

.mx-shop-card--registry .mx-shop-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 180px;
    font-size: 3.5rem;
    line-height: 1;
}

.mx-shop-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 14px 16px 0;
    text-align: left;
}

.mx-shop-card-cat {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 8px;
    padding: 3px 8px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
}

.mx-shop-card-title {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.mx-shop-card-title a {
    color: #0f172a;
    text-decoration: none;
}

.mx-shop-card-title a:hover {
    color: #4338ca;
}

.mx-shop-card-tagline {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.45;
    color: #64748b;
}

.mx-shop-card-desc,
.mx-shop-card-features,
.mx-shop-card-links,
.mx-shop-price-note {
    display: none;
}

.mx-shop-card-foot {
    margin-top: auto;
    padding: 12px 16px 16px;
    border-top: 1px solid #f1f5f9;
}

.mx-shop-card-price {
    margin-bottom: 10px;
}

.mx-shop-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 12px;
}

.mx-shop-price-main {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.mx-shop-price-was {
    font-size: 0.82rem;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: line-through;
}

.mx-shop-price-term {
    display: inline-flex;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #92400e;
    background: rgba(251, 191, 36, 0.16);
    border: 1px solid rgba(245, 158, 11, 0.28);
}

.mx-shop-card-cta {
    margin-bottom: 0;
    padding: 10px 14px !important;
    font-size: 0.82rem !important;
}

.mx-shop-card-body .mx-shop-card-price {
    margin-top: 8px;
    margin-bottom: 0;
}

.mx-shop-card-links {
    display: none;
}

.mx-woo .woocommerce-pagination {
    margin-top: 48px;
    text-align: center;
}

.mx-woo .woocommerce-pagination ul {
    display: inline-flex;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
}

.mx-woo .woocommerce-pagination ul li {
    border: none;
}

.mx-woo .woocommerce-pagination ul li a,
.mx-woo .woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
}

.mx-woo .woocommerce-pagination ul li span.current {
    background: #4338ca;
    color: #fff;
    border-color: #4338ca;
}

/* Single product */
body.single-product .mx-woo .mx-product-hero {
    padding: 56px 0 48px;
    text-align: left;
    background: linear-gradient(165deg, #020617 0%, #0f172a 55%, #1e293b 100%);
    color: #f1f5f9;
    border-bottom: none;
}

body.single-product .mx-woo .mx-product-hero .mx-shop-hero-inner {
    max-width: var(--mx-max);
}

body.single-product .mx-woo .mx-product-breadcrumb {
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: #94a3b8;
}

body.single-product .mx-woo .mx-product-breadcrumb a {
    color: #fde68a;
    text-decoration: none;
    font-weight: 600;
}

body.single-product .mx-woo .mx-product-breadcrumb a:hover {
    text-decoration: underline;
}

body.single-product .mx-woo .mx-product-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    margin: 0 0 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fde68a;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: 999px;
}

body.single-product .mx-woo .mx-product-hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 14px;
}

body.single-product .mx-woo .mx-product-lead {
    margin: 0;
    max-width: 760px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #cbd5e1;
}

body.single-product .mx-woo .mx-product-hero-note {
    margin: 0;
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.6;
    color: #94a3b8;
}

body.single-product .mx-woo .mx-shop-content {
    padding-top: 48px;
    padding-bottom: 88px;
}

body.single-product.mx-product-plugin .mx-woo .mx-shop-content {
    max-width: var(--mx-max);
}

body.single-product.mx-product-plugin .mx-woo div.product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 48px;
    align-items: start;
    max-width: none;
    margin: 0;
}

body.single-product.mx-product-plugin .mx-woo div.product .summary {
    grid-column: 2;
    grid-row: 1;
    position: sticky;
    top: 96px;
    align-self: start;
    width: 100%;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 20px 48px rgba(15, 23, 42, 0.08);
}

body.single-product.mx-product-plugin .mx-woo .woocommerce-tabs {
    grid-column: 1;
    grid-row: 1;
    margin-top: 0;
    max-width: none;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

body.single-product.mx-product-plugin .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel {
    padding: 0 8px 0 0;
}

body.single-product.mx-product-plugin .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel::before {
    content: 'Product overview';
    display: block;
    margin: 0 0 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
}

body.single-product.mx-product-plugin .mx-woo .mx-product-buy-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

body.single-product.mx-product-plugin .mx-woo .mx-product-buy-media {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 16px;
    overflow: hidden;
}

body.single-product.mx-product-plugin .mx-woo .mx-product-buy-thumb {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 0;
}

body.single-product.mx-product-plugin .mx-woo .mx-product-buy-title {
    margin: 0 0 4px;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0f172a;
}

body.single-product.mx-product-plugin .mx-woo .mx-product-buy-tagline {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: #64748b;
}

body.single-product.mx-product-plugin .mx-woo div.product .price {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

body.single-product.mx-product-plugin .mx-woo .mx-product-highlights {
    margin-bottom: 24px;
}

body.single-product.mx-product-plugin .mx-woo .mx-product-links {
    margin-top: 20px;
    padding-top: 18px;
    justify-content: center;
    gap: 0;
}

body.single-product.mx-product-plugin .mx-woo .mx-product-links a + a::before {
    content: '·';
    margin: 0 10px;
    color: #cbd5e1;
    font-weight: 700;
    pointer-events: none;
}

.mx-woo div.product,
body.single-product .mx-woo div.product {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 32px;
    align-items: start;
}

.mx-woo div.product .woocommerce-product-gallery,
body.single-product .mx-woo div.product .woocommerce-product-gallery {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.mx-woo div.product .woocommerce-product-gallery__image img,
body.single-product .mx-woo div.product .woocommerce-product-gallery__image img {
    border-radius: 14px;
}

.mx-woo div.product .summary,
body.single-product .mx-woo div.product .summary {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

body.single-product .mx-woo div.product .product_title {
    display: none;
}

.mx-woo div.product .price,
body.single-product .mx-woo div.product .price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 14px;
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 20px;
    letter-spacing: -0.03em;
}

body.single-product .mx-woo .mx-product-price-was {
    font-size: 1.15rem;
    font-weight: 600;
    color: #94a3b8;
}

body.single-product .mx-woo .mx-product-price-term {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #92400e;
    background: rgba(251, 191, 36, 0.16);
    border: 1px solid rgba(245, 158, 11, 0.28);
}

body.single-product .mx-woo .mx-product-price-note {
    display: block;
    width: 100%;
    margin-top: 4px;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--mx-body-color);
}

body.single-product .mx-woo .mx-product-highlights {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 8px;
}

body.single-product .mx-woo .mx-product-highlights li {
    position: relative;
    padding-left: 24px;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #475569;
}

body.single-product .mx-woo .mx-product-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 800;
    color: #fff;
    background: #22c55e;
    border-radius: 50%;
}

body.single-product .mx-woo .mx-product-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

body.single-product .mx-woo .mx-product-links a {
    font-size: 0.92rem;
    font-weight: 600;
    color: #4338ca;
    text-decoration: none;
}

body.single-product .mx-woo .mx-product-links a:hover {
    text-decoration: underline;
}

.mx-woo div.product .woocommerce-product-details__short-description,
body.single-product .mx-woo div.product .woocommerce-product-details__short-description {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--mx-body-color);
    margin-bottom: 24px;
}

.mx-woo div.product form.cart,
body.single-product .mx-woo div.product form.cart,
body.single-product .mx-woo .mx-product-buy-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 0;
}

body.single-product .mx-woo .mx-product-buy-button {
    width: 100%;
    justify-content: center;
    padding: 15px 20px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    text-decoration: none;
}

body.single-product .mx-woo .mx-product-buy-note {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
    color: #64748b;
}

body.single-product .mx-woo div.product .quantity {
    display: none;
}

body.single-product .mx-woo div.product .single_add_to_cart_button {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    padding: 15px 20px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #fde047, #f59e0b) !important;
    color: #111827 !important;
    border: none !important;
}

.mx-woo div.product .single_add_to_cart_button:hover,
body.single-product .mx-woo div.product .single_add_to_cart_button:hover {
    filter: brightness(1.03);
}

body.single-product .mx-woo div.product .product_meta {
    display: none;
}

.mx-woo .woocommerce-tabs,
body.single-product .mx-woo .woocommerce-tabs {
    grid-column: 1 / -1;
    margin-top: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

body.single-product .mx-woo .woocommerce-tabs ul.tabs {
    display: none;
}

body.single-product .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel {
    display: block !important;
    padding: 36px 32px 40px;
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    color: var(--mx-body-color);
}

body.single-product .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel > h2:first-child {
    display: none;
}

body.single-product .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel h2,
body.single-product .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel h3 {
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 2em 0 0.75em;
}

body.single-product .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel h2 {
    font-size: 1.55rem;
}

body.single-product .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel h3 {
    font-size: 1.25rem;
}

body.single-product .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel p,
body.single-product .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel li {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

body.single-product .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel ul {
    margin: 0 0 1.25em;
    padding-left: 1.4em;
}

body.single-product .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel hr {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 2em 0;
}

body.single-product .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel strong {
    color: #0f172a;
    font-weight: 600;
}

body.single-product .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel .ui-markdown__paragraph,
body.single-product .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel .ui-markdown__list {
    margin-bottom: 1.25em;
}

body.single-product .mx-woo .related.products {
    display: none;
}

.mx-woo .woocommerce-tabs ul.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0 0 20px;
    padding: 0 0 16px;
    border-bottom: 1px solid #e2e8f0;
}

.mx-woo .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
}

.mx-woo .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748b;
    background: #F0F4F8;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
}

.mx-woo .woocommerce-tabs ul.tabs li.active a {
    color: #fff;
    background: #4338ca;
    border-color: #4338ca;
}

.mx-woo .woocommerce-message,
.mx-woo .woocommerce-info,
.mx-woo .woocommerce-error {
    padding: 14px 18px;
    margin-bottom: 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    list-style: none;
}

.mx-woo .woocommerce-message {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.mx-woo .woocommerce-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

/* Cart page */
.mx-woo-cart .mx-cart-hero,
body.mx-cart-page .mx-woo .mx-cart-hero {
    padding: 56px 0 48px;
    text-align: left;
    background: linear-gradient(165deg, #020617 0%, #0f172a 55%, #1e293b 100%);
    color: #f1f5f9;
    border-bottom: none;
}

.mx-woo-cart .mx-cart-hero .mx-shop-hero-inner,
body.mx-cart-page .mx-woo .mx-cart-hero .mx-shop-hero-inner {
    max-width: var(--mx-max);
}

.mx-woo-cart .mx-cart-hero .mx-product-breadcrumb,
body.mx-cart-page .mx-woo .mx-cart-hero .mx-product-breadcrumb {
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: #94a3b8;
}

.mx-woo-cart .mx-cart-hero .mx-product-breadcrumb a,
body.mx-cart-page .mx-woo .mx-cart-hero .mx-product-breadcrumb a {
    color: #fde68a;
    text-decoration: none;
    font-weight: 600;
}

.mx-woo-cart .mx-cart-hero .mx-shop-kicker,
body.mx-cart-page .mx-woo .mx-cart-hero .mx-shop-kicker {
    display: inline-flex;
    color: #fde68a;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: 999px;
    padding: 6px 14px;
}

.mx-woo-cart .mx-cart-hero h1,
body.mx-cart-page .mx-woo .mx-cart-hero h1 {
    color: #fff;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.mx-woo-cart .mx-cart-hero .mx-shop-lead,
body.mx-cart-page .mx-woo .mx-cart-hero .mx-shop-lead {
    color: #94a3b8;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    max-width: 640px;
}

.mx-woo-cart .mx-shop-content > .woocommerce,
body.mx-cart-page .mx-woo .mx-shop-content > .woocommerce {
    max-width: var(--mx-max);
    margin: 0 auto;
}

.mx-woo-cart .cart-empty.woocommerce-info,
.mx-woo-cart .return-to-shop,
body.mx-cart-page .mx-woo .cart-empty.woocommerce-info,
body.mx-cart-page .mx-woo .return-to-shop {
    display: none !important;
}

.mx-woo-cart .mx-cart-empty,
body.mx-cart-page .mx-woo .mx-cart-empty {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 40px 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.mx-woo-cart .mx-cart-empty-icon,
body.mx-cart-page .mx-woo .mx-cart-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 22px;
    color: #4338ca;
    background: linear-gradient(145deg, #eef2ff 0%, #e0e7ff 100%);
    border: 1px solid #c7d2fe;
    border-radius: 50%;
}

.mx-woo-cart .mx-cart-empty-title,
body.mx-cart-page .mx-woo .mx-cart-empty-title {
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.mx-woo-cart .mx-cart-empty-lead,
body.mx-cart-page .mx-woo .mx-cart-empty-lead {
    margin: 0 auto 28px;
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--mx-body-color);
}

.mx-woo-cart .mx-cart-empty-actions,
body.mx-cart-page .mx-woo .mx-cart-empty-actions {
    display: grid;
    gap: 10px;
    max-width: 360px;
    margin: 0 auto 28px;
}

.mx-woo-cart .mx-cart-trust,
body.mx-cart-page .mx-woo .mx-cart-trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
}

.mx-woo-cart .mx-cart-trust--empty,
body.mx-cart-page .mx-woo .mx-cart-trust--empty {
    margin-bottom: 36px;
    padding-bottom: 0;
    border-top: none;
}

.mx-woo-cart .mx-cart-trust li,
body.mx-cart-page .mx-woo .mx-cart-trust li {
    position: relative;
    padding-left: 18px;
    font-size: 0.88rem;
    color: #64748b;
}

.mx-woo-cart .mx-cart-trust li::before,
body.mx-cart-page .mx-woo .mx-cart-trust li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.75rem;
    font-weight: 800;
    color: #22c55e;
}

.mx-woo-cart .mx-cart-suggestions,
body.mx-cart-page .mx-woo .mx-cart-suggestions {
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
    text-align: left;
}

.mx-woo-cart .mx-cart-suggestions-label,
body.mx-cart-page .mx-woo .mx-cart-suggestions-label {
    margin: 0 0 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
}

.mx-woo-cart .mx-cart-suggestions-grid,
body.mx-cart-page .mx-woo .mx-cart-suggestions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mx-woo-cart .mx-cart-suggestion,
body.mx-cart-page .mx-woo .mx-cart-suggestion {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    text-decoration: none;
    background: #F0F4F8;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    min-height: 100%;
}

.mx-woo-cart .mx-cart-suggestion:hover,
body.mx-cart-page .mx-woo .mx-cart-suggestion:hover {
    border-color: #c7d2fe;
    box-shadow: 0 8px 24px rgba(67, 56, 202, 0.08);
    transform: translateY(-1px);
}

.mx-woo-cart .mx-cart-suggestion-icon,
body.mx-cart-page .mx-woo .mx-cart-suggestion-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.mx-woo-cart .mx-cart-suggestion-copy,
body.mx-cart-page .mx-woo .mx-cart-suggestion-copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mx-woo-cart .mx-cart-suggestion-copy strong,
body.mx-cart-page .mx-woo .mx-cart-suggestion-copy strong {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.mx-woo-cart .mx-cart-suggestion-copy span,
body.mx-cart-page .mx-woo .mx-cart-suggestion-copy span {
    font-size: 0.9rem;
    line-height: 1.45;
    color: #64748b;
}

.mx-woo-cart .mx-cart-suggestion-copy em,
body.mx-cart-page .mx-woo .mx-cart-suggestion-copy em {
    font-style: normal;
    font-size: 0.82rem;
    line-height: 1.4;
    color: #94a3b8;
}

.mx-woo-cart .mx-cart-suggestion-price,
body.mx-cart-page .mx-woo .mx-cart-suggestion-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: #4338ca;
}

.mx-woo-cart .woocommerce,
body.mx-cart-page .mx-woo .woocommerce:has(.woocommerce-cart-form) {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 32px;
    align-items: start;
}

.mx-woo-cart .woocommerce::before,
.mx-woo-cart .woocommerce::after,
body.mx-cart-page .mx-woo .woocommerce:has(.woocommerce-cart-form)::before,
body.mx-cart-page .mx-woo .woocommerce:has(.woocommerce-cart-form)::after {
    display: none !important;
    content: none !important;
}

.mx-woo-cart .woocommerce-notices-wrapper,
body.mx-cart-page .mx-woo .woocommerce-notices-wrapper {
    grid-column: 1 / -1;
}

.mx-woo-cart .woocommerce-cart-form,
body.mx-cart-page .mx-woo .woocommerce-cart-form {
    grid-column: 1;
    grid-row: 2;
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.mx-woo-cart .cart-collaterals,
body.mx-cart-page .mx-woo .cart-collaterals {
    grid-column: 2;
    grid-row: 2;
    float: none !important;
    width: 100% !important;
    max-width: none !important;
}

.mx-woo-cart .cart_totals,
body.mx-cart-page .mx-woo .cart_totals {
    position: sticky;
    top: 96px;
    width: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.mx-woo-cart .cross-sells,
body.mx-cart-page .mx-woo .cross-sells {
    grid-column: 1 / -1;
    grid-row: 3;
    float: none !important;
    width: 100% !important;
}

.mx-woo-cart .cart_totals > h2,
body.mx-cart-page .mx-woo .cart_totals > h2 {
    margin: 0 0 18px;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.mx-woo-cart .mx-cart-summary-kicker,
body.mx-cart-page .mx-woo .mx-cart-summary-kicker {
    margin: 0 0 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
}

.mx-woo-cart .mx-cart-panel-head,
body.mx-cart-page .mx-woo .mx-cart-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
}

.mx-woo-cart .mx-cart-panel-kicker,
body.mx-cart-page .mx-woo .mx-cart-panel-kicker {
    margin: 0 0 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
}

.mx-woo-cart .mx-cart-panel-title,
body.mx-cart-page .mx-woo .mx-cart-panel-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.mx-woo-cart .mx-cart-continue,
body.mx-cart-page .mx-woo .mx-cart-continue {
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4338ca;
    text-decoration: none;
    white-space: nowrap;
}

.mx-woo-cart .mx-cart-continue:hover,
body.mx-cart-page .mx-woo .mx-cart-continue:hover {
    text-decoration: underline;
}

.mx-woo-cart .mx-cart-continue--muted,
body.mx-cart-page .mx-woo .mx-cart-continue--muted {
    display: block;
    margin-top: 14px;
    text-align: center;
    color: #64748b;
}

.mx-woo-cart .mx-cart-continue--muted:hover,
body.mx-cart-page .mx-woo .mx-cart-continue--muted:hover {
    color: #4338ca;
}

.mx-woo-cart .woocommerce-cart-form,
body.mx-cart-page .mx-woo .woocommerce-cart-form {
    padding: 28px;
}

.mx-woo-cart .shop_table,
body.mx-cart-page .mx-woo .shop_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.mx-woo-cart .woocommerce-cart-form__contents thead,
body.mx-cart-page .mx-woo .woocommerce-cart-form__contents thead {
    display: none;
}

.mx-woo-cart .woocommerce-cart-form__contents tbody tr,
body.mx-cart-page .mx-woo .woocommerce-cart-form__contents tbody tr {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto auto;
    grid-template-areas:
        "thumb name name remove"
        "thumb price subtotal subtotal";
    gap: 8px 16px;
    align-items: center;
    padding: 18px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.mx-woo-cart .woocommerce-cart-form__contents td,
.mx-woo-cart .woocommerce-cart-form__contents th,
body.mx-cart-page .mx-woo .woocommerce-cart-form__contents td,
body.mx-cart-page .mx-woo .woocommerce-cart-form__contents th {
    padding: 0;
    border: 0;
    vertical-align: middle;
}

.mx-woo-cart .woocommerce-cart-form__contents td::before,
body.mx-cart-page .mx-woo .woocommerce-cart-form__contents td::before {
    display: none;
}

.mx-woo-cart .woocommerce-cart-form__contents .product-thumbnail,
body.mx-cart-page .mx-woo .woocommerce-cart-form__contents .product-thumbnail {
    grid-area: thumb;
}

.mx-woo-cart .woocommerce-cart-form__contents .product-name,
body.mx-cart-page .mx-woo .woocommerce-cart-form__contents .product-name {
    grid-area: name;
}

.mx-woo-cart .woocommerce-cart-form__contents .product-remove,
body.mx-cart-page .mx-woo .woocommerce-cart-form__contents .product-remove {
    grid-area: remove;
    justify-self: end;
}

.mx-woo-cart .woocommerce-cart-form__contents .product-price,
body.mx-cart-page .mx-woo .woocommerce-cart-form__contents .product-price {
    grid-area: price;
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748b;
}

.mx-woo-cart .woocommerce-cart-form__contents .product-price::before,
body.mx-cart-page .mx-woo .woocommerce-cart-form__contents .product-price::before {
    content: 'Price: ';
}

.mx-woo-cart .woocommerce-cart-form__contents .product-subtotal,
body.mx-cart-page .mx-woo .woocommerce-cart-form__contents .product-subtotal {
    grid-area: subtotal;
    justify-self: end;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
}

.mx-woo-cart .woocommerce-cart-form__contents .product-quantity,
body.mx-cart-page .mx-woo .woocommerce-cart-form__contents .product-quantity {
    display: none;
}

.mx-woo-cart .mx-cart-qty-badge,
body.mx-cart-page .mx-woo .mx-cart-qty-badge {
    display: inline-flex;
    margin-top: 6px;
    padding: 3px 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
}

.mx-woo-cart .shop_table .product-remove a,
body.mx-cart-page .mx-woo .shop_table .product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
    line-height: 1;
    color: #94a3b8 !important;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.mx-woo-cart .shop_table .product-remove a:hover,
body.mx-cart-page .mx-woo .shop_table .product-remove a:hover {
    color: #dc2626 !important;
    border-color: #fecaca;
    background: #fef2f2;
}

.mx-woo-cart .shop_table .product-thumbnail img,
body.mx-cart-page .mx-woo .shop_table .product-thumbnail img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 100%);
}

.mx-woo-cart .shop_table .product-name a,
body.mx-cart-page .mx-woo .shop_table .product-name a {
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    text-decoration: none;
}

.mx-woo-cart .shop_table .product-name a:hover,
body.mx-cart-page .mx-woo .shop_table .product-name a:hover {
    color: #4338ca;
}

.mx-woo-cart .shop_table .product-name .variation,
body.mx-cart-page .mx-woo .shop_table .product-name .variation {
    margin-top: 4px;
    font-size: 0.85rem;
    color: #64748b;
}

.mx-woo-cart .cart_totals table,
body.mx-cart-page .mx-woo .cart_totals table {
    width: 100%;
    border-collapse: collapse;
}

.mx-woo-cart .cart_totals table th,
.mx-woo-cart .cart_totals table td,
body.mx-cart-page .mx-woo .cart_totals table th,
body.mx-cart-page .mx-woo .cart_totals table td {
    padding: 12px 0;
    font-size: 0.95rem;
    border-top: 1px solid #e2e8f0;
}

.mx-woo-cart .cart_totals table th,
body.mx-cart-page .mx-woo .cart_totals table th {
    font-weight: 600;
    color: #64748b;
    text-align: left;
}

.mx-woo-cart .cart_totals table td,
body.mx-cart-page .mx-woo .cart_totals table td {
    text-align: right;
    font-weight: 700;
    color: #0f172a;
}

.mx-woo-cart .cart_totals .order-total th,
.mx-woo-cart .cart_totals .order-total td,
body.mx-cart-page .mx-woo .cart_totals .order-total th,
body.mx-cart-page .mx-woo .cart_totals .order-total td {
    padding-top: 18px;
    border-top: 2px solid #e2e8f0;
}

.mx-woo-cart .cart_totals .order-total td,
body.mx-cart-page .mx-woo .cart_totals .order-total td {
    font-size: 1.35rem;
    font-weight: 800;
    color: #4338ca;
}

.mx-woo-cart .wc-proceed-to-checkout,
body.mx-cart-page .mx-woo .wc-proceed-to-checkout {
    margin-top: 22px;
    padding-top: 0;
}

.mx-woo-cart .coupon,
body.mx-cart-page .mx-woo .coupon {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #e2e8f0;
}

.mx-woo-cart .coupon label,
body.mx-cart-page .mx-woo .coupon label {
    display: none;
}

.mx-woo-cart .coupon .input-text,
body.mx-cart-page .mx-woo .coupon .input-text {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.92rem;
    background: #fff;
}

.mx-woo-cart .coupon .button,
body.mx-cart-page .mx-woo .coupon .button {
    padding: 12px 16px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #4338ca !important;
    border: 1px solid #c7d2fe !important;
    white-space: nowrap;
}

.mx-woo-cart .woocommerce-cart-form .actions,
body.mx-cart-page .mx-woo .woocommerce-cart-form .actions {
    padding-top: 0;
}

.mx-woo-cart .woocommerce-cart-form .button[name="update_cart"],
body.mx-cart-page .mx-woo .woocommerce-cart-form .button[name="update_cart"] {
    display: none !important;
}

.mx-woo-cart .cross-sells,
body.mx-cart-page .mx-woo .cross-sells {
    display: none !important;
}

.mx-woo-cart .wc-proceed-to-checkout .checkout-button,
.mx-woo-cart .wc-proceed-to-checkout .button,
body.mx-cart-page .mx-woo .wc-proceed-to-checkout .checkout-button,
body.mx-cart-page .mx-woo .wc-proceed-to-checkout .button {
    display: flex;
    width: 100%;
    justify-content: center;
    white-space: nowrap;
    padding: 16px 24px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #fde047, #f59e0b) !important;
    color: #111827 !important;
    border: none !important;
}

body.mx-cart-page .mx-woo .wc-proceed-to-checkout .checkout-button:hover,
.mx-woo-cart .wc-proceed-to-checkout .checkout-button:hover {
    filter: brightness(1.03);
}

body.mx-cart-page .mx-woo .coupon .button,
body.mx-cart-page .mx-woo .woocommerce-cart-form .button[name="update_cart"] {
    padding: 12px 18px !important;
}

body.mx-cart-page .mx-woo .cart_totals .mx-cart-trust,
.mx-woo-cart .cart_totals .mx-cart-trust {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    display: grid;
    gap: 8px;
    justify-content: stretch;
}

body.mx-cart-page .mx-woo .cart_totals .mx-cart-trust li,
.mx-woo-cart .cart_totals .mx-cart-trust li {
    padding-left: 22px;
}

body.mx-cart-page .mx-woo .mx-cart-trust {
    list-style: none;
    margin: 20px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid #e2e8f0;
    display: grid;
    gap: 8px;
}

body.mx-cart-page .mx-woo .mx-cart-trust li {
    position: relative;
    padding-left: 22px;
    font-size: 0.88rem;
    color: #64748b;
}

body.mx-cart-page .mx-woo .mx-cart-trust li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.75rem;
    font-weight: 800;
    color: #22c55e;
}

body.mx-cart-page .mx-woo .cross-sells {
    grid-column: 1 / -1;
    margin-top: 8px;
}

@media (max-width: 960px) {
    .mx-woo ul.products {
        grid-template-columns: repeat(2, 1fr);
    }

    .mx-woo div.product,
    body.single-product .mx-woo div.product {
        grid-template-columns: 1fr;
    }

    body.single-product.mx-product-plugin .mx-woo div.product {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    body.single-product.mx-product-plugin .mx-woo div.product .summary {
        grid-column: 1;
        grid-row: 1;
        position: static;
    }

    body.single-product.mx-product-plugin .mx-woo .woocommerce-tabs {
        grid-column: 1;
        grid-row: 2;
    }

    body.single-product.mx-product-plugin .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel {
        padding: 0;
    }

    body.single-product .mx-woo .mx-product-hero {
        padding: 40px 0 36px;
    }

    body.single-product .mx-woo .mx-shop-content {
        padding-top: 32px;
        padding-bottom: 64px;
    }

    body.single-product.mx-product-plugin .mx-woo .mx-product-buy-head {
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    body.single-product.mx-product-plugin .mx-woo .mx-product-buy-media {
        flex-basis: 72px;
        width: 72px;
        height: 72px;
        border-radius: 16px;
    }

    body.single-product.mx-product-plugin .mx-woo .mx-product-buy-thumb {
        width: 52px;
        height: 52px;
    }

    body.single-product.mx-product-plugin .mx-woo .mx-product-buy-title {
        font-size: 1.15rem;
    }

    body.mx-cart-page .mx-woo .mx-cart-hero,
    .mx-woo-cart .mx-cart-hero {
        padding: 40px 0 36px;
    }

    .mx-woo-cart .mx-cart-suggestions-grid,
    body.mx-cart-page .mx-woo .mx-cart-suggestions-grid {
        grid-template-columns: 1fr;
    }

    .mx-woo-cart .mx-cart-empty,
    body.mx-cart-page .mx-woo .mx-cart-empty {
        padding: 36px 24px 32px;
    }

    .mx-woo-cart .woocommerce,
    body.mx-cart-page .mx-woo .woocommerce:has(.woocommerce-cart-form) {
        grid-template-columns: 1fr;
    }

    .mx-woo-cart .woocommerce-cart-form,
    body.mx-cart-page .mx-woo .woocommerce-cart-form {
        grid-column: 1;
        grid-row: 1;
    }

    .mx-woo-cart .cart-collaterals,
    body.mx-cart-page .mx-woo .cart-collaterals {
        grid-column: 1;
        grid-row: 2;
    }

    .mx-woo-cart .cart_totals,
    body.mx-cart-page .mx-woo .cart_totals {
        position: static;
    }

    .mx-woo-cart .woocommerce-cart-form,
    body.mx-cart-page .mx-woo .woocommerce-cart-form {
        padding: 18px;
    }

    .mx-woo-cart .woocommerce-cart-form__contents tbody tr,
    body.mx-cart-page .mx-woo .woocommerce-cart-form__contents tbody tr {
        grid-template-columns: 64px minmax(0, 1fr) auto;
        grid-template-areas:
            "thumb name remove"
            "thumb subtotal subtotal";
    }

    .mx-woo-cart .woocommerce-cart-form__contents .product-price,
    body.mx-cart-page .mx-woo .woocommerce-cart-form__contents .product-price {
        display: none;
    }

    .mx-woo-cart .mx-cart-panel-head,
    body.mx-cart-page .mx-woo .mx-cart-panel-head {
        flex-direction: column;
        align-items: stretch;
    }

    .mx-woo-cart .mx-cart-continue,
    body.mx-cart-page .mx-woo .mx-cart-continue {
        white-space: normal;
    }

    body.single-product .mx-woo div.product .summary {
        padding: 24px;
    }

    body.single-product .mx-woo .woocommerce-tabs .woocommerce-Tabs-panel {
        padding: 28px 24px 32px;
    }
}

@media (max-width: 768px) {
    .mx-woo ul.products {
        grid-template-columns: minmax(0, 1fr);
        max-width: 480px;
    }
}

@media (max-width: 560px) {
    .mx-woo .mx-shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .mx-woo .woocommerce-ordering {
        width: 100%;
        justify-content: space-between;
    }

    .mx-woo .woocommerce-ordering select.orderby {
        flex: 1;
        min-width: 0;
    }

    .mx-shop-card-body,
    .mx-shop-card-foot {
        padding-left: 18px;
        padding-right: 18px;
    }
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
    .mx-grid-plugins {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    .mx-hero-centered { padding: 56px 0 64px; }
    .mx-spotlight-grid { grid-template-columns: 1fr; }
    .mx-spotlight-grid-reverse .mx-spotlight-copy,
    .mx-spotlight-grid-reverse .mx-spotlight-panel { order: unset; }
    .mx-hero-grid { grid-template-columns: 1fr; }
    .mx-hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
    .mx-preview-woo { margin-left: 0; }
    .mx-grid-plugins { grid-template-columns: 1fr; }
    .mx-highlights-row { grid-template-columns: 1fr; }
    .mx-steps-grid,
    .mx-why-grid { grid-template-columns: 1fr; }
    .mx-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .mx-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 992px) {
    .mx-nav-toggle {
        display: none !important;
    }

    .mx-header-cta {
        display: inline-flex !important;
    }

    .mx-nav {
        display: flex !important;
        position: static !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: 0 !important;
    }
}

@media (max-width: 991px) {
    .mx-header-inner {
        position: relative;
    }

    .mx-nav-toggle {
        display: flex !important;
    }

    .mx-header-cta {
        display: none !important;
    }

    .mx-nav {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99999;
        order: 99;
        flex: none;
        margin: 0;
        padding: calc(var(--wp-admin--admin-bar--height, 0px) + 72px) 20px 20px;
        background: rgba(15, 23, 42, 0.55);
        align-items: flex-start;
        justify-content: center;
        overflow-y: auto;
    }

    .mx-nav.is-open {
        display: flex !important;
    }

    .mx-nav .mx-menu {
        flex-direction: column;
        width: min(100%, 360px);
        background: #fff;
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
    }

    .miroseo .miro-contact-wrapper,
    .miroseo .miro-docs-container,
    .miroseo .miro-price-and-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mx-footer-grid { grid-template-columns: 1fr; }
    .mx-trust-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 480px) {
    .mx-trust-grid,
    .mx-highlights-badges { flex-direction: column; align-items: center; }
}

/* ═══ Rank Math–style homepage ═══ */
.miroseo-home .mx-rm-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #020617 0%, #0f172a 52%, #1e293b 100%);
    padding: 88px 0 80px;
    text-align: center;
    color: var(--mx-text);
}

.miroseo-home .mx-rm-hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, #000 15%, transparent 92%);
    pointer-events: none;
}

.miroseo-home .mx-rm-hero-bg::after {
    content: '';
    position: absolute;
    top: -25%;
    right: -8%;
    width: 55%;
    height: 85%;
    background: radial-gradient(ellipse, var(--mx-gold-glow), transparent 68%);
    pointer-events: none;
}

.miroseo-home .mx-rm-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.miroseo-home .mx-rm-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 22px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fde68a;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: 999px;
}

.miroseo-home .mx-rm-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    flex-shrink: 0;
}

.miroseo-home .mx-rm-hero h1 {
    font-size: clamp(2.15rem, 4.8vw, 3.35rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0 0 22px;
}

.miroseo-home .mx-rm-hero h1 .mx-gradient {
    background: linear-gradient(135deg, #fff 0%, #fde68a 55%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.miroseo-home .mx-rm-tagline {
    font-size: 1.08rem;
    font-weight: 500;
    color: #fde68a;
    margin: -6px 0 20px;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

.miroseo-home .mx-rm-lead {
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: #cbd5e1;
    margin: 0 auto 32px;
    max-width: 620px;
}

.miroseo-home .mx-rm-lead strong {
    color: #e2e8f0;
}

.miroseo-home .mx-rm-hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.miroseo-home .mx-rm-hero .mx-btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fde68a;
    border: 1px solid rgba(251, 191, 36, 0.35);
}

.miroseo-home .mx-rm-hero .mx-btn-ghost:hover {
    background: rgba(251, 191, 36, 0.12);
    border-color: rgba(251, 191, 36, 0.5);
    color: #fff;
}

.miroseo-home .mx-rm-hero-checks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 620px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #94a3b8;
}

.miroseo-home .mx-rm-hero-checks li {
    position: relative;
    padding-left: 22px;
}

.miroseo-home .mx-rm-hero-checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mx-gold);
    font-weight: 700;
}

.miroseo-home .mx-rm-hero-checks strong {
    color: #fde68a;
}

.miroseo-home .mx-rm-logos {
    padding: 40px 0 44px;
    background: #e8edf2;
    border-top: 1px solid #d5dde6;
    border-bottom: 1px solid #d5dde6;
}

.miroseo-home .mx-rm-logos-title {
    text-align: center;
    font-size: var(--mx-body-size);
    font-weight: var(--mx-body-weight);
    letter-spacing: 0;
    text-transform: none;
    color: #334155;
    margin: 0 auto 28px;
    max-width: 640px;
    line-height: var(--mx-body-lh);
}

.miroseo-home .mx-rm-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.miroseo-home .mx-rm-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 22px 14px 20px;
    background: #f4f7fa;
    border: 1px solid #cdd6e0;
    border-radius: 14px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.miroseo-home .mx-rm-logo-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.miroseo-home .mx-rm-logo-media {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 6px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.miroseo-home .mx-rm-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

.miroseo-home .mx-rm-logo-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    max-width: 140px;
}

.miroseo-home .mx-rm-logo-keywords {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.45;
    max-width: 130px;
}

.miroseo-home .mx-rm-logo-item--wordpress:hover { border-color: rgba(33, 117, 155, 0.35); }
.miroseo-home .mx-rm-logo-item--woocommerce:hover { border-color: rgba(127, 84, 179, 0.35); }
.miroseo-home .mx-rm-logo-item--search-console:hover { border-color: rgba(66, 133, 244, 0.35); }
.miroseo-home .mx-rm-logo-item--whatsapp:hover { border-color: rgba(37, 211, 102, 0.35); }
.miroseo-home .mx-rm-logo-item--lemon-squeezy:hover { border-color: rgba(255, 194, 51, 0.55); }

/* ─── Homepage ecosystem (sister brands) ─── */
.miroseo-home .mx-ecosystem {
    padding: 56px 0 64px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.miroseo-home .mx-ecosystem-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
}

.miroseo-home .mx-ecosystem-eyebrow {
    margin: 0 0 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fde68a;
}

.miroseo-home .mx-ecosystem-head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -0.03em;
}

.miroseo-home .mx-ecosystem-lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: #94a3b8;
}

.miroseo-home .mx-ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.miroseo-home .mx-ecosystem-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 16px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.miroseo-home .mx-ecosystem-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(148, 163, 184, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.miroseo-home .mx-ecosystem-card-media {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: block;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    overflow: visible;
    line-height: 0;
}

.miroseo-home .mx-ecosystem-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.miroseo-home .mx-ecosystem-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.miroseo-home .mx-ecosystem-card-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #f8fafc;
    line-height: 1.3;
}

.miroseo-home .mx-ecosystem-card-tagline {
    font-size: 0.84rem;
    font-weight: 600;
    color: #c4b5fd;
    line-height: 1.4;
}

.miroseo-home .mx-ecosystem-card--frogradar .mx-ecosystem-card-tagline {
    color: #86efac;
}

.miroseo-home .mx-ecosystem-card-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #94a3b8;
    margin-top: 4px;
}

.miroseo-home .mx-ecosystem-card-link {
    margin-top: 10px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #fde68a;
}

.miroseo-home .mx-ecosystem-card--frogradar:hover .mx-ecosystem-card-link {
    color: #86efac;
}

.miroseo-home .mx-ecosystem-card--aeoproof:hover .mx-ecosystem-card-link {
    color: #c4b5fd;
}

@media (max-width: 720px) {
    .miroseo-home .mx-ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .miroseo-home .mx-ecosystem {
        padding: 48px 0 52px;
    }

    .miroseo-home .mx-ecosystem-head {
        margin-bottom: 24px;
    }

    .miroseo-home .mx-ecosystem-card {
        gap: 14px;
        padding: 18px 16px;
    }

    .miroseo-home .mx-ecosystem-card-media {
        width: 52px;
        height: 52px;
    }

    .miroseo-home .mx-ecosystem-card-desc {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

@media (max-width: 960px) {
    .miroseo-home .mx-rm-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 560px) {
    .miroseo-home .mx-rm-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .miroseo-home .mx-rm-logos-title {
        font-size: 0.92rem;
        line-height: 1.5;
        max-width: 100%;
        margin-bottom: 18px;
    }

    .miroseo-home .mx-rm-logo-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: none;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 12px;
        padding: 14px 16px;
    }

    .miroseo-home .mx-rm-logo-item:last-child:nth-child(odd) .mx-rm-logo-media {
        width: 48px;
        height: 48px;
        padding: 5px;
    }

    .miroseo-home .mx-rm-logo-item:last-child:nth-child(odd) .mx-rm-logo-name,
    .miroseo-home .mx-rm-logo-item:last-child:nth-child(odd) .mx-rm-logo-keywords {
        text-align: left;
    }
}

.miroseo-home .mx-rm-intro {
    padding: 72px 0;
    background: #fff;
    text-align: center;
}

.miroseo-home .mx-rm-intro-inner {
    max-width: 720px;
    margin: 0 auto;
}

.miroseo-home .mx-rm-intro h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
}

.miroseo-home .mx-rm-intro p {
    margin: 0;
    color: #334155;
    line-height: var(--mx-body-lh);
}

.miroseo-home .mx-rm-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.miroseo-home .mx-rm-section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.03em;
}

.miroseo-home .mx-rm-section-head p {
    margin: 0 auto;
    max-width: 620px;
    color: #64748b;
}

.miroseo-home .mx-rm-features {
    padding: 80px 0;
    background: #F0F4F8;
}

.miroseo-home .mx-rm-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.miroseo-home .mx-rm-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.miroseo-home .mx-rm-feature:hover {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-3px);
}

.miroseo-home .mx-rm-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    line-height: 1;
    background: #eef2ff;
    border-radius: 14px;
    margin: 0 auto 16px;
}

.miroseo-home .mx-rm-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    margin: 0 0 10px;
}

.miroseo-home .mx-rm-feature p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: var(--mx-body-weight);
    color: #64748b;
}

.miroseo-home .mx-rm-features-link {
    text-align: center;
    margin: 36px 0 0;
}

.miroseo-home .mx-rm-features-link a {
    font-weight: 700;
    color: #4338ca;
    text-decoration: none;
}

.miroseo-home .mx-rm-features-link a:hover {
    text-decoration: underline;
}

.miroseo-home .mx-rm-split {
    padding: 88px 0;
    background: #fff;
}

.miroseo-home .mx-rm-split-alt {
    background: #F0F4F8;
}

.miroseo-home .mx-rm-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.miroseo-home .mx-rm-split-grid-reverse .mx-rm-split-copy { order: 2; }
.miroseo-home .mx-rm-split-grid-reverse .mx-rm-split-visual { order: 1; }

.miroseo-home .mx-rm-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4338ca;
    margin-bottom: 12px;
}

.miroseo-home .mx-rm-label-green {
    color: #16a34a;
}

.miroseo-home .mx-rm-split-copy h2 {
    font-size: clamp(1.65rem, 2.8vw, 2.15rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
}

.miroseo-home .mx-rm-split-copy > p {
    margin: 0 0 24px;
}

.miroseo-home .mx-rm-checklist {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.miroseo-home .mx-rm-checklist li {
    position: relative;
    padding-left: 28px;
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: var(--mx-body-color);
}

.miroseo-home .mx-rm-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    background: #22c55e;
    border-radius: 50%;
}

.miroseo-home .mx-rm-split-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.miroseo-home .mx-rm-module-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.miroseo-home .mx-rm-module-card .mx-rm-module-head {
    padding: 18px 22px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #fff;
    background: linear-gradient(135deg, #92400e 0%, #d97706 45%, #fbbf24 100%);
    border-bottom: none;
}

.miroseo-home .mx-rm-module-card-green .mx-rm-module-head {
    background: linear-gradient(135deg, #065f46 0%, #059669 45%, #34d399 100%);
    color: #fff;
}

.miroseo-home .mx-rm-module-list {
    list-style: none;
    margin: 0;
    padding: 8px 0 10px;
    background: #fff;
}

.miroseo-home .mx-rm-module-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    font-size: 1.05rem;
    line-height: 1.45;
    font-weight: 400;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
}

.miroseo-home .mx-rm-module-card .mx-rm-module-list li {
    background: #fff;
}

.miroseo-home .mx-rm-module-card .mx-rm-module-list li:has(.mx-rm-module-dot.on) {
    background: #fffbeb;
    color: #0f172a;
}

.miroseo-home .mx-rm-module-card-green .mx-rm-module-list li:has(.mx-rm-module-dot.on) {
    background: #ecfdf5;
    color: #0f172a;
}

.miroseo-home .mx-rm-module-list li:last-child {
    border-bottom: none;
}

.miroseo-home .mx-rm-module-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
}

.miroseo-home .mx-rm-module-dot.on {
    background: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.22);
}

.miroseo-home .mx-rm-module-dot.on.green {
    background: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.22);
}

.miroseo-home .mx-rm-solution {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

.miroseo-home .mx-rm-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.miroseo-home .mx-rm-solution-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #F0F4F8;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.miroseo-home .mx-rm-solution-item span {
    font-size: 1.35rem;
    line-height: 1;
}

.miroseo-home .mx-rm-solution-item p {
    margin: 0;
}

.mx-plugins-section {
    padding: 88px 0;
    background: #F0F4F8;
}

.mx-plugins-section .mx-section-head {
    margin-bottom: 56px;
}

.mx-plugins-section .mx-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    margin-bottom: 0;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #92400e;
    background: rgba(251, 191, 36, 0.14);
    border: 1px solid rgba(245, 158, 11, 0.28);
}

.mx-plugins-section .mx-section-head h2 {
    font-size: clamp(2rem, 3.5vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 36px 0 14px;
}

.mx-plugins-section .mx-section-head p {
    margin: 0 auto;
    max-width: 620px;
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: var(--mx-body-color);
}

.mx-plugins-section .mx-card-glow {
    display: none;
}

.mx-plugins-section .mx-card {
    border-radius: 22px;
    overflow: hidden;
}

.mx-plugins-section .mx-card-inner {
    padding: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.mx-plugins-section .mx-card:hover .mx-card-inner {
    border-color: #cbd5e1;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.mx-plugins-section .mx-card.is-featured .mx-card-inner {
    border-color: rgba(245, 158, 11, 0.55);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.18);
}

.mx-plugins-section .mx-card-band {
    padding: 28px 32px 24px;
    color: #fff;
}

.mx-plugins-section .mx-card--mirolabs .mx-card-band {
    background: linear-gradient(135deg, #92400e 0%, #d97706 42%, #fbbf24 100%);
}

.mx-plugins-section .mx-card--mirocart .mx-card-band {
    background: linear-gradient(135deg, #065f46 0%, #059669 42%, #34d399 100%);
}

.mx-plugins-section .mx-card--mirogeo-local .mx-card-band {
    background: linear-gradient(135deg, #0a3540 0%, #0f4c5c 42%, #1b9aaa 100%);
}

.mx-plugins-section .mx-card-band-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.mx-plugins-section .mx-card-band .mx-card-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.mx-plugins-section .mx-card-band .mx-card-meta {
    margin: 0;
    justify-content: flex-end;
}

.mx-plugins-section .mx-card-band .mx-card-cat {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
}

.mx-plugins-section .mx-card-band .mx-card-flag {
    background: #fff;
    color: #92400e;
}

.mx-plugins-section .mx-card--mirocart .mx-card-band .mx-card-flag {
    color: #065f46;
}

.mx-plugins-section .mx-card-band h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.mx-plugins-section .mx-card-band .mx-card-tagline {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
}

.mx-plugins-section .mx-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px 32px 30px;
    background: #fff;
}

.mx-plugins-section .mx-card-desc {
    margin-bottom: 20px;
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    color: #334155;
}

.mx-plugins-section .mx-card-features {
    margin-bottom: 24px;
    gap: 10px;
}

.mx-plugins-section .mx-card-features li {
    padding: 13px 16px 13px 40px;
    font-size: 1.0625rem;
    line-height: 1.55;
    font-weight: 400;
    color: #1e293b;
}

.mx-plugins-section .mx-card-features li::before {
    left: 14px;
    font-size: 0.85rem;
}

.mx-plugins-section .mx-card--mirolabs .mx-card-features li {
    background: #fffbeb;
    border-color: #fde68a;
}

.mx-plugins-section .mx-card--mirolabs .mx-card-features li::before {
    color: #b45309;
}

.mx-plugins-section .mx-card--mirocart .mx-card-features li {
    background: #ecfdf5;
    border-color: #a7f3d0;
}

.mx-plugins-section .mx-card--mirocart .mx-card-features li::before {
    color: #059669;
}

.mx-plugins-section .mx-card--mirogeo-local .mx-card-features li {
    background: #ecfeff;
    border-color: #a5f3fc;
}

.mx-plugins-section .mx-card--mirogeo-local .mx-card-features li::before {
    color: #0e7490;
}

.mx-plugins-section .mx-card-foot {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.mx-plugins-section .mx-card--mirolabs .mx-card-foot {
    background: linear-gradient(180deg, #fff 0%, #fffbeb 100%);
    margin: auto -32px -30px;
    padding: 22px 32px 30px;
    border-top-color: #fde68a;
}

.mx-plugins-section .mx-card--mirocart .mx-card-foot {
    background: linear-gradient(180deg, #fff 0%, #ecfdf5 100%);
    margin: auto -32px -30px;
    padding: 22px 32px 30px;
    border-top-color: #a7f3d0;
}

.mx-plugins-section .mx-card--mirogeo-local .mx-card-foot {
    background: linear-gradient(180deg, #fff 0%, #ecfeff 100%);
    margin: auto -32px -30px;
    padding: 22px 32px 30px;
    border-top-color: #a5f3fc;
}

.mx-plugins-section .mx-card-price {
    color: #0f172a;
}

.mx-plugins-section .mx-card-price-note {
    color: #475569;
    font-size: 1rem;
    line-height: 1.45;
}

.mx-plugins-section .mx-card-links a {
    color: #475569;
    font-size: 1rem;
}

.mx-plugins-section .mx-card--mirolabs .mx-card-links a:hover {
    color: #b45309;
}

.mx-plugins-section .mx-card--mirocart .mx-card-links a:hover {
    color: #059669;
}

.mx-plugins-section .mx-card--mirogeo-local .mx-card-links a:hover {
    color: #0e7490;
}

.miroseo-home .mx-rm-setup {
    padding: 80px 0;
    background: #fff;
}

.miroseo-home .mx-rm-setup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.miroseo-home .mx-rm-setup-grid article {
    text-align: center;
    padding: 32px 24px;
    background: #F0F4F8;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.miroseo-home .mx-rm-setup-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #4338ca);
    border-radius: 50%;
    margin-bottom: 16px;
}

.miroseo-home .mx-rm-setup-grid h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.miroseo-home .mx-rm-setup-grid p {
    margin: 0;
}

.miroseo-home .mx-trust-light {
    background: #F0F4F8;
    border-top: 1px solid #e2e8f0;
}

.miroseo-home .mx-trust-light .mx-trust-item {
    background: #fff;
    border: 1px solid #dce3ec;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
}

.miroseo-home .mx-guarantee-light {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
}

.miroseo-home .mx-guarantee-light h3 {
    color: #0f172a;
}

.miroseo-home .mx-guarantee-light p {
    color: #334155;
    font-weight: 500;
}

.miroseo-home .mx-rm-final-cta {
    padding: 96px 24px;
    background: linear-gradient(135deg, #312e81 0%, #4338ca 50%, #4f46e5 100%);
    text-align: center;
}

.miroseo-home .mx-rm-final-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.miroseo-home .mx-rm-final-cta h2 {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.miroseo-home .mx-rm-final-cta p {
    font-size: var(--mx-body-size);
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    max-width: 540px;
}

.miroseo-home .mx-rm-final-cta .mx-rm-hero-cta {
    margin: 4px 0 0;
    gap: 16px;
}

@media (max-width: 960px) {
    .miroseo-home .mx-rm-solution-grid,
    .miroseo-home .mx-rm-setup-grid {
        grid-template-columns: 1fr;
    }

    .miroseo-home .mx-rm-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .miroseo-home .mx-rm-split-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .miroseo-home .mx-rm-split-grid .mx-rm-split-visual {
        order: -1;
    }

    .miroseo-home .mx-rm-split-grid-reverse .mx-rm-split-copy,
    .miroseo-home .mx-rm-split-grid-reverse .mx-rm-split-visual {
        order: unset;
    }

    .miroseo-home .mx-rm-split-grid-reverse .mx-rm-split-visual {
        order: -1;
    }
}

/* ─── Mobile responsive (sitewide + homepage) ─── */
@media (max-width: 768px) {
    :root {
        --mx-body-size: 17px;
        --mx-body-lh: 26px;
    }

    .mx-container {
        padding: 0 16px;
    }

    .mx-plugins-section {
        padding: 56px 0;
    }

    .mx-plugins-section .mx-card-band {
        padding: 22px 20px 18px;
    }

    .mx-plugins-section .mx-card-band h3 {
        font-size: 1.35rem;
    }

    .mx-plugins-section .mx-card-body {
        padding: 22px 20px 24px;
    }

    .mx-plugins-section .mx-card--mirolabs .mx-card-foot,
    .mx-plugins-section .mx-card--mirocart .mx-card-foot,
    .mx-plugins-section .mx-card--mirogeo-local .mx-card-foot {
        margin: auto -20px -24px;
        padding: 18px 20px 24px;
    }

    .mx-trust {
        padding: 40px 0;
    }

    .mx-trust .mx-section-head {
        margin-bottom: 24px;
    }

    .mx-trust-grid {
        gap: 16px;
        margin-bottom: 24px;
    }

    .miroseo-home .mx-rm-hero {
        padding: 56px 0 48px;
    }

    .miroseo-home .mx-rm-kicker {
        font-size: 0.62rem;
        padding: 5px 12px;
        max-width: 100%;
        line-height: 1.45;
        text-align: center;
        justify-content: center;
    }

    .miroseo-home .mx-rm-lead {
        font-size: 1rem;
        line-height: 1.6;
    }

    .miroseo-home .mx-rm-hero-cta,
    .miroseo-home .mx-rm-final-cta .mx-rm-hero-cta,
    .miroseo-home .mx-rm-split-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .miroseo-home .mx-rm-split-actions {
        max-width: none;
    }

    .miroseo-home .mx-rm-hero-cta .mx-btn,
    .miroseo-home .mx-rm-final-cta .mx-rm-hero-cta .mx-btn,
    .miroseo-home .mx-rm-split-actions .mx-btn {
        width: 100%;
        justify-content: center;
    }

    .miroseo-home .mx-rm-hero-checks {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        max-width: 100%;
        text-align: left;
        font-size: 0.88rem;
    }

    .miroseo-home .mx-rm-intro,
    .miroseo-home .mx-rm-features,
    .miroseo-home .mx-rm-solution,
    .miroseo-home .mx-rm-split,
    .miroseo-home .mx-rm-setup,
    .miroseo-home .mx-ecosystem {
        padding: 48px 0;
    }

    .miroseo-home .mx-rm-section-head,
    .mx-trust .mx-section-head {
        margin-bottom: 28px;
    }

    .miroseo-home .mx-rm-section-head h2,
    .mx-trust .mx-section-head h2 {
        font-size: clamp(1.5rem, 5.5vw, 1.85rem);
    }

    .miroseo-home .mx-rm-intro h2 {
        font-size: clamp(1.5rem, 5.5vw, 1.85rem);
    }

    .miroseo-home .mx-rm-tagline {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .miroseo-home .mx-rm-final-cta {
        padding: 56px 16px;
    }

    .miroseo-home .mx-rm-final-cta h2 {
        font-size: clamp(1.45rem, 5.5vw, 1.75rem);
    }

    .miroseo-home .mx-rm-logos {
        padding: 28px 0 32px;
    }

    .miroseo-home .mx-rm-logos-title {
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .miroseo-home .mx-rm-logo-media {
        width: 48px;
        height: 48px;
    }

    .miroseo-home .mx-rm-features-grid {
        gap: 14px;
    }

    .miroseo-home .mx-rm-feature {
        padding: 20px 16px;
    }

    .miroseo-home .mx-rm-feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .miroseo-home .mx-rm-feature h3 {
        font-size: 1.1rem;
    }

    .miroseo-home .mx-rm-feature p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .mx-trust-item {
        padding: 20px 16px 22px;
    }

    .mx-trust-ico {
        width: 52px;
        height: 52px;
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    :root {
        --mx-body-size: 16px;
        --mx-body-lh: 24px;
    }

    .mx-container {
        padding: 0 14px;
    }

    .mx-logo-text {
        font-size: 1.1rem;
    }

    .mx-header-inner {
        gap: 10px;
        min-height: 60px;
        height: 60px;
    }

    .miroseo-home .mx-rm-logos-grid {
        gap: 12px;
    }

    .miroseo-home .mx-rm-logo-item {
        padding: 14px 10px 12px;
    }

    .miroseo-home .mx-rm-logo-name {
        font-size: 0.82rem;
    }

    .miroseo-home .mx-rm-logo-keywords {
        font-size: 0.72rem;
    }

    .miroseo-home .mx-rm-hero {
        padding: 44px 0 40px;
    }

    .miroseo-home .mx-rm-hero h1 {
        font-size: clamp(1.65rem, 7vw, 2rem);
        margin-bottom: 16px;
    }

    .miroseo-home .mx-rm-lead {
        margin-bottom: 24px;
    }

    .miroseo-home .mx-rm-hero-cta,
    .miroseo-home .mx-rm-final-cta .mx-rm-hero-cta {
        max-width: 100%;
    }

    .miroseo-home .mx-btn-lg {
        padding: 13px 20px;
        font-size: 0.9rem;
    }

    .miroseo-home .mx-rm-intro,
    .miroseo-home .mx-rm-features,
    .miroseo-home .mx-ecosystem,
    .mx-trust {
        padding: 40px 0;
    }

    .miroseo-home .mx-rm-final-cta {
        padding: 48px 14px;
    }

    .miroseo-home .mx-rm-features-grid {
        grid-template-columns: 1fr;
    }

    .miroseo-home .mx-ecosystem-head {
        margin-bottom: 20px;
    }

    .miroseo-home .mx-ecosystem-lead {
        font-size: 0.92rem;
    }

    .miroseo-home .mx-ecosystem-card {
        padding: 16px 14px;
    }

    .miroseo-home .mx-ecosystem-card-media {
        width: 48px;
        height: 48px;
    }

    .miroseo-home .mx-ecosystem-card-name {
        font-size: 1rem;
    }

    .miroseo-home .mx-ecosystem-card-link {
        margin-top: 8px;
    }

    .mx-trust-item {
        padding: 18px 14px 20px;
    }

    .mx-trust-ico {
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .mx-trust-item h4 {
        font-size: 1rem;
    }

    .mx-trust-item .mx-trust-desc {
        font-size: 0.85rem;
    }

    .mx-guarantee {
        padding: 22px 18px;
    }

    .mx-guarantee h3 {
        font-size: 1.1rem;
    }

    .miroseo-home .mx-rm-checklist li {
        font-size: 1rem;
        line-height: 1.55;
    }

    .mx-plugins-section .mx-section-head h2 {
        font-size: clamp(1.55rem, 6vw, 1.85rem);
    }
}

/* Stuck orphan overlays only — do not block WooCommerce loading states */
body.miroseo-ui .blockUI.blockOverlay:not(:has(~ .blockUI.blockMsg)) {
    display: none !important;
    pointer-events: none !important;
}

/* ─── MiroCart product + docs pages ─── */
.mx-mirocart-page {
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    color: var(--mx-body-color);
}

.mx-mirocart-page .mx-wcr-hero {
    background: linear-gradient(165deg, #022c22 0%, #0f172a 55%, #134e4a 100%);
    padding: 72px 24px 64px;
    text-align: center;
    color: #f0fdf4;
}

.mx-mirocart-page .mx-wcr-kicker {
    display: inline-block;
    margin: 0 0 16px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(52, 211, 153, 0.15);
    color: #6ee7b7;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mx-mirocart-page .mx-wcr-hero h1 {
    max-width: 820px;
    margin: 0 auto 16px;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.mx-mirocart-page .mx-wcr-lead {
    max-width: 680px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #cbd5e1;
}

.mx-mirocart-page .mx-wcr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 28px;
}

.mx-mirocart-page .mx-wcr-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.9rem;
    color: #94a3b8;
}

.mx-mirocart-page .mx-wcr-trust li::before {
    content: '✓ ';
    color: #34d399;
}

/* MiroCart feature cards */
.mx-mirocart-page .miro-container {
    width: min(1280px, 100%);
}

.mx-mirocart-page .mx-mc-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
}

.mx-mirocart-page .mx-mc-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 32px 28px 34px;
    background: #fff;
    border: 1px solid #dce3ec;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.07);
}

.mx-mirocart-page .mx-mc-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 0 22px;
    flex-shrink: 0;
    background: none;
    box-shadow: none;
}

.mx-mirocart-page .mx-mc-feature__icon span {
    font-size: 2.75rem;
    line-height: 1;
    display: block;
    text-align: center;
}

.mx-mirocart-page .mx-mc-feature h3 {
    margin: 0 0 12px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
    text-align: center;
    width: 100%;
}

.mx-mirocart-page .mx-mc-feature p,
.mx-mirocart-page .mx-mc-feature ul {
    margin: 0;
    flex: 1 1 auto;
    font-family: var(--mx-font);
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 27px;
    color: #64748b;
}

.mx-mirocart-page .mx-mc-feature ul {
    padding-left: 1.2rem;
}

.mx-mirocart-page .mx-mc-feature li {
    margin-bottom: 8px;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

@media (min-width: 640px) {
    .mx-mirocart-page .mx-mc-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .mx-mirocart-page #problem-solution .mx-mc-features,
    .mx-mirocart-page #whatsapp-cod .mx-mc-features,
    .mx-mirocart-page #analytics .mx-mc-features,
    .mx-mirocart-page #perfect-for .mx-mc-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .mx-mirocart-page #features .mx-mc-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mx-mirocart-page #recovery-sequences .mx-mc-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Legacy miro-feature-* (other sections) */
.mx-mirocart-page .miro-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 24px;
    align-items: stretch;
}

.mx-mirocart-page .miro-feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    min-height: 0;
    padding: 28px 26px 30px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--mx-radius);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.mx-mirocart-page .miro-content-section.alternate .miro-feature-card {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.mx-mirocart-page .miro-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 0 18px;
    flex-shrink: 0;
    font-size: 2rem;
    line-height: 1;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.14) 0%, rgba(16, 185, 129, 0.22) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.mx-mirocart-page .miro-feature-card h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.mx-mirocart-page .miro-feature-card p {
    margin: 0;
    flex: 1 1 auto;
    font-size: 1.02rem;
    line-height: 1.7;
    color: #475569;
}

.mx-mirocart-page .miro-feature-card ul {
    margin: 0;
    padding-left: 1.15rem;
    flex: 1 1 auto;
    font-size: 1.02rem;
    line-height: 1.7;
    color: #475569;
}

.mx-mirocart-page .miro-feature-card li {
    margin-bottom: 6px;
}

.mx-mirocart-page .miro-feature-card li:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .mx-mirocart-page .miro-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mx-mirocart-page #recovery-sequences .miro-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1100px) {
    .mx-mirocart-page #features .miro-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mx-mirocart-page .miro-docs-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0;
}

.mx-mirocart-page .miro-docs-subtitle {
    margin: 10px 0 0;
    color: #94a3b8;
    font-size: 1rem;
}

.mx-mirocart-page .miro-docs-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mx-mirocart-page .miro-docs-nav a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.mx-mirocart-page .miro-docs-nav a:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.mx-mirocart-page .miro-docs-section {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #f1f5f9;
}

.mx-mirocart-page .miro-docs-section:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mx-mirocart-page .miro-docs-section h2 {
    font-size: 1.5rem;
    margin: 0 0 16px;
}

.mx-mirocart-page .miro-docs-section h3 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.mx-mirocart-page .miro-docs-note {
    margin-top: 16px;
    padding: 16px 18px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    font-size: 0.95rem;
}

.mx-mirocart-page .mx-wcr-flow {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
    max-width: 720px;
    margin-inline: auto;
}

.mx-mirocart-page .mx-wcr-flow li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.mx-mirocart-page .mx-wcr-flow-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #34d399, #059669);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.mx-mirocart-page .mx-wcr-flow p {
    margin: 6px 0 0;
    color: #64748b;
}

.mx-mirocart-page .mx-wcr-lang-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.mx-mirocart-page .mx-wcr-lang-list li {
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.mx-mirocart-page .mx-wcr-reqs {
    max-width: 560px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.mx-mirocart-page .mx-wcr-limitations {
    max-width: 680px;
    margin: 0 auto;
    padding: 16px 18px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    font-size: 0.95rem;
}

.mx-mirocart-page .mx-wcr-pricing-table .mx-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.mx-mirocart-page .mx-wcr-faq h3 {
    font-size: 1.05rem;
    margin: 28px 0 8px;
}

.mx-mirocart-page .mx-wcr-faq p {
    margin: 0 0 8px;
    max-width: 720px;
    margin-inline: auto;
}

/* MiroCart FAQ accordion */
.mx-mirocart-page .mx-mirocart-faq {
    padding: 80px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    border-top: 1px solid #e2e8f0;
}

.mx-mirocart-page .mx-mirocart-faq-wrap {
    max-width: 880px;
    margin: 0 auto;
}

.mx-mirocart-page .mx-mirocart-faq-head {
    text-align: center;
    margin-bottom: 40px;
}

.mx-mirocart-page .mx-mirocart-faq-kicker {
    display: inline-block;
    margin: 0 0 14px;
    padding: 4px 10px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #047857;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 999px;
}

.mx-mirocart-page .mx-mirocart-faq-title {
    margin: 0 0 14px;
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.mx-mirocart-page .mx-mirocart-faq-lead {
    margin: 0 auto;
    max-width: 620px;
    font-size: 1.02rem;
    line-height: 1.65;
    color: #64748b;
}

.mx-mirocart-page .mx-mirocart-faq-panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 12px;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 20px 50px rgba(15, 23, 42, 0.08);
}

.mx-mirocart-page .mx-faq-list {
    display: grid;
    gap: 0;
}

.mx-mirocart-page .mx-faq-item {
    border-bottom: 1px solid #eef2f7;
    transition: background 0.2s;
}

.mx-mirocart-page .mx-faq-item:last-child {
    border-bottom: 0;
}

.mx-mirocart-page .mx-faq-item[open] {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
}

.mx-mirocart-page .mx-faq-question {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 14px;
    padding: 20px 18px;
    cursor: pointer;
    list-style: none;
}

.mx-mirocart-page .mx-faq-question::-webkit-details-marker {
    display: none;
}

.mx-mirocart-page .mx-faq-index {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #94a3b8;
    font-variant-numeric: tabular-nums;
}

.mx-mirocart-page .mx-faq-item[open] .mx-faq-index {
    color: #059669;
}

.mx-mirocart-page .mx-faq-question-text {
    font-family: var(--mx-font);
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: 700;
    font-style: normal;
    color: var(--mx-body-color);
    text-align: left;
}

.mx-mirocart-page .mx-faq-item[open] .mx-faq-question-text {
    color: var(--mx-body-color);
}

.mx-mirocart-page .mx-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.mx-mirocart-page .mx-faq-item[open] .mx-faq-toggle {
    background: #ecfdf5;
    border-color: #a7f3d0;
    transform: rotate(180deg);
}

.mx-mirocart-page .mx-faq-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: translate(-50%, -65%) rotate(45deg);
}

.mx-mirocart-page .mx-faq-item[open] .mx-faq-toggle::before {
    border-color: #059669;
}

.mx-mirocart-page .mx-faq-answer {
    padding: 0 18px 22px 76px;
}

.mx-mirocart-page .mx-faq-answer p {
    margin: 0;
    font-family: var(--mx-font);
    font-size: var(--mx-body-size);
    line-height: var(--mx-body-lh);
    font-weight: var(--mx-body-weight);
    font-style: normal;
    color: var(--mx-body-color);
}

.mx-mirocart-page .mx-mirocart-faq-cta {
    margin-top: 36px;
    padding: 28px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.mx-mirocart-page .mx-mirocart-faq-cta p {
    margin: 0 0 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
}

.mx-mirocart-page .mx-mirocart-faq-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

@media (max-width: 640px) {
    .mx-mirocart-page .mx-mirocart-faq {
        padding: 56px 16px;
    }

    .mx-mirocart-page .mx-mirocart-faq-panel {
        padding: 8px;
        border-radius: 18px;
    }

    .mx-mirocart-page .mx-faq-question {
        grid-template-columns: 36px minmax(0, 1fr) 28px;
        gap: 10px;
        padding: 16px 12px;
    }

    .mx-mirocart-page .mx-faq-answer {
        padding: 0 12px 18px 12px;
    }

    .mx-mirocart-page .mx-faq-question-text {
        font-size: var(--mx-body-size);
        line-height: var(--mx-body-lh);
    }

    .mx-mirocart-page .mx-mirocart-faq-cta-actions .mx-btn {
        width: 100%;
    }
}

.mx-mirocart-page .mx-wcr-quickstart {
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
}

.mx-mirocart-page .mx-wcr-copyblock {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.mx-mirocart-page .mx-wcr-keywords {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 960px) {
    .mx-mirocart-page .miro-docs-sidebar {
        display: none;
    }
}

/* Documentation hub + shared doc chrome */
.mx-docs-hub-grid-section {
    padding: 48px 0 72px;
    background: #f8fafc;
}

.mx-docs-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.mx-docs-hub-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mx-docs-hub-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.mx-docs-hub-card-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.mx-docs-hub-card h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.mx-docs-hub-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.mx-docs-hub-card-cta {
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--mx-gold-dark, #b45309);
}

.mx-docs-kicker {
    margin: 0 0 12px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}

.mx-docs-kicker a {
    color: #cbd5e1;
    text-decoration: none;
}

.mx-docs-kicker a:hover {
    color: #fff;
    text-decoration: underline;
}

.mx-docs-switcher {
    margin: 14px 0 0;
    font-size: 0.9rem;
    color: #94a3b8;
}

.mx-docs-switcher a {
    color: #6ee7b7;
    text-decoration: none;
    font-weight: 600;
}

.mx-docs-switcher a:hover {
    text-decoration: underline;
}

.mx-docs-switcher span {
    margin: 0 10px;
    color: #64748b;
}

@media (max-width: 900px) {
    .mx-docs-hub-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══ Plugin documentation (shared pro layout) ═══ */
.mx-plugin-docs {
    --mx-ml-docs-sidebar: 260px;
    --mx-ml-docs-border: #e2e8f0;
    --mx-ml-docs-muted: #64748b;
    --mx-ml-docs-accent: #7c3aed;
    --mx-ml-docs-accent-soft: #ede9fe;
    --mx-ml-docs-accent-text: #5b21b6;
    /* Coordinated type scale — 16px base, not theme 21px body */
    --mx-ml-fs-xs: 0.75rem;
    --mx-ml-fs-sm: 0.875rem;
    --mx-ml-fs-base: 1rem;
    --mx-ml-fs-h4: 1rem;
    --mx-ml-fs-h3: 1.125rem;
    --mx-ml-fs-h2: 1.5rem;
    --mx-ml-fs-h1: 1.75rem;
    --mx-ml-lh: 1.65;
    --mx-ml-lh-tight: 1.45;
    font-size: var(--mx-ml-fs-base);
    line-height: var(--mx-ml-lh);
    color: #334155;
    background: #f8fafc;
}

.mx-plugin-docs .mx-docs-prose,
.mx-plugin-docs .miro-docs-section,
.mx-plugin-docs .mx-ml-docs-main {
    font-size: var(--mx-ml-fs-base);
    line-height: var(--mx-ml-lh);
}

.mx-plugin-docs .mx-ml-docs-topbar {
    color: #f1f5f9;
    padding: 32px 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mx-plugin-docs .mx-ml-docs-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.mx-plugin-docs .mx-ml-docs-topbar h1 {
    margin: 6px 0 0;
    font-size: clamp(1.375rem, 2.5vw, var(--mx-ml-fs-h1));
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: var(--mx-ml-lh-tight);
}

.mx-plugin-docs .mx-ml-docs-topbar .mx-docs-kicker {
    margin: 0 0 8px;
    font-size: var(--mx-ml-fs-xs);
}

.mx-plugin-docs .mx-ml-docs-topbar-sub {
    max-width: 1200px;
    margin: 12px auto 0;
    color: #94a3b8;
    font-size: var(--mx-ml-fs-sm);
    line-height: var(--mx-ml-lh);
}

.mx-plugin-docs .mx-ml-docs-topbar .mx-docs-switcher {
    max-width: 1200px;
    margin: 14px auto 0;
    font-size: var(--mx-ml-fs-sm);
}

.mx-plugin-docs .mx-ml-docs-topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.mx-plugin-docs .mx-ml-docs-pill {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    font-size: var(--mx-ml-fs-sm);
    font-weight: 600;
    text-decoration: none;
}

.mx-plugin-docs .mx-ml-docs-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.mx-plugin-docs .mx-ml-docs-btn {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 8px;
    background: #fbbf24;
    color: #0f172a;
    font-size: var(--mx-ml-fs-sm);
    font-weight: 700;
    text-decoration: none;
}

.mx-plugin-docs .mx-ml-docs-btn:hover {
    background: #f59e0b;
}

.mx-plugin-docs .mx-ml-docs-layout {
    display: grid;
    grid-template-columns: var(--mx-ml-docs-sidebar) minmax(0, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
}

.mx-plugin-docs .mx-ml-docs-aside {
    border-right: 1px solid var(--mx-ml-docs-border);
    background: #fff;
}

.mx-plugin-docs .mx-ml-docs-aside-inner {
    position: sticky;
    top: 72px;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    padding: 20px 16px 32px;
}

.mx-plugin-docs .mx-ml-docs-search input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--mx-ml-docs-border);
    border-radius: 8px;
    font-size: var(--mx-ml-fs-sm);
    line-height: var(--mx-ml-lh);
    background: #f8fafc;
    color: #0f172a;
}

.mx-plugin-docs .mx-ml-docs-search input:focus {
    outline: none;
    border-color: var(--mx-ml-docs-accent);
    box-shadow: 0 0 0 3px var(--mx-ml-docs-accent-soft);
}

.mx-plugin-docs .mx-ml-docs-toc-toggle {
    display: none;
    width: 100%;
    margin-top: 12px;
    padding: 10px 12px;
    border: 1px solid var(--mx-ml-docs-border);
    border-radius: 8px;
    background: #fff;
    font-weight: 600;
    font-size: var(--mx-ml-fs-sm);
    cursor: pointer;
}

.mx-plugin-docs .mx-ml-docs-nav {
    margin-top: 16px;
}

.mx-plugin-docs .mx-ml-docs-nav-group + .mx-ml-docs-nav-group {
    margin-top: 18px;
}

.mx-plugin-docs .mx-ml-docs-nav-label {
    margin: 0 0 6px;
    padding: 0 10px;
    font-size: var(--mx-ml-fs-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.mx-plugin-docs .mx-ml-docs-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mx-plugin-docs .mx-ml-docs-nav a {
    display: block;
    padding: 7px 10px;
    border-radius: 6px;
    color: #475569;
    text-decoration: none;
    font-size: var(--mx-ml-fs-sm);
    font-weight: 500;
    line-height: var(--mx-ml-lh-tight);
    border-left: 2px solid transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.mx-plugin-docs .mx-ml-docs-nav a:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.mx-plugin-docs .mx-ml-docs-nav a.is-active {
    background: var(--mx-ml-docs-accent-soft);
    color: var(--mx-ml-docs-accent-text);
    border-left-color: var(--mx-ml-docs-accent);
    font-weight: 600;
}

.mx-plugin-docs .mx-ml-docs-main {
    padding: 32px 32px 64px;
    min-width: 0;
}

.mx-plugin-docs .mx-docs-prose {
    max-width: 760px;
}

.mx-plugin-docs .mx-ml-docs-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: center;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--mx-ml-docs-border);
    font-size: var(--mx-ml-fs-sm);
    line-height: var(--mx-ml-lh);
    color: var(--mx-ml-docs-muted);
}

.mx-plugin-docs .mx-ml-docs-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--mx-ml-docs-accent-soft);
    color: var(--mx-ml-docs-accent-text);
    font-size: var(--mx-ml-fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mx-plugin-docs .mx-ml-docs-meta-item strong {
    color: #0f172a;
    font-weight: 600;
}

.mx-plugin-docs .mx-docs-section,
.mx-plugin-docs .miro-docs-section {
    scroll-margin-top: 88px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eef2f7;
}

.mx-plugin-docs .mx-docs-section:last-of-type,
.mx-plugin-docs .miro-docs-section:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
}

.mx-plugin-docs .mx-docs-section.mx-docs-search-hidden {
    display: none;
}

.mx-plugin-docs .mx-docs-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.mx-plugin-docs .mx-docs-section-head h2,
.mx-plugin-docs .miro-docs-section > h2 {
    margin: 0 0 16px;
    font-size: var(--mx-ml-fs-h2);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: var(--mx-ml-lh-tight);
    color: #0f172a;
}

.mx-plugin-docs .mx-docs-section-head h2 {
    margin: 0;
}

.mx-plugin-docs .mx-docs-anchor {
    opacity: 0;
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--mx-ml-fs-h3);
    line-height: 1;
    transition: opacity 0.15s ease, color 0.15s ease;
}

.mx-plugin-docs .mx-docs-section-head:hover .mx-docs-anchor,
.mx-plugin-docs .mx-docs-anchor:focus {
    opacity: 1;
    color: var(--mx-ml-docs-accent);
}

.mx-plugin-docs .mx-docs-lead {
    font-size: var(--mx-ml-fs-base);
    line-height: var(--mx-ml-lh);
    color: #334155;
    margin: 0 0 20px;
}

.mx-plugin-docs .mx-docs-prose h3,
.mx-plugin-docs .miro-docs-section h3 {
    margin: 28px 0 12px;
    font-size: var(--mx-ml-fs-h3);
    font-weight: 700;
    line-height: var(--mx-ml-lh-tight);
    color: #0f172a;
}

.mx-plugin-docs .mx-docs-prose h4,
.mx-plugin-docs .miro-docs-section h4 {
    margin: 20px 0 10px;
    font-size: var(--mx-ml-fs-h4);
    font-weight: 700;
    line-height: var(--mx-ml-lh-tight);
    color: #1e293b;
}

.mx-plugin-docs .mx-docs-prose p,
.mx-plugin-docs .miro-docs-section p {
    margin: 0 0 14px;
    font-size: var(--mx-ml-fs-base);
    line-height: var(--mx-ml-lh);
    color: #334155;
}

.mx-plugin-docs .mx-docs-prose ul,
.mx-plugin-docs .mx-docs-prose ol,
.mx-plugin-docs .miro-docs-section ul,
.mx-plugin-docs .miro-docs-section ol {
    margin: 0 0 16px;
    padding-left: 1.35rem;
    font-size: var(--mx-ml-fs-base);
    line-height: var(--mx-ml-lh);
    color: #334155;
}

.mx-plugin-docs .mx-docs-prose li,
.mx-plugin-docs .miro-docs-section li {
    margin-bottom: 6px;
    font-size: inherit;
}

.mx-plugin-docs .mx-docs-prose li strong,
.mx-plugin-docs .miro-docs-section li strong,
.mx-plugin-docs .mx-docs-prose p strong,
.mx-plugin-docs .miro-docs-section p strong {
    font-size: inherit;
    font-weight: 600;
    color: #0f172a;
}

.mx-plugin-docs .mx-docs-prose a {
    color: var(--mx-ml-docs-accent-text);
    font-weight: 500;
}

.mx-plugin-docs .mx-docs-path {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    font-family: var(--mx-mono);
    font-size: var(--mx-ml-fs-sm);
    line-height: var(--mx-ml-lh-tight);
    color: #0f172a;
}

.mx-plugin-docs .mx-ml-docs-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.mx-plugin-docs .mx-ml-docs-feature-card {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--mx-ml-docs-border);
    border-radius: 12px;
}

.mx-plugin-docs .mx-ml-docs-feature-icon {
    font-size: 1.35rem;
    line-height: 1;
}

.mx-plugin-docs .mx-ml-docs-feature-card h4 {
    margin: 10px 0 6px;
    font-size: var(--mx-ml-fs-base);
    font-weight: 700;
    line-height: var(--mx-ml-lh-tight);
    color: #0f172a;
}

.mx-plugin-docs .mx-ml-docs-feature-card p {
    margin: 0;
    font-size: var(--mx-ml-fs-sm);
    line-height: var(--mx-ml-lh);
    color: var(--mx-ml-docs-muted);
}

.mx-plugin-docs .mx-ml-docs-steps {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    counter-reset: mx-docs-step;
}

.mx-plugin-docs .mx-ml-docs-step {
    position: relative;
    margin: 0 0 20px;
    padding: 20px 20px 20px 56px;
    background: #fff;
    border: 1px solid var(--mx-ml-docs-border);
    border-radius: 12px;
    counter-increment: mx-docs-step;
}

.mx-plugin-docs .mx-ml-docs-step::before {
    content: counter(mx-docs-step);
    position: absolute;
    left: 18px;
    top: 20px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--mx-ml-docs-accent-soft);
    color: var(--mx-ml-docs-accent-text);
    font-size: 0.8125rem;
    font-weight: 800;
}

.mx-plugin-docs .mx-ml-docs-step h3 {
    margin: 0 0 10px;
    font-size: var(--mx-ml-fs-h3);
    line-height: var(--mx-ml-lh-tight);
}

.mx-plugin-docs .mx-ml-docs-step p,
.mx-plugin-docs .mx-ml-docs-step li {
    font-size: var(--mx-ml-fs-base);
    line-height: var(--mx-ml-lh);
}

.mx-plugin-docs .mx-ml-docs-step ol {
    margin-bottom: 0;
}

.mx-plugin-docs .mx-ml-docs-callout,
.mx-plugin-docs .miro-docs-note {
    margin: 20px 0;
    padding: 16px 18px;
    border-radius: 10px;
    border: 1px solid;
    font-size: var(--mx-ml-fs-base);
    line-height: var(--mx-ml-lh);
}

.mx-plugin-docs .mx-ml-docs-callout p,
.mx-plugin-docs .miro-docs-note p {
    margin: 6px 0 0;
    font-size: inherit;
    line-height: inherit;
}

.mx-plugin-docs .mx-ml-docs-callout-label {
    display: block;
    font-size: var(--mx-ml-fs-xs);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mx-plugin-docs .mx-ml-docs-callout--tip,
.mx-plugin-docs .miro-docs-note {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #14532d;
}

.mx-plugin-docs .mx-ml-docs-callout--tip .mx-ml-docs-callout-label {
    color: #15803d;
}

.mx-plugin-docs .mx-ml-docs-callout--note {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1e3a8a;
}

.mx-plugin-docs .mx-ml-docs-callout--note .mx-ml-docs-callout-label {
    color: #1d4ed8;
}

.mx-plugin-docs .mx-ml-docs-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mx-plugin-docs .mx-ml-docs-faq-item {
    background: #fff;
    border: 1px solid var(--mx-ml-docs-border);
    border-radius: 10px;
    overflow: hidden;
}

.mx-plugin-docs .mx-ml-docs-faq-item summary {
    padding: 16px 18px;
    font-size: var(--mx-ml-fs-base);
    font-weight: 600;
    line-height: var(--mx-ml-lh-tight);
    color: #0f172a;
    cursor: pointer;
    list-style: none;
}

.mx-plugin-docs .mx-ml-docs-faq-item summary::-webkit-details-marker {
    display: none;
}

.mx-plugin-docs .mx-ml-docs-faq-item summary::after {
    content: '+';
    float: right;
    color: #94a3b8;
    font-weight: 400;
}

.mx-plugin-docs .mx-ml-docs-faq-item[open] summary::after {
    content: '−';
}

.mx-plugin-docs .mx-ml-docs-faq-item p {
    margin: 0;
    padding: 0 18px 16px;
    font-size: var(--mx-ml-fs-base);
    line-height: var(--mx-ml-lh);
    color: #475569;
}

.mx-plugin-docs .mx-ml-docs-pager {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--mx-ml-docs-border);
}

.mx-plugin-docs .mx-ml-docs-pager-link {
    font-size: var(--mx-ml-fs-sm);
    font-weight: 600;
    color: var(--mx-ml-docs-accent-text);
    text-decoration: none;
}

.mx-plugin-docs .mx-ml-docs-pager-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .mx-plugin-docs .mx-ml-docs-layout {
        grid-template-columns: 1fr;
    }

    .mx-plugin-docs .mx-ml-docs-aside {
        border-right: 0;
        border-bottom: 1px solid var(--mx-ml-docs-border);
    }

    .mx-plugin-docs .mx-ml-docs-aside-inner {
        position: static;
        max-height: none;
        padding: 16px;
    }

    .mx-plugin-docs .mx-ml-docs-toc-toggle {
        display: block;
    }

    .mx-plugin-docs .mx-ml-docs-nav {
        display: none;
        margin-top: 10px;
    }

    .mx-plugin-docs .mx-ml-docs-aside.is-open .mx-ml-docs-nav {
        display: block;
    }

    .mx-plugin-docs .mx-ml-docs-main {
        padding: 24px 20px 48px;
    }

    .mx-plugin-docs .mx-ml-docs-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Per-plugin doc accents */
.mx-mirolabs-docs {
    --mx-ml-docs-accent: #7c3aed;
    --mx-ml-docs-accent-soft: #ede9fe;
    --mx-ml-docs-accent-text: #5b21b6;
}

.mx-mirolabs-docs .mx-ml-docs-topbar {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 48%, #312e81 100%);
}

.mx-mirocart-docs {
    --mx-ml-docs-accent: #059669;
    --mx-ml-docs-accent-soft: #d1fae5;
    --mx-ml-docs-accent-text: #047857;
}

.mx-mirocart-docs .mx-ml-docs-topbar {
    background: linear-gradient(135deg, #022c22 0%, #0f172a 48%, #134e4a 100%);
}

.mx-mirocart-docs .mx-docs-switcher a {
    color: #6ee7b7;
}

.mx-mirogeo-docs {
    --mx-ml-docs-accent: #4f46e5;
    --mx-ml-docs-accent-soft: #e0e7ff;
    --mx-ml-docs-accent-text: #4338ca;
}

.mx-mirogeo-docs .mx-ml-docs-topbar {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 48%, #3730a3 100%);
}

.mx-mirogeo-docs .mx-docs-switcher a {
    color: #a5b4fc;
}

.mx-miropage-docs {
    --mx-ml-docs-accent: #3b82f6;
    --mx-ml-docs-accent-soft: #dbeafe;
    --mx-ml-docs-accent-text: #1d4ed8;
}

.mx-miropage-docs .mx-ml-docs-topbar {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 48%, #1e40af 100%);
}

.mx-miropage-docs .mx-docs-switcher a {
    color: #93c5fd;
}

.mx-mirosell-docs {
    --mx-ml-docs-accent: #c9a227;
    --mx-ml-docs-accent-soft: #fef3c7;
    --mx-ml-docs-accent-text: #b45309;
}

.mx-mirosell-docs .mx-ml-docs-topbar {
    background: linear-gradient(135deg, #1c1917 0%, #0f172a 48%, #78350f 100%);
}

.mx-mirosell-docs .mx-docs-switcher a {
    color: #fcd34d;
}

/* Plugin teasers (homepage) */
.mx-grid-plugin-teasers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.mx-plugin-teaser {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mx-plugin-teaser:hover {
    border-color: #cbd5e1;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.mx-plugin-teaser__icon {
    font-size: 2rem;
    line-height: 1;
}

.mx-plugin-teaser__cat {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 4px;
}

.mx-plugin-teaser__title {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.mx-plugin-teaser__tagline {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #64748b;
}

.mx-plugin-teaser__price {
    margin: 8px 0 0;
    font-size: 0.9rem;
    color: #475569;
}

.mx-plugin-teaser__price s {
    color: #94a3b8;
    margin-right: 6px;
}

.mx-plugin-teaser__price strong {
    color: #0f172a;
}

.mx-plugin-teaser__price span {
    color: #64748b;
    margin-left: 4px;
}

.mx-plugin-teaser__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mx-plugin-teaser__link {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
}

.mx-plugin-teaser__link:hover {
    color: #c9a227;
}

.mx-plugin-teaser--mirolabs { border-top: 3px solid #6366f1; }
.mx-plugin-teaser--mirocart { border-top: 3px solid #22c55e; }
.mx-plugin-teaser--mirogeo-local { border-top: 3px solid #14b8a6; }

.mx-pricing-page .mx-pricing-jump {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 24px 0 20px;
}

.mx-pricing-page .mx-pricing-jump-link {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0f172a;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mx-pricing-page .mx-pricing-jump-link:hover {
    border-color: #c9a227;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

@media (max-width: 640px) {
    .mx-pricing-page .mx-pricing-jump {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .mx-pricing-page .mx-pricing-jump::-webkit-scrollbar {
        display: none;
    }

    .mx-pricing-page .mx-pricing-jump-link {
        flex-shrink: 0;
    }
}

.mx-product-landing-notice {
    max-width: 1200px;
    margin: 0 auto 24px;
    padding: 0 20px;
}

.mx-product-landing-notice p {
    margin: 0;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.mx-product-landing-notice a {
    font-weight: 600;
    color: #0f172a;
    margin-left: 6px;
}

.mx-miropage-page { background: #fff; }

.mx-mp-hero {
    padding: 72px 0 64px;
    background: linear-gradient(165deg, #1d4ed8 0%, #1e40af 45%, #1e3a8a 100%);
    color: #fff;
}

.mx-mp-hero-inner { max-width: 820px; }

.mx-mp-kicker {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 16px;
}

.mx-mp-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
    font-weight: 800;
}

.mx-mp-lead {
    margin: 0 0 28px;
    font-size: 1.125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.mx-mp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.mx-mp-trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
}

.mx-mp-trust li::before {
    content: "✓";
    margin-right: 8px;
    color: #93c5fd;
    font-weight: 700;
}

.mx-miropage-page .mx-mc-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.mx-miropage-page .mx-mc-feature {
    padding: 24px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
}

.mx-miropage-page .mx-mc-feature h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1d4ed8;
}

.mx-mp-cta {
    padding: 64px 0;
    background: #f8fafc;
}

.mx-mp-cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.mx-mp-cta h2 {
    margin: 0 0 12px;
    font-size: 1.75rem;
    color: #0f172a;
}

.mx-mp-cta p {
    margin: 0 0 24px;
    color: #64748b;
}

.mx-mirogeo-page { background: #fff; }

.mx-mg-hero {
    padding: 72px 0 64px;
    background: linear-gradient(165deg, #0f766e 0%, #115e59 45%, #134e4a 100%);
    color: #fff;
}

.mx-mg-hero-inner { max-width: 820px; }

.mx-mg-kicker {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 16px;
}

.mx-mg-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
    font-weight: 800;
}

.mx-mg-lead {
    margin: 0 0 28px;
    font-size: 1.125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.mx-mg-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.mx-mg-trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
}

.mx-mg-trust li::before {
    content: "✓";
    margin-right: 8px;
    color: #5eead4;
    font-weight: 700;
}

.mx-mirogeo-page .mx-mc-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.mx-mirogeo-page .mx-mc-feature {
    padding: 24px;
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    border-radius: 12px;
}

.mx-mirogeo-page .mx-mc-feature h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #0f766e;
}

.mx-mg-cta {
    padding: 64px 0;
    background: #f8fafc;
}

.mx-mg-cta-inner {
    text-align: center;
    max-width: 640px;
}

.mx-mg-cta h2 {
    margin: 0 0 12px;
    font-size: 1.75rem;
    color: #0f172a;
}

.mx-mg-cta p {
    margin: 0 0 24px;
    color: #64748b;
}

.mx-home-marketplace {
    scroll-margin-top: 96px;
}

.mx-home-marketplace-more {
    margin: 32px 0 0;
    text-align: center;
}

@media (max-width: 900px) {
    .mx-grid-plugin-teasers { grid-template-columns: 1fr; }
    .mx-mirogeo-page .mx-mc-features { grid-template-columns: 1fr; }
    .mx-miropage-page .mx-mc-features { grid-template-columns: 1fr; }
}

/* Marketplace product item page */
body.mx-product-item-page .mx-woo .mx-shop-content {
    padding-top: 32px;
    padding-bottom: 88px;
}

.mx-product-item {
    --mx-product-copy-font: var(--mx-font);
    --mx-product-copy-size: 16px;
    --mx-product-copy-lh: 26px;
    --mx-product-copy-weight: 400;
    --mx-product-copy-color: rgb(71, 85, 105);
}

.mx-product-tabs-panels,
.mx-product-tab-panel,
.mx-product-tab-lead,
.mx-product-item-content,
.mx-product-item-content p,
.mx-product-item-content li,
.mx-product-item-bullets li,
.mx-product-highlights-block .mx-product-highlights-list li,
.mx-product-faq-answer,
.mx-product-faq-answer p {
    font-family: var(--mx-product-copy-font);
    font-style: normal;
    font-weight: var(--mx-product-copy-weight);
    font-size: var(--mx-product-copy-size);
    line-height: var(--mx-product-copy-lh);
    color: var(--mx-product-copy-color);
}

body.mx-woo-plugin-item .mx-woo .mx-shop-content {
    padding-top: 32px;
}

.mx-product-item-crumb {
    margin-bottom: 24px;
    font-size: 0.88rem;
    color: #64748b;
}

.mx-product-item-crumb a {
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
}

.mx-product-item-crumb a:hover {
    color: #b45309;
}

.mx-product-item-header {
    margin-bottom: 28px;
}

.mx-product-item-header .mx-product-item-tagline {
    margin-bottom: 0;
}

.mx-product-item-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 40px;
    align-items: start;
}

.mx-product-item-preview {
    position: relative;
    margin-bottom: 28px;
    padding: 28px;
    background: linear-gradient(165deg, #f8fafc 0%, #eef2ff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
}

.mx-product-item--mirocart .mx-product-item-preview {
    background: linear-gradient(165deg, #f0fdf4 0%, #ecfdf5 100%);
}

.mx-product-item--mirogeo-local .mx-product-item-preview {
    background: linear-gradient(165deg, #f0fdfa 0%, #ecfeff 100%);
}

.mx-product-item--miropage-seo .mx-product-item-preview {
    background: linear-gradient(165deg, #eff6ff 0%, #dbeafe 100%);
}

.mx-product-item-preview-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.mx-product-item-shot {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 12px;
}

.mx-product-item-shot--placeholder {
    min-height: 280px;
    background: #e2e8f0;
    border-radius: 12px;
}

.mx-product-item-nav {
    display: none;
}

.mx-product-tabs {
    margin-top: 8px;
}

.mx-product-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
    padding: 0;
    border-bottom: 1px solid #e2e8f0;
}

.mx-product-tab-btn {
    margin: 0 0 -1px;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.mx-product-tab-btn:hover {
    color: #0f172a;
}

.mx-product-tab-btn.is-active {
    color: #0f172a;
    border-bottom-color: #c9a227;
}

.mx-product-tabs-panels {
    padding: 28px 0 0;
}

.mx-product-tab-panel[hidden] {
    display: none !important;
}

.mx-product-tab-panel.is-active {
    display: block;
}

.mx-product-tab-lead {
    margin: 0 0 20px;
}

.mx-product-tab-panel h2,
.mx-product-tab-panel h3,
.mx-product-subhead {
    margin: 24px 0 10px;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #0f172a;
}

.mx-product-highlights-block {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.mx-product-highlights-block .mx-product-subhead {
    margin: 0 0 10px;
    font-family: var(--mx-product-copy-font);
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(100, 116, 139);
}

.mx-product-highlights-block .mx-product-highlights-list li {
    padding: 6px 0 6px 22px;
}

.mx-product-highlights-block .mx-product-highlights-list li::before {
    font-size: 0.75rem;
}

.mx-product-tab-panel h3:first-child,
.mx-product-subhead:first-child {
    margin-top: 0;
}

.mx-product-faq-item {
    margin-bottom: 0;
    border: 0;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.mx-product-faq-item:last-child {
    border-bottom: 0;
}

.mx-product-faq-item summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    font-family: var(--mx-product-copy-font);
    font-style: normal;
    font-weight: 600;
    font-size: var(--mx-product-copy-size);
    line-height: var(--mx-product-copy-lh);
    color: #0f172a;
    cursor: pointer;
    list-style: none;
}

.mx-product-faq-item summary::-webkit-details-marker {
    display: none;
}

.mx-product-faq-item summary::after {
    content: "";
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 7px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(45deg);
    transition: transform 0.2s ease, margin-top 0.2s ease;
}

.mx-product-faq-item[open] summary::after {
    transform: rotate(-135deg);
    margin-top: 11px;
}

.mx-product-faq-answer {
    padding: 0 0 16px;
}

.mx-product-faq-answer p {
    margin: 0;
}

.mx-product-changelog-entry {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}

.mx-product-changelog-entry:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mx-product-changelog-entry h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: #0f172a;
}

.mx-product-changelog-ver {
    font-weight: 800;
}

.mx-product-changelog-date {
    margin-left: 8px;
    font-weight: 500;
    color: #94a3b8;
}

.mx-product-changelog-entry ul {
    margin: 0;
    padding-left: 20px;
    color: #475569;
}

.mx-product-req-table {
    width: 100%;
    border-collapse: collapse;
}

.mx-product-req-table th,
.mx-product-req-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.mx-product-req-table th {
    width: 40%;
    font-weight: 600;
    color: #0f172a;
}

.mx-product-req-table td {
    color: #475569;
}

.mx-license-picker-label {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.mx-license-picker-fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

.mx-license-option {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}

.mx-license-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mx-license-option-body {
    display: block;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mx-license-option-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.mx-license-option-name {
    font-size: 0.95rem;
    color: #0f172a;
}

.mx-license-option-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-end;
    gap: 4px 6px;
    text-align: right;
    white-space: nowrap;
}

.mx-license-option-was {
    font-size: 0.82rem;
    color: #94a3b8;
}

.mx-license-option-amount {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
}

.mx-license-option-term {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: lowercase;
}

.mx-license-option.is-selected .mx-license-option-body,
.mx-license-option:hover .mx-license-option-body {
    border-color: #c9a227;
    background: #fff;
}

.mx-license-option.is-featured.is-selected .mx-license-option-body {
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.12);
}

.mx-license-option-perks {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mx-license-option-perks li {
    display: flex;
    gap: 8px;
    padding: 4px 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #475569;
}

.mx-license-option-perks span {
    color: #16a34a;
    font-weight: 700;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.mx-product-item-section {
    scroll-margin-top: 110px;
    margin-bottom: 48px;
}

.mx-product-item-section h2 {
    margin: 0 0 16px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.mx-product-item-lead,
.mx-product-item-section-lead {
    margin: 0 0 20px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #64748b;
}

.mx-product-item-content {
    font: inherit;
    color: inherit;
}

.mx-product-item-content p,
.mx-product-item-content li {
    font: inherit;
    color: inherit;
}

.mx-product-item-bullets {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mx-product-item-bullets li {
    position: relative;
    padding: 8px 0 8px 24px;
    border-bottom: 1px solid #f1f5f9;
    font: inherit;
    color: inherit;
}

.mx-product-item-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

.mx-product-item-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.mx-product-item-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.mx-product-item-feature-check {
    flex-shrink: 0;
    color: #16a34a;
    font-weight: 800;
}

.mx-product-item-feature p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #334155;
}

.mx-product-item-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.mx-product-item-plan {
    padding: 22px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.mx-product-item-plan.is-featured {
    border-color: #f59e0b;
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.12);
}

.mx-product-item-plan-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #92400e;
    background: #fef3c7;
    border-radius: 999px;
}

.mx-product-item-plan h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: #0f172a;
}

.mx-product-item-plan-price {
    margin: 0 0 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.mx-product-item-plan-price s {
    color: #94a3b8;
}

.mx-product-item-plan-price strong {
    font-size: 1.5rem;
    color: #0f172a;
}

.mx-product-item-plan-price span {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
}

.mx-product-item-support {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mx-product-item-support li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.mx-product-item-support a {
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
}

.mx-product-item-support a:hover {
    color: #b45309;
}

.mx-product-item-sidebar {
    position: relative;
}

.mx-product-item-purchase {
    position: sticky;
    top: 96px;
    padding: 28px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.mx-product-item-cat {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.mx-product-item-title {
    margin: 0 0 8px;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

.mx-product-item-tagline {
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.5;
    color: #64748b;
}

.mx-product-item-pricebox {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 8px;
    margin: 0 0 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #f1f5f9;
}

.mx-product-item-pricebox .mx-product-price-main {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.mx-product-item-pricebox .mx-product-price-was {
    font-size: 1rem;
    color: #94a3b8;
}

.mx-product-item-pricebox .mx-product-price-term {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    text-transform: lowercase;
}

.mx-product-item-buy {
    margin-bottom: 12px;
}

.mx-product-item-buy-note {
    margin: 0 0 18px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #64748b;
    text-align: center;
}

.mx-product-item-trust {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.mx-product-item-trust li {
    position: relative;
    padding: 8px 0 8px 22px;
    font-size: 0.9rem;
    color: #475569;
}

.mx-product-item-trust li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

.mx-product-item-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.mx-product-item-meta a {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
}

.mx-product-item-meta a:hover {
    color: #b45309;
}

.mx-product-item-related {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid #e2e8f0;
}

.mx-product-item-related h2 {
    margin: 0 0 24px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.mx-product-item-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mx-product-item-related-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mx-product-item-related-card:hover {
    border-color: #c9a227;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.mx-product-item-related-icon {
    font-size: 1.5rem;
}

.mx-product-item-related-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}

.mx-product-item-related-tagline {
    font-size: 0.9rem;
    color: #64748b;
}

.mx-product-item-related-more {
    margin: 24px 0 0;
    text-align: center;
}

@media (max-width: 960px) {
    .mx-product-item-layout {
        grid-template-columns: 1fr;
    }

    .mx-product-item-purchase {
        position: static;
    }

    .mx-product-item-features,
    .mx-product-item-related-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Terms & Conditions ─── */
.mx-terms-page {
    background: #f8fafc;
}

.mx-terms-page .mx-terms-hero {
    padding-bottom: 36px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.mx-terms-page .mx-about-intro-inner h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.mx-terms-page .mx-terms-lead {
    max-width: 720px;
    margin: 16px auto 0;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
}

.mx-terms-page .mx-terms-meta {
    display: inline-block;
    margin: 18px 0 0;
    padding: 6px 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.01em;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
}

.mx-terms-summary {
    padding: 40px 0 48px;
    background: #fff;
}

.mx-terms-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.mx-terms-summary-card {
    padding: 22px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.mx-terms-summary-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    margin-bottom: 12px;
    padding: 0 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #4338ca;
    background: #eef2ff;
    border-radius: 8px;
    font-variant-numeric: tabular-nums;
}

.mx-terms-summary-card h2 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
}

.mx-terms-summary-card p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
}

.mx-terms-body {
    padding: 40px 0 80px;
}

.mx-terms-document {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 48px 48px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
}

.mx-terms-content {
    max-width: none;
    margin: 0;
    padding: 0;
}

.mx-terms-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
    scroll-margin-top: 96px;
}

.mx-terms-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.mx-terms-section h2 {
    margin: 0 0 16px;
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: #0f172a;
}

.mx-terms-section p {
    margin: 0 0 16px;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #334155;
}

.mx-terms-section p:last-child {
    margin-bottom: 0;
}

.mx-terms-section a {
    color: #4338ca;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mx-terms-section a:hover {
    color: #3730a3;
}

.mx-terms-list {
    margin: 0 0 16px;
    padding-left: 1.35rem;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #334155;
}

.mx-terms-list li {
    margin-bottom: 10px;
    padding-left: 4px;
}

.mx-terms-list li:last-child {
    margin-bottom: 0;
}

.mx-terms-list strong {
    color: #0f172a;
    font-weight: 700;
}

.mx-terms-section--contact {
    margin-top: 8px;
    padding: 28px 32px;
    background: linear-gradient(165deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.mx-terms-section--contact h2 {
    margin-bottom: 12px;
}

.mx-terms-section--contact .mx-terms-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 16px;
}

.mx-terms-contact-email {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
}

.mx-terms-contact-email a {
    color: #4338ca;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .mx-terms-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mx-terms-document {
        padding: 32px 28px 36px;
    }
}

@media (max-width: 640px) {
    .mx-terms-summary-grid {
        grid-template-columns: 1fr;
    }

    .mx-terms-page .mx-terms-lead {
        font-size: 1.05rem;
    }

    .mx-terms-document {
        padding: 24px 20px 28px;
        border-radius: 16px;
    }

    .mx-terms-section h2 {
        font-size: 1.25rem;
    }

    .mx-terms-section p,
    .mx-terms-list {
        font-size: 1rem;
    }

    .mx-terms-section--contact {
        padding: 22px 20px;
    }
}

/* ─── MiroMarket v1.2 — editable pages & customizer layout ─── */
.miromarket-page {
    background: var(--mx-bg-light, #f0f4f8);
}

.mx-page-hero {
    position: relative;
    padding: 56px 0 40px;
    overflow: hidden;
}

.mx-page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(212, 160, 18, 0.12), transparent 70%);
    pointer-events: none;
}

.mx-page-hero-inner {
    position: relative;
    z-index: 1;
}

.mx-page-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mx-gold, #d4a012);
    margin: 0 0 12px;
}

.mx-page-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mx-gold, #d4a012);
    display: inline-block;
}

.mx-page-hero-title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--mx-heading, #0f172a);
    margin: 0 0 12px;
    line-height: 1.15;
}

.mx-page-hero-lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #475569;
    max-width: 720px;
    margin: 0;
}

.mx-page-hero--compact {
    padding: 36px 0 24px;
}

.mx-page-hero--compact .mx-page-hero-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.mx-page-content {
    padding: 40px 0 72px;
    max-width: 760px;
    margin: 0 auto;
}

.mx-page-content--wide {
    max-width: 1200px;
}

.mx-page-content--full {
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
}

.miromarket-home-content {
    padding-top: 48px;
    padding-bottom: 48px;
}

.mx-page-content .alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mx-page-content .alignfull {
    max-width: none;
    width: 100%;
}

.mx-header-cta {
    display: none;
    margin-right: 12px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

@media (min-width: 900px) {
    .mx-header-cta {
        display: inline-flex;
    }
}

.mx-page-nav {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.95rem;
}

.mx-page-nav-label {
    font-weight: 600;
    margin-right: 0.5rem;
    color: var(--mx-heading, #0f172a);
}

/* Block editor content on light pages */
.miromarket-page .mx-entry-content,
.miromarket-home-content {
    color: var(--mx-body-color, #334155);
}

.miromarket-page .mx-entry-content h2,
.miromarket-page .mx-entry-content h3,
.miromarket-home-content h2,
.miromarket-home-content h3 {
    color: var(--mx-heading, #0f172a);
}

.miromarket-page .mx-entry-content a,
.miromarket-home-content a {
    color: var(--mx-gold, #d4a012);
}

.miromarket-page .mx-entry-content .wp-block-group,
.miromarket-page .mx-entry-content .wp-block-columns {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ─── MiroMarket v1.3 — pro page content card (block editor body) ─── */
.mx-page-body-section {
    padding: 0 0 64px;
    margin-top: -12px;
}

.mx-page-body-section--home {
    margin-top: 0;
    padding-top: 24px;
}

.mx-page-body-container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.mx-page-body-container--wide {
    max-width: 1200px;
}

.mx-page-body-container--full {
    max-width: none;
}

.mx-page-content-card {
    display: block;
    visibility: visible;
    min-height: 2rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: clamp(28px, 4vw, 48px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    color: #334155 !important;
    font-size: 1.0625rem;
    line-height: 1.75;
}

.mx-page-content-card h1,
.mx-page-content-card h2,
.mx-page-content-card h3,
.mx-page-content-card h4,
.mx-page-content-card h5,
.mx-page-content-card h6 {
    color: #0f172a !important;
}

.mx-page-content-card p,
.mx-page-content-card li {
    color: #334155 !important;
}

.mx-page-content-card a {
    color: #b45309;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mx-page-content-card .wp-block-button__link {
    color: #fff !important;
    text-decoration: none;
}

.mx-page-editor-notice {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #92400e;
    font-size: 0.95rem;
    line-height: 1.55;
}

.mx-page-editor-notice a {
    color: #b45309;
    font-weight: 700;
}

.mx-page-featured-image {
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
}

.mx-page-featured-img {
    display: block;
    width: 100%;
    height: auto;
}

.miromarket-home-content.mx-page-content-card {
    margin-bottom: 0;
}

.mx-contact-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
