/* === RTS Mobile 3-Trim Switcher Styles (A/B Test 2026) === */

/* Default: hidden in Variant A (Control) or non-pilot pages */
.rts-trim-switcher-wrapper {
    display: none !important;
}

/* Shown ONLY in Variant B on active Niva pilot pages */
html.rts-trim-page-active.rts-ab-variant-b .rts-trim-switcher-wrapper {
    display: block !important;
}

/* In Variant B, hide the redundant static hero showcase to keep mobile compact (strictly on Niva pages) */
html.rts-trim-page-active.rts-ab-variant-b .engine-hero-showcase {
    display: none !important;
}

/* In Variant B, adjust header text spacing on mobile ONLY for active Niva pilot pages */
html.rts-trim-page-active.rts-ab-variant-b .header-text h1.rL.white.size-3em {
    display: block !important;
    font-size: 26px !important;
    line-height: 1.25 !important;
    margin: 6px 0 8px 0 !important;
    color: #ffcc00 !important;
    font-weight: 700 !important;
}

/* Main Container */
.rts-trim-switcher-wrapper {
    margin: 12px 0 16px 0;
    padding: 14px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.92));
    border: 1.5px solid #FDA10E;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
}

.rts-trim-switcher-wrapper * {
    box-sizing: border-box;
}

/* Header */
.rts-trim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.rts-trim-header-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #FDA10E;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rts-trim-header-badge {
    background: rgba(34, 197, 94, 0.18);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.35);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

/* 3-Trim Selectable Cards */
.rts-trim-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .rts-trim-switcher-wrapper {
        padding: 10px 6px !important;
    }
    .rts-trim-tabs {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 4px !important;
        overflow-x: visible !important;
        padding-bottom: 0 !important;
    }
    .rts-trim-card {
        min-width: 0 !important;
        width: 100% !important;
        padding: 6px 2px !important;
        box-sizing: border-box !important;
    }
    .rts-trim-tag {
        font-size: 7.5px !important;
        padding: 1px 3px !important;
        white-space: nowrap !important;
        letter-spacing: -0.2px !important;
    }
    .rts-trim-card-name {
        font-size: 9.5px !important;
        white-space: normal !important;
        line-height: 1.15 !important;
        word-break: normal !important;
    }
    .rts-trim-card-price {
        font-size: 10.5px !important;
        white-space: nowrap !important;
        letter-spacing: -0.3px !important;
    }
}

.rts-trim-card {
    background: rgba(30, 41, 59, 0.65);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 8px 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.22s ease-in-out;
    position: relative;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.rts-trim-card:hover {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(253, 161, 14, 0.6);
}

.rts-trim-card.active {
    background: linear-gradient(135deg, rgba(253, 161, 14, 0.22), rgba(249, 115, 22, 0.28));
    border-color: #FDA10E;
    box-shadow: 0 0 16px rgba(253, 161, 14, 0.45);
    transform: translateY(-2px);
}

.rts-trim-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FDA10E;
    background: rgba(0, 0, 0, 0.4);
    padding: 2px 5px;
    border-radius: 4px;
    margin-bottom: 4px;
    border: 0.5px solid rgba(253, 161, 14, 0.3);
}

.rts-trim-card.active .rts-trim-tag {
    background: #FDA10E;
    color: #111827;
}

.rts-trim-card-name {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    color: #f1f5f9;
    margin-bottom: 4px;
}

.rts-trim-card-price {
    font-size: 13px;
    font-weight: 800;
    color: #38bdf8;
    white-space: nowrap !important;
}

.rts-trim-card.active .rts-trim-card-price {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* Live Price Row (Interactive CRO - Rage Click Fix) */
.rts-trim-live-price-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 12px;
    padding: 10px 14px;
    background: rgba(15, 23, 42, 0.85);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.rts-trim-live-price-block:hover {
    border-color: rgba(34, 197, 94, 0.45);
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.18);
}

.rts-trim-live-price-val {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #22c55e !important;
    letter-spacing: -0.5px;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    line-height: 1.1 !important;
    display: inline-block !important;
    transition: opacity 0.12s ease-in-out, transform 0.15s ease;
}

.rts-trim-live-price-block:hover .rts-trim-live-price-val {
    transform: scale(1.02);
}

.rts-trim-live-price-meta {
    font-size: 12px;
    color: #94a3b8;
    white-space: nowrap !important;
    flex-shrink: 0;
}

.rts-trim-price-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
    margin-left: auto;
    white-space: nowrap;
    letter-spacing: 0.2px;
    transition: all 0.2s ease;
}

.rts-trim-live-price-block:hover .rts-trim-price-cta-btn {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.5);
}

