/* ─── Medical Treatments Grid & Single Page Styles ─────────────────────── */

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

/* ─── Variables System (Integrated with Global Settings) ────────────────── */
:root {
    --mc-tr-primary: var(--mc-color-primary, #0d2137);
    --mc-tr-accent: var(--mc-color-accent, #0073aa);
    --mc-tr-accent-hover: var(--mc-color-accent-hover, #005177);
    --mc-tr-gold: var(--mc-color-gold, #c8a84b);
    --mc-tr-gold-hover: var(--mc-color-gold-hover, #aa8933);
}

.mc-tr-grid-container,
.mc-tr-filter-container,
.mc-tr-single-wrapper {
    font-family: 'Inter', sans-serif;
    color: #334155;
    box-sizing: border-box;
}

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

/* ─── Filters & Search ─────────────────────────────────────────────────── */
.mc-tr-filter-container {
    max-width: 1200px;
    margin: 30px auto 20px auto;
    padding: 0 15px;
}

.mc-tr-filter-bar {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #eaeaea;
}

.mc-tr-search-wrapper {
    position: relative;
    flex: 2;
    min-width: 280px;
}

.mc-tr-search-input {
    width: 100%;
    height: 52px;
    padding: 10px 20px 10px 48px;
    font-size: 15px;
    color: #334155;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mc-tr-search-input:focus {
    outline: none;
    border-color: var(--mc-tr-accent);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.15);
}

.mc-tr-search-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.mc-tr-select-wrapper {
    position: relative;
    flex: 1;
    min-width: 220px;
}

.mc-tr-filter-select {
    width: 100%;
    height: 52px;
    padding: 10px 40px 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #334155;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mc-tr-filter-select:focus {
    outline: none;
    border-color: var(--mc-tr-accent);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.15);
}

.mc-tr-select-arrow {
    position: absolute;
    top: 50%;
    right: 18px;
    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;
}

/* ─── Grid & Cards ─────────────────────────────────────────────────────── */
.mc-tr-grid-container {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 0 15px;
}

.mc-tr-cards-grid {
    display: grid;
    grid-template-columns: repeat(var(--mc-tr-grid-columns-count, 3), minmax(300px, 1fr));
    gap: 30px;
    transition: opacity 0.3s ease;
}

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

.mc-treatment-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, border-color 0.3s ease;
}

.mc-treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 33, 55, 0.08);
    border-color: rgba(var(--mc-color-accent-rgb, 0, 115, 170), 0.3);
}

.mc-tr-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background-color: #f1f5f9;
}

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

.mc-treatment-card:hover .mc-tr-card-image {
    transform: scale(1.05);
}

.mc-tr-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--mc-tr-accent);
    color: #ffffff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

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

.mc-tr-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mc-tr-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--mc-tr-primary);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.mc-tr-card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mc-tr-accent);
    margin: 0 0 14px 0;
}

.mc-tr-card-location .dashicons {
    font-size: 15px;
    width: 15px;
    height: 15px;
    line-height: 1;
}

.mc-tr-card-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.mc-tr-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.mc-tr-card-price {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.mc-tr-price-val {
    color: var(--mc-tr-primary);
    font-weight: 700;
    font-size: 16px;
}

.mc-tr-btn-explore {
    background: var(--mc-tr-accent);
    color: #ffffff;
    padding: 10px 18px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.mc-tr-btn-explore:hover {
    background: var(--mc-tr-accent-hover);
    color: #ffffff;
}

.mc-tr-whatsapp-wrapper {
    margin-top: 12px;
}

.mc-tr-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #ffffff !important;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-radius: 6px;
    width: 100%;
    padding: 10px 14px;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.mc-tr-btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.mc-tr-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    font-size: 16px;
    color: #64748b;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
}

/* ─── Single Treatment Page ────────────────────────────────────────────── */
.mc-tr-single-wrapper {
    background-color: #f8fafc;
}

.mc-tr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.mc-tr-hero {
    background: linear-gradient(135deg, var(--mc-tr-primary) 0%, #1e3a5f 100%);
    color: #ffffff;
    padding: 60px 0;
    border-bottom: 4px solid var(--mc-tr-gold);
}

.mc-tr-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.mc-tr-breadcrumbs {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 15px;
}

.mc-tr-breadcrumbs a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mc-tr-breadcrumbs a:hover {
    color: #ffffff;
}

.mc-tr-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.mc-tr-subtitle {
    font-size: 18px;
    color: #e2e8f0;
    margin: 0 0 24px 0;
    font-weight: 400;
}

.mc-tr-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.mc-tr-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #f1f5f9;
}

.mc-tr-badge-location {
    border-color: rgba(0, 115, 170, 0.4);
    background: rgba(0, 115, 170, 0.15);
}

.mc-tr-price-cta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.mc-tr-price-val {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}

.mc-tr-btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 14px 26px;
    border-radius: 6px;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.mc-tr-btn-whatsapp-hero:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.mc-tr-hero-image img {
    width: 100%;
    max-height: 350px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Sidebar Layout grid */
.mc-tr-main-layout {
    padding-top: 50px;
    padding-bottom: 70px;
}

.mc-tr-page-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Sidebar Menu styling */
.mc-tr-sidebar-sticky {
    position: sticky;
    top: 30px;
}

.mc-tr-sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--mc-tr-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--mc-tr-gold);
}

