/* ─── Medical Cards Grid & Filter Styles – SinoMed Design ─────────────── */

/* ════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════════════════════ */

.mc-hero-wrapper {
    font-family: 'Inter', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* ─── Hero Banner ───────────────────────────────────────────────────────── */
.mc-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 420px;
    margin-bottom: 0;
    align-items: center;
    overflow: hidden;
}

.mc-hero-content {
    padding: 48px 40px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Eyebrow label */
.mc-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #1b6ca8;
    margin: 0 0 18px 0;
}

.mc-hero-eyebrow-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #1b6ca8;
}

/* Main headline */
.mc-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.18;
    color: #0d2137;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
}

/* Teal subtitle */
.mc-hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
    color: #1b6ca8;
    margin: 0 0 14px 0;
}

/* Body paragraph */
.mc-hero-body {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: #4a5568;
    margin: 0 0 28px 0;
    max-width: 440px;
}

/* CTA Buttons row */
.mc-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.mc-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1;
}

.mc-hero-btn--primary {
    background: #1b6ca8;
    color: #ffffff;
    border: 2px solid #1b6ca8;
}

.mc-hero-btn--primary:hover {
    background: #155d93;
    border-color: #155d93;
    color: #ffffff;
    box-shadow: 0 5px 18px rgba(27,108,168,0.3);
}

.mc-hero-btn--outline {
    background: transparent;
    color: #0d2137;
    border: 2px solid #0d2137;
}

.mc-hero-btn--outline:hover {
    background: #0d2137;
    color: #ffffff;
}

/* Hero image column */
.mc-hero-image-col {
    position: relative;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
    border-radius: 16px;
    margin-left: 32px;
}

.mc-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.mc-hero-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 340px;
    background: linear-gradient(135deg, #e8f0f8 0%, #d0e4f5 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
}

.mc-hero-placeholder-icon {
    width: 120px;
    opacity: 0.5;
}

/* ─── Features Bar ──────────────────────────────────────────────────────── */
.mc-features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid #e5e9ef;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    margin: 32px 0;
    overflow: hidden;
}

.mc-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 20px;
    border-right: 1px solid #e5e9ef;
    transition: background 0.18s ease;
}

.mc-feature-item:last-child {
    border-right: none;
}

.mc-feature-item:hover {
    background: #f8fafc;
}

.mc-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1b6ca8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.mc-feature-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    stroke: #ffffff;
}

.mc-feature-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mc-feature-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #0d2137;
    line-height: 1.3;
}

.mc-feature-text span {
    font-size: 13px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.5;
}

/* ─── Section Header ────────────────────────────────────────────────────── */
.mc-section-header {
    text-align: center;
    margin-bottom: 28px;
    padding: 0 16px;
}

.mc-section-title {
    font-size: 30px;
    font-weight: 800;
    color: #0d2137;
    margin: 0 0 10px 0;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.mc-section-subtitle {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Hero Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .mc-hero {
        grid-template-columns: 1fr;
    }
    .mc-hero-content {
        padding: 36px 0 24px 0;
        order: 2;
    }
    .mc-hero-image-col {
        min-height: 260px;
        order: 1;
        margin-left: 0;
    }
    .mc-hero-title {
        font-size: 30px;
    }
    .mc-features-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .mc-feature-item:nth-child(2) {
        border-right: none;
    }
    .mc-feature-item:nth-child(1),
    .mc-feature-item:nth-child(2) {
        border-bottom: 1px solid #e5e9ef;
    }
}

@media (max-width: 576px) {
    .mc-hero-title {
        font-size: 24px;
    }
    .mc-hero-subtitle {
        font-size: 14.5px;
    }
    .mc-hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .mc-hero-btn {
        justify-content: center;
        text-align: center;
    }
    .mc-features-bar {
        grid-template-columns: 1fr;
    }
    .mc-feature-item {
        border-right: none;
        border-bottom: 1px solid #e5e9ef;
    }
    .mc-feature-item:last-child {
        border-bottom: none;
    }
    .mc-section-title {
        font-size: 22px;
    }
}

/* ════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────────────────── */
:root {
    --mc-primary:        #0d2137;
    --mc-accent:         #1b6ca8;
    --mc-accent-hover:   #155d93;
    --mc-vip-gold:       #c8963e;
    --mc-vip-gold-light: #fdf6e9;
    --mc-border:         #e5e9ef;
    --mc-bg-light:       #f8fafc;
    --mc-text-dark:      #1a2e42;
    --mc-text-muted:     #64748b;
    --mc-radius-card:    12px;
    --mc-radius-btn:     8px;
    --mc-shadow-card:    0 2px 12px rgba(0,0,0,0.07);
    --mc-shadow-hover:   0 10px 32px rgba(0,0,0,0.13);
}

.mc-grid-container,
.mc-filter-container {
    font-family: 'Inter', sans-serif;
    color: var(--mc-text-dark);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.mc-grid-container *,
.mc-filter-container * {
    box-sizing: border-box;
}

/* ─── Filter Container ──────────────────────────────────────────────────── */
.mc-filter-container {
    margin-top: 0;
    margin-bottom: 28px;
}

/* ─── Filter Bar (top row: label + selects + button) ───────────────────── */
.mc-filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--mc-border);
    margin-bottom: 16px;
}