@media (max-width: 540px) {
    .rts-trim-price-cta-btn {
        width: 100%;
        margin-left: 0;
        justify-content: center;
        padding: 8px 12px;
        font-size: 12px;
    }
}

.rts-carb-banner-line {
    width: 100% !important;
    flex-basis: 100% !important;
    font-size: 12px;
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 6px;
    padding: 6px 10px;
    margin-top: 4px;
}

/* Features List */
.rts-trim-details-box {
    background: rgba(30, 41, 59, 0.45);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.rts-trim-features-list {
    list-style: none;
    margin: 0 0 8px 0;
    padding: 0;
}

.rts-trim-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    line-height: 1.45;
    color: #e2e8f0;
    margin-bottom: 5px;
}

.rts-trim-feature-item i {
    color: #22c55e;
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.rts-trim-feature-note {
    font-size: 11px;
    font-style: italic;
    color: #fda10e;
    padding-top: 6px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Trust & Guarantee Bar */
.rts-trim-guarantee-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px 4px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    font-size: 11px;
    color: #94a3b8;
}

.rts-trim-guarantee-bar span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rts-trim-guarantee-bar i {
    color: #FDA10E;
}

/* Desktop Polish */
@media (min-width: 769px) {
    .rts-trim-switcher-wrapper {
        margin: 16px 0 20px 0;
        padding: 18px;
    }
    .rts-trim-card {
        padding: 12px 10px;
    }
    .rts-trim-card-name {
        font-size: 13px;
    }
    .rts-trim-card-price {
        font-size: 16px;
    }
    .rts-trim-live-price-val {
        font-size: 32px;
    }
    .rts-trim-feature-item {
        font-size: 13px;
    }
}

/* ==========================================================================
   RTS High-Contrast Model Selector Pills & Trust Badges (2026 Fix)
   ========================================================================== */

/* 1. Model Selector Pills (устранение белого фона) */
.rts-model-pills-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 10px 0 16px 0 !important;
    padding: 6px !important;
    background: rgba(15, 23, 42, 0.75) !important;
    border: 1px solid rgba(255, 204, 0, 0.3) !important;
    border-radius: 12px !important;
    align-items: center !important;
}

button.rts-model-pill,
.rts-model-pill {
    background: #1e293b !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 20px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 7px 15px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    outline: none !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
    line-height: 1.2 !important;
    display: inline-flex !important;
    align-items: center !important;
}

button.rts-model-pill:hover,
.rts-model-pill:hover {
    background: #334155 !important;
    border-color: #ffcc00 !important;
    color: #ffcc00 !important;
}

button.rts-model-pill.active,
.rts-model-pill.active {
    background: linear-gradient(135deg, #ffcc00 0%, #f59e0b 100%) !important;
    border-color: #ffcc00 !important;
    color: #0f172a !important;
    font-weight: 800 !important;
    text-shadow: none !important;
    box-shadow: 0 3px 12px rgba(255, 204, 0, 0.5) !important;
}

/* 2. Trust Badges (контрастная карточка на темном/зимнем фоне) */
.rts-trust-badges {
    margin: 20px 0 25px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    background: rgba(15, 23, 42, 0.94) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1.5px solid rgba(255, 204, 0, 0.5) !important;
    border-radius: 14px !important;
    padding: 16px 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
    max-width: 580px !important;
}

.rts-trust-item {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.rts-trust-icon {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 50% !important;
    background: rgba(255, 204, 0, 0.15) !important;
    border: 1.5px solid #ffcc00 !important;
    color: #ffcc00 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    box-shadow: 0 2px 6px rgba(255, 204, 0, 0.25) !important;
}

.rts-trust-content {
    display: flex !important;
    flex-direction: column !important;
}

.rts-trust-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9) !important;
    letter-spacing: 0.2px !important;
}

.rts-trust-desc {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #f1f5f9 !important;
    line-height: 1.4 !important;
    margin-top: 2px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
}





/* === RTS Visual Trim Stage & Engine Photo Showcase (2026) === */

.rts-trim-visual-stage {

    margin: 12px 0;

    background: #090e17;

    border: 1px solid #1e293b;

    border-radius: 12px;

    padding: 12px;

    text-align: center;

    position: relative;

    overflow: hidden;

}



.rts-trim-visual-img-container {

    position: relative;

    cursor: pointer;

    background: radial-gradient(circle, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);

    border-radius: 10px;

    padding: 16px 10px;

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 220px;

    overflow: hidden;

    transition: border-color 0.2s, box-shadow 0.2s;

    border: 1px solid rgba(255, 255, 255, 0.06);

}