.mc-tr-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.mc-tr-menu-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 0.2s ease, border-left-color 0.2s ease;
    border-left: 4px solid transparent;
}

.mc-tr-menu-item:last-child {
    border-bottom: none;
}

.mc-tr-menu-number {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    margin-right: 12px;
    width: 20px;
    height: 20px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mc-tr-menu-label {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

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

.mc-tr-menu-item:hover .mc-tr-menu-label {
    color: var(--mc-tr-primary);
}

.mc-tr-menu-item.active {
    background: #f0f7ff;
    border-left-color: var(--mc-tr-accent);
}

.mc-tr-menu-item.active .mc-tr-menu-number {
    background: var(--mc-tr-accent);
    color: #ffffff;
}

.mc-tr-menu-item.active .mc-tr-menu-label {
    font-weight: 700;
    color: var(--mc-tr-accent);
}

/* Content Card styling */
.mc-tr-content-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
    min-height: 500px;
}

.mc-tr-tab-content {
    display: none;
}

.mc-tr-tab-content.active {
    display: block;
    animation: mc-tr-fade 0.35s ease;
}

@keyframes mc-tr-fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mc-tr-section-header {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.mc-tr-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--mc-tr-primary);
    margin: 0;
}

/* Word Document Styling */
.mc-tr-word-doc h3,
.mc-tr-word-doc h4 {
    font-family: 'Playfair Display', serif;
    color: var(--mc-tr-primary);
    margin-top: 30px;
    margin-bottom: 12px;
}

.mc-tr-word-doc h3 { font-size: 20px; border-bottom: 1px solid #e2e8f0; padding-bottom: 6px; }
.mc-tr-word-doc h4 { font-size: 17px; margin-top: 20px; }

.mc-tr-word-doc p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 18px;
}

.mc-tr-word-doc ul,
.mc-tr-word-doc ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.mc-tr-word-doc li {
    font-size: 15px;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.6;
}

.mc-tr-word-doc strong {
    color: #0f172a;
}

/* Journey timeline styling */
.mc-tr-sub-block {
    margin-top: 35px;
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
}

.mc-tr-sub-block > h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    margin-top: 0;
}

.mc-tr-sub-block > h3 .dashicons {
    color: var(--mc-tr-accent);
}

.mc-tr-timeline {
    position: relative;
    padding-left: 25px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.mc-tr-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 7px;
    width: 2px;
    height: calc(100% - 25px);
    background: #e2e8f0;
}

.mc-tr-timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.mc-tr-timeline-item:last-child {
    margin-bottom: 0;
}

.mc-tr-timeline-dot {
    position: absolute;
    top: 5px;
    left: -23px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--mc-tr-accent);
    z-index: 2;
}

.mc-tr-timeline-content h4 {
    margin: 0 0 6px 0 !important;
    font-size: 16px;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    color: var(--mc-tr-primary);
}

.mc-tr-timeline-content p {
    margin: 0 !important;
    font-size: 14px !important;
    color: #64748b !important;
}

/* Why China highlights */
.mc-tr-why-china-block {
    background: #f0f7ff;
    border-left: 4px solid var(--mc-tr-accent);
    padding: 25px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
}