.mc-filter-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--mc-text-dark);
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 4px;
}

.mc-filter-select-wrapper {
    position: relative;
    flex: 1;
    min-width: 180px;
    max-width: 260px;
}

.mc-filter-select {
    width: 100%;
    height: 44px;
    padding: 0 40px 0 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--mc-text-dark);
    background-color: #ffffff;
    border: 1.5px solid var(--mc-border);
    border-radius: var(--mc-radius-btn);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mc-filter-select:focus {
    outline: none;
    border-color: var(--mc-accent);
    box-shadow: 0 0 0 3px rgba(27, 108, 168, 0.12);
}

.mc-filter-select:disabled {
    background-color: var(--mc-bg-light);
    color: #a0aec0;
    border-color: #dde3ea;
    cursor: not-allowed;
}

.mc-select-arrow {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    pointer-events: none;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #64748b;
}

/* ─── Show Recommended Button ───────────────────────────────────────────── */
.mc-btn-recommended {
    height: 44px;
    padding: 0 22px;
    background: var(--mc-accent);
    color: #ffffff;
    border: none;
    border-radius: var(--mc-radius-btn);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.mc-btn-recommended:hover {
    background: var(--mc-accent-hover);
    box-shadow: 0 4px 14px rgba(27,108,168,0.3);
}

/* ─── Category Tab Pills ────────────────────────────────────────────────── */
.mc-category-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.mc-cat-tab {
    padding: 7px 18px;
    border: 1.5px solid var(--mc-border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--mc-text-dark);
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s ease;
    line-height: 1;
}

.mc-cat-tab:hover {
    border-color: var(--mc-accent);
    color: var(--mc-accent);
}

.mc-cat-tab.active {
    background: var(--mc-accent);
    border-color: var(--mc-accent);
    color: #ffffff;
    font-weight: 600;
}

/* ─── Comparison Button ─────────────────────────────────────────────────── */
.mc-comparison-btn-wrapper {
    text-align: center;
    margin-bottom: 24px;
}

.mc-btn-comparison {
    background: transparent;
    border: 1.5px solid var(--mc-vip-gold);
    color: var(--mc-vip-gold);
    padding: 10px 26px;
    font-size: 13.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: var(--mc-radius-btn);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mc-btn-comparison:hover {
    background: var(--mc-vip-gold);
    color: #ffffff;
}

/* ─── Cards Grid ────────────────────────────────────────────────────────── */
.mc-cards-grid {
    display: grid;
    grid-template-columns: repeat(var(--mc-grid-columns-count, 3), 1fr);
    gap: 28px;
    transition: opacity 0.25s ease;
}

.mc-cards-grid.mc-loading {
    opacity: 0.45;
    pointer-events: none;
}

/* ─── Package Card ──────────────────────────────────────────────────────── */
.mc-card {
    background: #ffffff;
    border-radius: var(--mc-radius-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--mc-shadow-card);
    border: 1px solid var(--mc-border);
    transition: transform 0.28s cubic-bezier(0.25,0.46,0.45,0.94),
                box-shadow 0.28s ease;
}

.mc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mc-shadow-hover);
}