.rts-trim-visual-img-container:hover {

    border-color: #FDA10E;

    box-shadow: 0 0 15px rgba(253, 161, 14, 0.25);

}



.rts-trim-main-photo {

    max-height: 200px;

    max-width: 90%;

    object-fit: contain;

    transition: opacity 0.2s ease, transform 0.2s ease;

    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.6));

}



.rts-trim-zoom-btn-overlay {

    position: absolute;

    bottom: 12px;

    left: 50%;

    transform: translateX(-50%);

    pointer-events: auto; cursor: pointer;

    opacity: 0.9;

    transition: opacity 0.2s, transform 0.2s;

}



.rts-trim-visual-img-container:hover .rts-trim-zoom-btn-overlay {

    opacity: 1;

    transform: translateX(-50%) translateY(-2px);

}



.rts-trim-zoom-pill {
    cursor: pointer;
    pointer-events: auto; cursor: pointer;

    background: rgba(15, 23, 42, 0.88);

    color: #FDA10E;

    border: 1px solid #FDA10E;

    font-size: 12px;

    font-weight: 700;

    padding: 5px 12px;

    border-radius: 20px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);

    white-space: nowrap;

    display: inline-flex;

    align-items: center;

    gap: 6px;

}



.rts-otk-watermark {

    position: absolute;

    top: 10px;

    right: 10px;

    background: rgba(16, 185, 129, 0.15);

    color: #10b981;

    border: 1px solid rgba(16, 185, 129, 0.4);

    font-size: 11px;

    font-weight: 600;

    padding: 3px 8px;

    border-radius: 6px;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    pointer-events: auto; cursor: pointer;

}



.rts-trim-photo-caption {

    margin-top: 8px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 12px;

    color: #94a3b8;

    padding: 0 4px;

}



.rts-photo-caption-title {

    color: #cbd5e1;

}



.rts-photo-caption-title strong {

    color: #f8fafc;

}



.rts-photo-caption-meta {

    font-size: 11px;

    color: #64748b;

}



/* === RTS Interactive OTK Seal Lightbox Modal === */

.rts-seal-modal {

    position: fixed;

    top: 0;

    left: 0;

    width: 100vw;

    height: 100vh;

    z-index: 999999;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 16px;

    box-sizing: border-box;

}



.rts-seal-modal.active {

    display: flex !important;

}



.rts-seal-backdrop {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(11, 15, 25, 0.88);

    backdrop-filter: blur(6px);

}



.rts-seal-dialog {

    position: relative;

    background: #0f172a;

    border: 1.5px solid #FDA10E;

    border-radius: 16px;

    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);

    width: 100%;

    max-width: 680px;

    max-height: 90vh;

    overflow-y: auto;

    color: #f8fafc;

    z-index: 10;

    animation: rtsPopIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);

}



@keyframes rtsPopIn {

    from { opacity: 0; transform: scale(0.94) translateY(10px); }

    to { opacity: 1; transform: scale(1) translateY(0); }

}



.rts-seal-modal-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    padding: 18px 20px;

    border-bottom: 1px solid #1e293b;

}



.rts-seal-otk-badge {

    display: inline-block;

    background: rgba(253, 161, 14, 0.15);

    color: #FDA10E;

    border: 1px solid #FDA10E;

    font-size: 11px;

    font-weight: 700;

    padding: 3px 8px;

    border-radius: 4px;

    margin-bottom: 6px;

    text-transform: uppercase;

}



.rts-seal-modal-title {

    margin: 0;

    font-size: 18px;

    font-weight: 700;

    color: #fff;

}



.rts-seal-close-btn {

    background: transparent;

    border: none;

    color: #94a3b8;

    font-size: 28px;

    line-height: 1;

    cursor: pointer;

    padding: 0 4px;

    transition: color 0.15s;

}



.rts-seal-close-btn:hover {

    color: #FDA10E;

}



.rts-seal-modal-body {

    padding: 20px;

}



.rts-seal-viewer {

    position: relative;

    background: radial-gradient(circle, #1e293b 0%, #090e17 100%);

    border: 1px solid #334155;

    border-radius: 12px;

    padding: 20px 10px;

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 260px;

    margin-bottom: 16px;

    overflow: hidden;

}



.rts-seal-modal-img {

    max-height: 240px;

    max-width: 95%;

    object-fit: contain;

    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.7));

}



/* Hotspots with pulsing animation */

.rts-seal-hotspot {

    position: absolute;

    cursor: pointer;

}