.mc-tr-why-china-block h3 {
    margin-top: 0;
    border: none;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mc-tr-why-china-block h3 .dashicons {
    color: var(--mc-tr-accent);
}

/* FAQS Accordion */
.mc-tr-faqs-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.mc-tr-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.mc-tr-faq-question {
    width: 100%;
    padding: 16px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--mc-tr-primary);
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.mc-tr-faq-icon {
    position: relative;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.mc-tr-faq-icon::before,
.mc-tr-faq-icon::after {
    content: '';
    position: absolute;
    background-color: #64748b;
    transition: transform 0.3s ease;
}

.mc-tr-faq-icon::before {
    top: 5px;
    left: 0;
    width: 12px;
    height: 2px;
}

.mc-tr-faq-icon::after {
    top: 0;
    left: 5px;
    width: 2px;
    height: 12px;
}

.mc-tr-faq-question.active .mc-tr-faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.mc-tr-faq-question.active .mc-tr-faq-icon::before {
    transform: rotate(180deg);
}

.mc-tr-faq-answer {
    padding: 0 20px;
    display: none;
    border-top: 1px solid #f1f5f9;
    background: #f8fafc;
}

.mc-tr-faq-answer p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin: 15px 0 !important;
}

/* Contact Panel */
.mc-tr-contact-panel {
    margin-top: 40px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.mc-tr-contact-panel h3 {
    color: #ffffff !important;
    font-family: 'Playfair Display', serif !important;
    margin-top: 0;
    font-size: 22px;
}

.mc-tr-contact-panel p {
    color: #94a3b8 !important;
    max-width: 600px;
    margin: 0 auto 20px auto !important;
    font-size: 14px;
}

.mc-tr-contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mc-tr-btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.25s ease;
}

.mc-tr-btn-whatsapp-cta:hover {
    background: #1ebe5d;
}

.mc-tr-contact-email {
    font-size: 14px;
    color: #cbd5e1;
}

/* Mobile Nav Bar - Hidden on Desktop */
.mc-tr-mobile-nav {
    display: none;
    margin-bottom: 25px;
}

.mc-tr-mobile-select {
    width: 100%;
    height: 52px;
    padding: 10px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    color: var(--mc-tr-primary);
}

/* ─── Responsive Grid & Detail ────────────────────────────────────────── */
@media (max-width: 991px) {
    .mc-tr-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mc-tr-hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    .mc-tr-page-grid {
        grid-template-columns: 1fr;
    }
    .mc-tr-sidebar {
        display: none;
    }
    .mc-tr-mobile-nav {
        display: block;
    }
    .mc-tr-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mc-tr-hero {
        padding: 45px 0;
    }
    .mc-tr-title {
        font-size: 32px;
    }
    .mc-tr-content-card {
        padding: 25px;
    }
    .mc-tr-filter-bar {
        flex-direction: column;
    }
    .mc-tr-search-wrapper,
    .mc-tr-select-wrapper {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .mc-tr-cards-grid {
        grid-template-columns: 1fr;
    }
    .mc-tr-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .mc-tr-btn-explore {
        width: 100%;
        text-align: center;
    }
    .mc-tr-price-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .mc-tr-btn-whatsapp-hero {
        width: 100%;
        justify-content: center;
    }
}

/* ─── RTL Support (Arabic / Right-to-Left) ───────────────────────────── */
html[dir="rtl"] .mc-tr-grid-container, body.rtl .mc-tr-grid-container,
html[dir="rtl"] .mc-tr-single-wrapper, body.rtl .mc-tr-single-wrapper { direction: rtl !important; text-align: right !important; }
html[dir="rtl"] .mc-tr-search-input, body.rtl .mc-tr-search-input { padding: 10px 48px 10px 20px; }
html[dir="rtl"] .mc-tr-search-icon, body.rtl .mc-tr-search-icon { left: auto; right: 18px; }
html[dir="rtl"] .mc-tr-filter-select, body.rtl .mc-tr-filter-select { padding: 10px 20px 10px 40px; }
html[dir="rtl"] .mc-tr-select-arrow, body.rtl .mc-tr-select-arrow { right: auto; left: 18px; border-left: 5px solid transparent; border-right: 5px solid transparent; }
html[dir="rtl"] .mc-tr-card-badge, body.rtl .mc-tr-card-badge { left: auto; right: 15px; }
html[dir="rtl"] .mc-tr-menu-item, body.rtl .mc-tr-menu-item { border-left: none; border-right: 4px solid transparent; }
html[dir="rtl"] .mc-tr-menu-number, body.rtl .mc-tr-menu-number { margin-right: 0; margin-left: 12px; }
html[dir="rtl"] .mc-tr-menu-item.active, body.rtl .mc-tr-menu-item.active { border-left-color: transparent; border-right-color: var(--mc-tr-accent); }
html[dir="rtl"] .mc-tr-word-doc ul, body.rtl .mc-tr-word-doc ul,
html[dir="rtl"] .mc-tr-word-doc ol, body.rtl .mc-tr-word-doc ol { padding-left: 0; padding-right: 20px; }
html[dir="rtl"] .mc-tr-timeline, body.rtl .mc-tr-timeline { padding-left: 0; padding-right: 25px; }
html[dir="rtl"] .mc-tr-timeline::before, body.rtl .mc-tr-timeline::before { left: auto; right: 7px; }
html[dir="rtl"] .mc-tr-timeline-dot, body.rtl .mc-tr-timeline-dot { left: auto; right: -23px; }
html[dir="rtl"] .mc-tr-why-china-block, body.rtl .mc-tr-why-china-block { border-left: none; border-right: 4px solid var(--mc-tr-accent); border-radius: 8px 0 0 8px; }
html[dir="rtl"] .mc-tr-faq-question, body.rtl .mc-tr-faq-question { text-align: right; }
html[dir="rtl"] .mc-tr-meta-badges, body.rtl .mc-tr-meta-badges { flex-direction: row-reverse; justify-content: flex-end; }
html[dir="rtl"] .mc-tr-price-cta, body.rtl .mc-tr-price-cta { flex-direction: row-reverse; justify-content: flex-end; }
html[dir="rtl"] .mc-tr-btn-whatsapp-hero, body.rtl .mc-tr-btn-whatsapp-hero { flex-direction: row-reverse; }