/* VIP card accent border */
.mc-card--vip {
    border-top: 3px solid var(--mc-vip-gold);
}

/* ─── Card Image ────────────────────────────────────────────────────────── */
.mc-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 64%;
    overflow: hidden;
    background-color: #e8eff6;
}

.mc-card-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.mc-card:hover .mc-card-image {
    transform: scale(1.04);
}

/* ─── Badge (IN 1 DAY) ──────────────────────────────────────────────────── */
.mc-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--mc-accent);
    color: #ffffff;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
}

.mc-card-badge .dashicons {
    font-size: 13px;
    width: 13px;
    height: 13px;
    line-height: 1;
}

/* ─── VIP Crown ─────────────────────────────────────────────────────────── */
.mc-card-vip-crown {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--mc-vip-gold);
    color: #ffffff;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
}

/* ─── Card Content ──────────────────────────────────────────────────────── */
.mc-card-content {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mc-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--mc-text-dark);
    margin: 0 0 8px 0;
    line-height: 1.35;
}

.mc-card-excerpt {
    font-size: 13.5px;
    color: var(--mc-text-muted);
    line-height: 1.55;
    margin: 0 0 14px 0;
    font-weight: 400;
}

/* ─── Card Meta (suitable for / includes) ───────────────────────────────── */
.mc-card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.mc-card-meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--mc-text-muted);
    line-height: 1.3;
}

.mc-card-meta-row .dashicons {
    font-size: 15px;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--mc-accent);
    line-height: 1;
}

/* ─── Card Footer (price + button) ─────────────────────────────────────── */
.mc-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #edf2f7;
    gap: 10px;
}

.mc-card-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.mc-price-from {
    font-size: 11px;
    font-weight: 500;
    color: var(--mc-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mc-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--mc-text-dark);
    line-height: 1.1;
}

/* ─── View Details Button ───────────────────────────────────────────────── */
.mc-btn-learn-more {
    display: inline-block;
    background: transparent;
    color: var(--mc-accent);
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--mc-accent);
    border-radius: var(--mc-radius-btn);
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.mc-btn-learn-more:hover {
    background: var(--mc-accent);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(27,108,168,0.25);
}

.mc-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    font-size: 15px;
    color: var(--mc-text-muted);
    background: var(--mc-bg-light);
    border-radius: var(--mc-radius-card);
    border: 1px dashed #cbd5e1;
}

/* ─── WhatsApp Button ───────────────────────────────────────────────────── */
.mc-card-whatsapp-wrapper {
    padding-top: 10px;
}

.mc-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #25D366;
    color: #ffffff !important;
    font-size: 11.5px;
    font-weight: 700;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--mc-radius-btn);
    transition: background 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
    cursor: pointer;
}

.mc-btn-whatsapp:hover {
    background: #1ebe5d;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37,211,102,0.32);
}

.mc-btn-whatsapp-card {
    width: 100%;
    padding: 10px 14px;
}

svg.mc-whatsapp-icon {
    width: 15px !important;
    height: 15px;
    flex-shrink: 0;
    color: #ffffff;
}

/* ─── Comparison Modal ──────────────────────────────────────────────────── */
.mc-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(13,33,55,0.68);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.mc-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mc-modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 960px;
    max-height: 85vh;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: mc-slide-up 0.28s cubic-bezier(0.25,0.46,0.45,0.94);
}

@keyframes mc-slide-up {
    from { transform: translateY(24px); opacity: 0; }
    to   { transform: translateY(0);   opacity: 1; }
}

.mc-modal-close {
    position: absolute;
    top: 18px; right: 18px;
    background: transparent;
    border: none;
    font-size: 30px;
    line-height: 1;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.18s ease;
}

.mc-modal-close:hover { color: var(--mc-text-dark); }

.mc-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--mc-primary);
    margin: 0 0 18px 0;
}

.mc-modal-table-responsive {
    overflow-x: auto;
    flex-grow: 1;
}

.mc-comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13.5px;
}