.rts-hotspot-dot {

    display: block;

    width: 14px;

    height: 14px;

    background: #FDA10E;

    border: 2px solid #fff;

    border-radius: 50%;

    box-shadow: 0 0 0 4px rgba(253, 161, 14, 0.4);

    animation: rtsPulse 1.8s infinite;

}



@keyframes rtsPulse {

    0% { box-shadow: 0 0 0 0 rgba(253, 161, 14, 0.6); }

    70% { box-shadow: 0 0 0 10px rgba(253, 161, 14, 0); }

    100% { box-shadow: 0 0 0 0 rgba(253, 161, 14, 0); }

}



.rts-hotspot-tooltip {

    position: absolute;

    bottom: 22px;

    left: 50%;

    transform: translateX(-50%);

    background: rgba(15, 23, 42, 0.95);

    border: 1px solid #FDA10E;

    color: #f1f5f9;

    padding: 8px 12px;

    border-radius: 8px;

    font-size: 11px;

    line-height: 1.4;

    width: 200px;

    pointer-events: auto; cursor: pointer;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);

    z-index: 20;

}



.rts-seal-info-cards {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-bottom: 16px;

}



.rts-seal-card {

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid #1e293b;

    border-radius: 8px;

    padding: 12px;

    display: flex;

    gap: 10px;

}



.rts-seal-card-icon {

    font-size: 20px;

    color: #10b981;

    padding-top: 2px;

}



.rts-seal-card-text strong {

    display: block;

    font-size: 13px;

    color: #fff;

    margin-bottom: 3px;

}



.rts-seal-card-text p {

    margin: 0;

    font-size: 11px;

    line-height: 1.4;

    color: #94a3b8;

}



.rts-seal-modal-footer {

    padding: 16px 20px;

    border-top: 1px solid #1e293b;

    display: flex;

    justify-content: space-between;

    align-items: center;

    background: #090e17;

    border-radius: 0 0 16px 16px;

}



.rts-seal-order-btn {

    padding: 10px 24px;

    font-size: 14px;

    font-weight: 700;

}



.rts-seal-safe-note {

    font-size: 12px;

    color: #10b981;

    font-weight: 600;

}



@media (max-width: 640px) {

    .rts-seal-info-cards { grid-template-columns: 1fr; }

    .rts-seal-modal-footer { flex-direction: column; gap: 10px; align-items: stretch; text-align: center; }

    .rts-trim-photo-caption { flex-direction: column; align-items: flex-start; gap: 4px; }

}



/* Carburetor In-Stock Fast Shipping Badge */

.rts-carb-fast-badge {

    position: absolute;

    top: 14px;

    left: 14px;

    background: linear-gradient(135deg, #10b981 0%, #059669 100%);

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    padding: 6px 14px;

    border-radius: 20px;

    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);

    display: flex;

    align-items: center;

    gap: 6px;

    letter-spacing: 0.3px;

    z-index: 10;

    border: 1px solid rgba(255, 255, 255, 0.3);

    animation: rtsPulseFast 2s infinite ease-in-out;

}

@keyframes rtsPulseFast {

    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4); }

    50% { transform: scale(1.03); box-shadow: 0 6px 20px rgba(16, 185, 129, 0.7); }

}



/* Carburetor In-Stock Fast Shipping Badge */

.rts-carb-fast-badge {

    position: absolute;

    top: 14px;

    left: 14px;

    background: linear-gradient(135deg, #10b981 0%, #059669 100%);

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    padding: 6px 14px;

    border-radius: 20px;

    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);

    display: flex;

    align-items: center;

    gap: 6px;

    letter-spacing: 0.3px;

    z-index: 10;

    border: 1px solid rgba(255, 255, 255, 0.3);

    animation: rtsPulseFast 2s infinite ease-in-out;

}

@keyframes rtsPulseFast {

    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4); }

    50% { transform: scale(1.03); box-shadow: 0 6px 20px rgba(16, 185, 129, 0.7); }

}


/* Hide legacy broken accessories section (prevents 404 images, blank cards, and conversion leakage) */
#cupi-section {
    display: none !important;
}


/* === RTS Trim Explainer Bar & CRO Conversion Triggers (2026) === */
.rts-trim-explainer-bar {
    margin: 6px 0 12px 0;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.95) 100%);
    border: 1px solid rgba(253, 161, 14, 0.45);
    border-radius: 10px;
    font-size: 12.5px;
    line-height: 1.45;
    color: #f1f5f9;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.rts-explainer-inner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.rts-explainer-inner i {
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.rts-explainer-block i { color: #38bdf8; }
.rts-explainer-aggregate i { color: #f59e0b; }
.rts-explainer-complete i { color: #22c55e; }

.rts-trim-guarantee-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.rts-trim-guarantee-bar span {
    font-size: 11.5px;
    font-weight: 600;
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rts-trim-guarantee-bar span i {
    color: #FDA10E;
}

@media (max-width: 480px) {
    .rts-trim-explainer-bar {
        padding: 8px 10px;
        font-size: 11.5px;
    }
    .rts-trim-guarantee-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}


/* === RTS CRO 2026: Owl Carousel Slider Arrows Touch-Target 48x48px (Anti-Rage Clicks) === */
.owl-theme .owl-controls .owl-buttons div,
.owl-prev,
.owl-next {
    min-width: 48px !important;
    min-height: 48px !important;
    width: 48px !important;
    height: 48px !important;
    line-height: 48px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
    font-size: 20px !important;
    background: rgba(15, 23, 42, 0.92) !important;
    color: #FDA10E !important;
    border: 1.5px solid rgba(253, 161, 14, 0.5) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.2s ease-in-out !important;
    opacity: 0.95 !important;
    cursor: pointer !important;
}

.owl-theme .owl-controls .owl-buttons div:hover,
.owl-prev:hover,
.owl-next:hover,
.owl-theme .owl-controls .owl-buttons div:active,
.owl-prev:active,
.owl-next:active {
    background: #FDA10E !important;
    color: #0b101d !important;
    transform: scale(1.08) !important;
    opacity: 1 !important;
}

/* === RTS CRO 2026: Trust & Security Section Styles === */
#rts-trust-security-section {
    position: relative;
    background: linear-gradient(180deg, #0b1329 0%, #0f172a 100%);
    color: #f8fafc;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.rts-trust-card {
    background: rgba(30, 41, 59, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 22px 18px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    box-sizing: border-box;
}
.rts-trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
    border-color: rgba(96, 165, 250, 0.4);
}
@media (max-width: 768px) {
    #rts-trust-security-section {
        padding: 35px 0 !important;
    }
    .rts-trust-card {
        margin-bottom: 12px !important;
        padding: 16px 14px !important;
    }
}


/* === RTS CRO 2.0: Share with Motorist & Comparison Styles (2026) === */
.rts-share-motorist-bar {
    margin: 16px 0 12px 0;
    text-align: center;
}
.rts-share-motorist-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 540px;
    min-height: 50px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
    transition: all 0.2s ease;
    text-decoration: none !important;
    touch-action: manipulation;
    font-family: inherit;
}
.rts-share-motorist-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}
.rts-share-motorist-btn:active {
    transform: scale(0.98);
}
.rts-share-motorist-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
}
.rts-dynamic-geo-shipping {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 10px;
    padding: 10px 14px;
    margin: 12px 0;
    font-size: 13px;
    color: #93c5fd;
    line-height: 1.4;
}
.rts-dynamic-geo-shipping i {
    font-size: 18px;
    color: #60a5fa;
    flex-shrink: 0;
}
.rts-dynamic-geo-shipping strong {
    color: #ffffff;
}

/* === RTS Repair vs New Block Comparison Table === */
.rts-repair-vs-new-block {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    margin: 20px 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.rts-repair-vs-new-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(30, 41, 59, 0.85);
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s;
    user-select: none;
}
.rts-repair-vs-new-header:hover {
    background: rgba(51, 65, 85, 0.9);
}
.rts-rvn-title {
    font-size: 15px;
    font-weight: 700;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rts-rvn-title i {
    color: #f59e0b;
}
.rts-rvn-badge {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
}
.rts-repair-vs-new-content {
    padding: 16px;
    overflow-x: auto;
}
.rts-rvn-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    color: #e2e8f0;
}
.rts-rvn-table th, .rts-rvn-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: top;
}
.rts-rvn-table th {
    background: rgba(30, 41, 59, 0.5);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #94a3b8;
}
.rts-rvn-col-old {
    color: #fca5a5 !important;
}
.rts-rvn-col-new {
    color: #86efac !important;
}
.rts-rvn-bad {
    color: #f87171;
    background: rgba(239, 68, 68, 0.05);
}
.rts-rvn-good {
    color: #4ade80;
    background: rgba(34, 197, 94, 0.08);
}
.rts-rvn-bad small, .rts-rvn-good small {
    display: block;
    color: #94a3b8;
    margin-top: 2px;
    font-size: 11px;
}
@media (max-width: 768px) {
    .rts-share-motorist-btn {
        font-size: 14px !important;
        padding: 12px 14px !important;
    }
    .rts-rvn-title {
        font-size: 13px !important;
    }
    .rts-rvn-table th, .rts-rvn-table td {
        padding: 8px 6px !important;
        font-size: 12px !important;
    }
}