.mc-comparison-table th {
    background: var(--mc-bg-light);
    padding: 13px 15px;
    font-weight: 600;
    color: #475569;
    border-bottom: 2px solid var(--mc-border);
}

.mc-comparison-table td {
    padding: 14px 15px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.mc-comparison-table tr:hover td {
    background: #f8fafc;
}

.mc-table-price {
    font-weight: 700;
    color: var(--mc-accent);
    font-size: 14px;
}

.mc-table-tests-cell {
    color: var(--mc-text-muted);
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mc-btn-table-action {
    display: inline-block;
    padding: 6px 12px;
    background: var(--mc-bg-light);
    color: var(--mc-text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    font-size: 12px;
    transition: all 0.18s ease;
    border: 1px solid var(--mc-border);
}

.mc-btn-table-action:hover {
    background: var(--mc-accent);
    color: #ffffff;
    border-color: var(--mc-accent);
}

body.mc-modal-open { overflow: hidden; }

/* ─── Hidden cards during tab filtering ─────────────────────────────────── */
.mc-card.mc-hidden {
    display: none;
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .mc-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mc-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .mc-filter-select-wrapper {
        max-width: 100%;
    }
    .mc-btn-recommended {
        width: 100%;
    }
    .mc-filter-label {
        margin-bottom: 4px;
    }
}

@media (max-width: 576px) {
    .mc-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .mc-card-title {
        font-size: 15.5px;
    }
    .mc-price {
        font-size: 19px;
    }
    .mc-btn-learn-more {
        padding: 8px 14px;
        font-size: 12.5px;
    }
    .mc-modal-content {
        padding: 18px 14px;
        width: 96%;
    }
    .mc-cat-tab {
        font-size: 12.5px;
        padding: 6px 14px;
    }
}

/* ─── RTL Support (Arabic / Right-to-Left) ───────────────────────────── */
html[dir="rtl"] .mc-cards-wrapper .mc-container, body.rtl .mc-cards-wrapper .mc-container,
html[dir="rtl"] .mc-single-package-wrapper .mc-container, body.rtl .mc-single-package-wrapper .mc-container { direction: rtl !important; text-align: right !important; }
html[dir="rtl"] .mc-hero-content, body.rtl .mc-hero-content { padding: 48px 0 48px 40px; }
html[dir="rtl"] .mc-hero-image-col, body.rtl .mc-hero-image-col { margin-left: 0; margin-right: 32px; }
html[dir="rtl"] .mc-feature-item, body.rtl .mc-feature-item { border-right: none; border-left: 1px solid #e5e9ef; }
html[dir="rtl"] .mc-feature-item:last-child, body.rtl .mc-feature-item:last-child { border-left: none; }
html[dir="rtl"] .mc-filter-label, body.rtl .mc-filter-label { margin-right: 0; margin-left: 4px; }
html[dir="rtl"] .mc-filter-select, body.rtl .mc-filter-select { padding: 0 14px 0 40px; }
html[dir="rtl"] .mc-select-arrow, body.rtl .mc-select-arrow { right: auto; left: 14px; border-left: 5px solid transparent; border-right: 5px solid transparent; }
html[dir="rtl"] .mc-card-badge, body.rtl .mc-card-badge { left: auto; right: 12px; }
html[dir="rtl"] .mc-card-vip-crown, body.rtl .mc-card-vip-crown { right: auto; left: 12px; }
html[dir="rtl"] .mc-modal-close, body.rtl .mc-modal-close { right: auto; left: 18px; }
html[dir="rtl"] .mc-modal-title, body.rtl .mc-modal-title { text-align: right; }
html[dir="rtl"] .mc-comparison-table, body.rtl .mc-comparison-table { text-align: right; }
@media (max-width: 900px) {
    html[dir="rtl"] .mc-hero-image-col, body.rtl .mc-hero-image-col { margin-right: 0; }
    html[dir="rtl"] .mc-feature-item:nth-child(2), body.rtl .mc-feature-item:nth-child(2) { border-left: none; }
}
@media (max-width: 576px) {
    html[dir="rtl"] .mc-feature-item, body.rtl .mc-feature-item { border-left: none; }
}
