/* =========================================================
   REPAIR ENGINE HUB - EXACT PROTOTYPE COPY
   ========================================================= */

/* КОПИЯ СТИЛЕЙ ИЗ remont-dvigatelej-hub.html */
:root {
    --orange: #E8620A;
    --orange-dark: #C24F00;
    --orange-light: #FF7A1A;
    --black: #111111;
    --dark: #1A1A1A;
    --dark2: #222222;
    --gray: #3A3A3A;
    --gray-mid: #666666;
    --gray-light: #AAAAAA;
    --border: #2E2E2E;
    --white: #FFFFFF;
    --bg: #F5F4F2;
    --text: #1A1A1A;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'PT Sans', sans-serif;
}

/* Общий контейнер для выравнивания (1200px + отступы) */
.rd-container {
    max-width: 1240px;
    /* 1200 + 20+20 */
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* УДАЛЕН СБРОС PADDING-TOP ДЛЯ ПРАВИЛЬНОГО ОТОБРАЖЕНИЯ ПОД ФИКСИРОВАННОЙ ШАПКОЙ */
.site__body:has(.rd-main-wrapper),
.site__body:has(.rd-detail-page) {
    /* Оставляем системный padding-top, чтобы контент не заезжал под шапку */
}

/* КОРРЕКЦИЯ HERO ДЛЯ ОВЕРЛЕЯ */
.rd-main-wrapper .hero,
.rd-detail-page .hero-detail {
    padding-top: 60px !important;
    /* Даем место под крошки */
}


/* Фиксация сайдбара при скролле */
@media (min-width: 992px) {
    .sidebar {
        position: sticky;
        top: 100px;
        /* Учитываем высоту фиксированной шапки */
        align-self: flex-start;
        transition: top 0.3s;
    }
}


/* Оригинальные стили контента из прототипа */
.rd-main-wrapper .hero,
.rd-detail-page .hero-detail {
    background: var(--dark);
    padding: 20px 0 80px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    margin-top: 0 !important;
}

.hero::after {
    content: '';

    position: absolute;
    right: -80px;
    top: -40px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(232, 98, 10, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    max-width: 760px;
}

.hero h1 em {
    color: var(--orange);
    font-style: normal;
}

.hero-sub {
    color: #BBBBB0;
    font-size: clamp(15px, 2vw, 17px);
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-brands-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.brand-chip {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #CCC;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
}

.btn-primary,
.btn {
    background: var(--orange);
    color: var(--white) !important;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn--orange {
    background: var(--orange);
    color: var(--white);
}

.btn--ghost {
    background: transparent;
    border: 1px solid #333;
    color: var(--white);
}

.btn--ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-primary:hover {
    background: var(--orange-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--white) !important;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 28px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange) !important;
}

/* Блок услуг - 2 колонки */
.works-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

@media (max-width: 767.98px) {
    .works-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.work-row {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.work-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
    opacity: 0;
    transition: 0.3s;
}

.work-row:hover {
    border-color: #ddd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.work-row:hover::before {
    opacity: 1;
}

.work-row-num {
    font-size: 14px;
    font-family: var(--font-head);
    color: var(--orange);
    font-weight: 700;
    line-height: 1.2;
    min-width: 24px;
}

.work-row-title {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.work-row-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

.hero-stats {
    margin-top: 48px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* SECTIONS */
.section {
    padding: 64px 0;
}

.section--gray {
    background: var(--bg);
}

.section--dark {
    background: var(--dark);
    color: white;
}

.rd-container {
    max-width: 1200px;

    margin: 0 auto;
}

.section-head {
    margin-bottom: 40px;
}

.section-label {
    display: inline-block;
    color: var(--orange);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.15;
    color: var(--text);
}

.section--dark .section-title {
    color: var(--white);
}

.section-title-line {
    width: 48px;
    height: 3px;
    background: var(--orange);
    margin-top: 14px;
}

/* BRANDS GRID */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2px;
}

.brand-card {
    background: var(--white);
    border: 1px solid #E5E5E0;
    padding: 28px 20px 24px;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.2s;
    position: relative;
}

.brand-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
    transform: scaleY(0);
    transition: 0.2s;
    transform-origin: bottom;
}

.brand-card:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 20px rgba(232, 98, 10, 0.1);
}

.brand-card:hover::before {
    transform: scaleY(1);
}

.brand-icon {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
}

.brand-tech {
    font-size: 12px;
    color: var(--gray-mid);
    text-transform: uppercase;
}

.btn {
    background: var(--orange);
    color: var(--white);
    padding: 14px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    line-height: 1;
    text-decoration: none;
    gap: 8px;
}

.btn--orange {
    background: var(--orange);
    color: var(--white);
}

.btn--ghost {
    background: transparent;
    border: 1px solid #333;
    color: var(--white);
}

.btn--ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.brand-name-full {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.brand-link-arrow {
    font-size: 12px;
    color: var(--orange);
    font-family: var(--font-head);
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* WORKS TABS */
.works-tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #E5E5E0;
    margin-bottom: 32px;
    overflow-x: auto;
}

.works-tab {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 20px;
    cursor: pointer;
    border: none;
    background: none;
    color: var(--gray-mid);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: 0.2s;
}

.works-tab.active,
.works-tab:hover {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.works-content {
    display: none;
}

.works-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.work-item {
    padding: 20px;
    background: var(--bg);
    border-left: 3px solid var(--orange);
}

.work-item-title {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.work-item-desc {
    font-size: 13px;
    color: var(--gray-mid);
    line-height: 1.5;
}

/* TRADEIN */
.tradein-block {
    background: var(--orange);
    padding: 48px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    color: white;
}

.tradein-label {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-head);
    font-size: 11px;
    padding: 4px 12px;
    margin-bottom: 14px;
}

.tradein-title {
    font-family: var(--font-head);
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.btn-dark {
    background: var(--black);
    color: var(--white) !important;
    font-family: var(--font-head);
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

/* FAQ ACCORDION */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #E5E5E0;
    margin-bottom: 8px;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;

    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-head);
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text);
}

.faq-question.active {
    color: var(--orange);
    border-bottom: 1px solid #E5E5E0;
}

.faq-answer {
    display: none;
    padding: 18px 24px;
    font-size: 15px;
    color: var(--gray-mid);
    line-height: 1.6;
}

.faq-answer.open {
    display: block;
}

/* FORMS */
.rd-input {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 16px;
    font-family: var(--rd-font-body);
}

.rd-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* FEATURES (Advantages) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 40px;
}

@media(max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--dark2);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--orange);
    background: #282828;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
    filter: grayscale(1);
    transition: 0.3s;
}

.feature-card:hover .feature-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.feature-title {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

/* TRADEIN steps list */
.tradein-steps {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tradein-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.tradein-step::before {
    content: '✓';
    color: var(--black);
    background: var(--white);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
    font-weight: 700;
}

/* PROCESS (Steps) */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 40px;
}

@media(max-width: 991px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media(max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

.process-step {
    background: var(--white);
    border: 1px solid #E5E5E0;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.process-step:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.process-num {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 700;
    color: var(--orange);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 12px;
}

.process-title {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: var(--black);
}

.process-desc {
    font-size: 13px;
    color: var(--gray-mid);
    line-height: 1.6;
}

/* CATALOG (Engines Sale) */
.rd-main-wrapper .products-grid,
.rd-detail-page .products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}

@media(max-width: 1300px) {

    .rd-main-wrapper .products-grid,
    .rd-detail-page .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .rd-main-wrapper .products-grid .product-card:nth-child(n+9),
    .rd-detail-page .products-grid .product-card:nth-child(n+9) {
        display: none;
    }
}

@media(max-width: 1000px) {

    .rd-main-wrapper .products-grid,
    .rd-detail-page .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rd-main-wrapper .products-grid .product-card:nth-child(n+7),
    .rd-detail-page .products-grid .product-card:nth-child(n+7) {
        display: none;
    }
}

@media(max-width: 768px) {

    .rd-main-wrapper .products-grid,
    .rd-detail-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rd-main-wrapper .products-grid .product-card:nth-child(n+5),
    .rd-detail-page .products-grid .product-card:nth-child(n+5) {
        display: none;
    }
}

@media(max-width: 480px) {

    .rd-main-wrapper .products-grid,
    .rd-detail-page .products-grid {
        grid-template-columns: 1fr;
    }

    .rd-main-wrapper .products-grid .product-card:nth-child(n+3),
    .rd-detail-page .products-grid .product-card:nth-child(n+3) {
        display: none;
    }
}

.rd-main-wrapper .products-grid .product-card,
.rd-detail-page .products-grid .product-card {
    border: 1px solid #E5E5E0;
    background: var(--white);
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rd-main-wrapper .products-grid .product-card:hover,
.rd-detail-page .products-grid .product-card:hover {
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.rd-main-wrapper .products-grid .product-img,
.rd-detail-page .products-grid .product-img {
    width: 100%;
    aspect-ratio: 1/1;
    background: #F9F9F9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #F0F0F0;
}

.rd-main-wrapper .products-grid .product-img img,
.rd-detail-page .products-grid .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.6s ease;
}

.rd-main-wrapper .products-grid .product-card:hover .product-img img,
.rd-detail-page .products-grid .product-card:hover .product-img img {
    transform: scale(1.08);
}

.products-grid .product-info {
    padding: 18px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.products-grid .product-brand {
    font-size: 10px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.products-grid .product-name {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
    text-transform: uppercase;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-grid .product-price {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--orange);
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #F0F0F0;
    display: flex;
    align-items: center;
    min-height: 43px;
}

.products-grid .btn-xs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    color: var(--orange);
    border: 1px solid var(--orange);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
    cursor: pointer;
}

.products-grid .btn-xs:hover {
    background: var(--orange);
    color: var(--white);
}

/* REGION SECTION */
.region-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 320px;
    border: 1px solid #E5E5E0;
    margin-top: 40px;
}

@media(max-width: 768px) {
    .region-block {
        grid-template-columns: 1fr;
    }
}

.region-info {
    padding: 48px 40px;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    color: white;
}

.region-title {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.region-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.region-item-icon {
    color: var(--orange);
    font-size: 20px;
    flex-shrink: 0;
}

.region-item-text {
    color: #BBB;
    font-size: 15px;
    line-height: 1.6;
}

.region-item-text strong {
    color: var(--white);
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.region-map {
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: #444;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* FAQ Refinement */
.faq-list {
    width: 100%;
    max-width: 100% !important;
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 2px;
    border: 1px solid #E5E5E0;
}

.faq-question {
    font-size: 18px !important;
    padding: 24px 30px !important;
}

.faq-answer-inner {
    padding: 20px 30px 30px !important;
    font-size: 16px;
}

/* CONTACT CARD FORM */
.rd-container--narrow {
    max-width: 1000px;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

@media(max-width: 850px) {
    .contact-card {
        grid-template-columns: 1fr;
    }
}

.contact-info {

    padding: 50px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

@media(max-width: 850px) {
    .contact-info {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.contact-desc {
    color: #888;
    margin-top: 20px;
    line-height: 1.6;
    font-size: 15px;
}

.contact-phones {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-phone {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.contact-phone:hover {
    color: var(--orange);
}

.contact-time {
    color: var(--orange);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-form-wrapper {
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.02);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
    opacity: 0.7;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 14px 16px;
    font-size: 15px;
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
    height: 100px;
    resize: none;
}

.form-note {
    margin-top: 16px;
    font-size: 12px;
    color: #555;
    text-align: center;
}

.w-100 {
    width: 100%;
    justify-content: center;
}

@media (max-width: 767px) {
    .hero {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .tradein-block {
        grid-template-columns: 1fr;
    }

    .rd-form-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   DETAIL PAGE SPECIFIC STYLES
   ========================================================= */

/* Hero Detail */
.hero-detail {
    background: var(--dark);
    background-image: linear-gradient(135deg, rgba(232, 98, 10, 0.1) 0%, transparent 55%),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255, 255, 255, 0.012) 40px, rgba(255, 255, 255, 0.012) 41px);
    padding: 0 0 80px;
    /* Убираем боковой паддинг */
    position: relative;
    overflow: hidden;
}

.hero-detail-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media(max-width: 768px) {
    .hero-detail-inner {
        grid-template-columns: 1fr;
    }
}

.hero-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px 8px 10px;
    margin-bottom: 20px;
}

.hero-brand-logo {
    background: var(--white);
    padding: 4px 10px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 1px;
}

.hero-brand-badge-text {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-detail h1 {
    font-family: var(--font-head);
    font-size: clamp(26px, 4.5vw, 46px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.hero-detail h1 em {
    color: var(--orange);
    font-style: normal;
}

.hero-detail-sub {
    color: #BBBBAA;
    font-size: clamp(14px, 2vw, 16px);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-aside {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}

@media(max-width: 900px) {
    .hero-aside {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.signal-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    text-align: center;
}

.signal-card-num {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);

    line-height: 1;
    margin-bottom: 4px;
}

.signal-card-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Detail Layout */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

@media(max-width: 1000px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
}

.sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

/* Models Grid */
.models-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.model-chip {
    background: var(--white);
    border: 1px solid #DEDEDA;
    padding: 10px 18px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: default;
    transition: 0.2s;
    position: relative;
    padding-left: 22px;
}

.model-chip::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--orange);
}

/* Faults Grid */
.faults-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.fault-card {
    background: var(--white);
    border: 1px solid #E5E5E0;
    padding: 24px 20px;
    border-top: 3px solid var(--orange);
}

.fault-icon {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.fault-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: var(--black);
}

.fault-desc {
    font-size: 14px;
    color: var(--gray-mid);
    line-height: 1.6;
}

/* Pricing Detail */
.pricing-notice {
    background: var(--bg);
    border-left: 4px solid var(--orange);
    padding: 20px 24px;
    margin-bottom: 28px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 20px;
    text-align: left;
}

.pricing-table td {
    padding: 16px 20px;
    font-size: 15px;
    border-bottom: 1px solid #EEEEEA;
    vertical-align: middle;
    background: white;
}

.price-val {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
    white-space: nowrap;
}

/* Content Text Detail */
.content-text {
    max-width: 850px;
}

.content-text h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 35px;
    color: var(--black);
}

.content-text p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-text ul {
    margin: 0 0 20px 25px;
}

.content-text li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #444;
}

/* Sidebar Detail */
.sidebar-card {
    background: var(--bg);
    border: 1px solid #E5E5E0;
    padding: 30px;
    margin-bottom: 20px;
}

.sidebar-card--dark {
    background: var(--dark);
    border-color: var(--border);
}

.sidebar-card-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--black);
}

.sidebar-card--dark .sidebar-card-title {
    color: var(--white);
}

.sidebar-phone {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.sidebar-hours {
    font-size: 13px;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-form input,
.sidebar-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 14px;
    margin-bottom: 12px;
    outline: none;
    transition: 0.2s;
}

.sidebar-form input:focus,

.sidebar-form textarea:focus {
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
}

.sidebar-form textarea {
    height: 80px;
    resize: none;
}

.sidebar-tradein {
    background: var(--orange);
    padding: 30px;
    color: white;
    margin-bottom: 20px;
}

.sidebar-tradein-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sidebar-tradein-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-dark-sm {
    background: var(--black);
    color: var(--white) !important;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #DDD;
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    transition: 0.2s;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-head);
}

.sidebar-link:hover {
    color: var(--orange);
    padding-left: 5px;
}

.sidebar-link:last-child {
    border-bottom: none;
}

/* Other Brands Section (Footer) */
.other-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.other-brand-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid #E5E5E0;
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.2s;
}

.other-brand-link:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.other-brand-link span {
    color: var(--orange);
}

.fault-sign {
    font-size: 13px;
    color: var(--orange);
    margin-top: 8px;
    font-style: italic;
}

/* Sticky Phone Mobile */
.sticky-phone {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--orange);
    color: var(--white) !important;
    text-align: center;
    padding: 16px 20px;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

@media(max-width: 768px) {
    .sticky-phone {
        display: block;
    }

    body {
        padding-bottom: 60px;
    }
}

/* =========================================================
   CONVERSION BLOCKS (Promocion de reparaciones)
   ========================================================= */



/* Call to Action Animation */
@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 98, 10, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(232, 98, 10, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(232, 98, 10, 0);
    }
}

.btn-xl-pulse {
    animation: pulse-orange 2s infinite;
    position: relative;
    overflow: hidden;
    padding: 18px 40px !important;
}

.btn-xl-pulse::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 100%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(25deg);
    animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
    0% {
        left: -100%;
    }

    30% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}







@media (max-width: 480px) {
    .product-repair-promo__content {
        max-width: 100%;
    }

    .product-repair-promo__image {
        opacity: 0.2;
    }
}

/* ============================================================
   SRV-SECTION (New Homepage Conversion Block)
   ============================================================ */

.srv-section {
    background: var(--dark);
    background-image:
        repeating-linear-gradient(-55deg,
            transparent 0, transparent 28px,
            rgba(255, 255, 255, 0.018) 28px, rgba(255, 255, 255, 0.018) 29px);
    padding: 0;
    overflow: hidden;

    position: relative;
    /* margin: 60px 0; */
}

.srv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 50%, var(--orange) 100%);
    z-index: 2;
}

.srv-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    min-height: 440px;
}

@media(max-width: 900px) {
    .srv-inner {
        grid-template-columns: 1fr;
    }
}

.srv-content {
    padding: 52px 48px 52px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-left: auto;
    /* max-width: 680px; */
    width: 100%;
    box-sizing: border-box;
}

@media(max-width: 900px) {
    .srv-content {
        padding: 40px 0;
        max-width: 100%;
    }
}

.srv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.srv-eyebrow-line {
    width: 32px;
    height: 2px;
    background: var(--orange);
    flex-shrink: 0;
}

.srv-eyebrow-text {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
}

.srv-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 18px;
}

.srv-title em {
    color: var(--orange);
    font-style: normal;
    display: block;
}

.srv-desc {
    font-size: 15px;
    color: #999;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 28px;
}

.srv-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 32px;
}

.srv-brand-tag {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    border: 1px solid #888;
    padding: 5px 11px;
    transition: color 0.18s, border-color 0.18s;
    cursor: default;
}

.srv-brand-tag:hover {
    color: var(--orange);
    border-color: var(--orange);
}

.srv-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.srv-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid #2a2a2a;
}

.srv-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.srv-trust-icon {
    color: var(--orange);
    font-size: 18px;
    flex-shrink: 0;
}

.srv-trust-text {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
}

.srv-trust-text strong {
    display: block;
    color: #CCC;
    font-size: 14px;
}

.srv-visual {
    background: var(--dark2);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

@media(max-width: 900px) {
    .srv-visual {
        display: none;
    }
}

.srv-visual::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(232, 98, 10, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.srv-visual-top {
    padding: 32px 28px;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.srv-visual-icon {
    font-size: 48px;
    margin-bottom: 14px;
    display: block;
    line-height: 1;
    filter: grayscale(0.3);
}

.srv-visual-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #AAA;
    margin-bottom: 6px;
}

.srv-visual-sub {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.srv-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
}

.srv-metric {
    padding: 20px 24px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.srv-metric:nth-child(2n) {
    border-right: none;
}

.srv-metric:nth-last-child(-n+2) {
    border-bottom: none;
}

.srv-metric-num {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;

    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}

.srv-metric-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.srv-perk {
    display: flex;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 14px 28px;
    transition: background 0.15s;
}

.srv-perk:hover {
    background: rgba(255, 255, 255, 0.03);
}

.srv-perk-check {
    width: 28px;
    height: 28px;
    background: rgba(232, 98, 10, 0.15);
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 14px;
    margin-top: 1px;
}

.srv-perk-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--white);
    margin-bottom: 2px;
}

.srv-perk-desc {
    font-size: 12px;
    color: #666;
}

.srv-visual-phone {
    padding: 20px 28px;
    background: rgba(232, 98, 10, 0.08);
    border-top: 1px solid rgba(232, 98, 10, 0.2);
}

.srv-visual-phone-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.srv-visual-phone a {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.srv-visual-phone a:hover {
    color: var(--orange);
}

/* Buttons inside srv-section */
.srv-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    line-height: 1;
}

.srv-section .btn--orange {
    background: var(--orange);
    color: var(--white);
}

.srv-section .btn--orange:hover {
    background: var(--orange-dark);
}

.srv-section .btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.srv-section .btn--ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.srv-section .btn--lg {
    height: 54px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 32px;
}

.srv-section .btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-right: 10px;
    display: block;
}

/* ============================================================
   PRODUCT PAGE CONVERSION BLOCKS (2A & 2B)
   ============================================================ */

/* 2A: Sidebar Widget */
.repair-widget {
    background: #FFF;
    border: 1px solid #E5E5E0;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.repair-widget-head {
    display: flex;
    align-items: center;
    background: #F9F9F7;
    border-bottom: 1px solid #E5E5E0;
}

.repair-widget-head-icon {
    width: 60px;
    height: 60px;
    background: var(--orange);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.repair-widget-head>div {
    padding-left: 15px;
}

.repair-widget-head-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: #333;
}

.repair-widget-head-sub {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.repair-widget-body {
    padding: 20px;
}

.repair-widget-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.repair-widget-perks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.repair-widget-perks .perk-check {
    width: 18px;
    height: 18px;
    background: var(--orange);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border-radius: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.repair-widget-perks .perk-text {
    font-size: 13px;
    line-height: 1.4;
    color: #444;
}

.repair-widget-form input,
.repair-widget-form textarea {
    width: 100%;
    border: 1px solid #DDD;
    padding: 10px 14px;
    font-size: 14px;
    margin-bottom: 10px;
    outline: none;
}

.repair-widget-form input:focus,
.repair-widget-form textarea:focus {
    border-color: var(--orange);
}

.repair-widget-footer {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #111;
    color: #FFF;
}

.repair-widget-footer-ico {
    margin-right: 15px;
    font-size: 18px;
    color: var(--orange);
    opacity: 0.9;
}

.repair-widget-footer-text {
    flex-grow: 1;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #AAA;
}

.repair-widget-footer a {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: #FFF;
    text-decoration: none;
}

.repair-widget-footer a:hover {
    color: var(--orange);
}

/* 2B: Bottom Banner */
.repair-banner {
    background: var(--dark);
    padding: 40px;
    color: #FFF;
    position: relative;
    overflow: hidden;
    border-image: linear-gradient(90deg, var(--orange) 0%, transparent 100%) 1;
    border-top: 3px solid var(--orange);
}

.repair-banner-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    position: relative;
    z-index: 1;
}

@media(max-width: 900px) {
    .repair-banner-inner {
        grid-template-columns: 1fr;
    }
}

.repair-banner-left {
    display: flex;
    gap: 30px;
}

.repair-banner-kicker {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.repair-banner-title {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--white);
    text-transform: uppercase;
}

.repair-banner-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.4;
    color: #999;
    margin-bottom: 20px;
    max-width: 500px;
}

.repair-banner-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
}

.repair-pill {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #777;
    border: 1px solid #333;
    padding: 4px 10px;
    border-radius: 0;
    /* Strict industrial style */
    background: transparent;
}

.repair-banner-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.repair-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #333;
}

@media(max-width: 768px) {
    .repair-indicators {
        grid-template-columns: 1fr 1fr;
    }
}

.repair-indicator {
    display: flex;
    gap: 15px;
    align-items: center;
}

.repair-indicator-icon {
    font-size: 20px;
    color: var(--orange);
}

.repair-indicator-label strong {
    display: block;
    font-size: 13px;
    color: #EEE;
    margin-bottom: 2px;
}

.repair-indicator-label {
    font-size: 11px;
    color: #777;
}
 / *   - - -   B r e a d c r u m b s   ( !B0=40@B=K5)   - - -   * / 
 . b l o c k - h e a d e r - - h a s - b r e a d c r u m b   { 
         b a c k g r o u n d :   # 1 a 1 a 1 a ; 
         p a d d i n g :   1 2 p x   0 ; 
         m a r g i n - b o t t o m :   0   ! i m p o r t a n t ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ; 
 } 
 
 . b r e a d c r u m b _ _ l i s t   { 
         d i s p l a y :   f l e x ; 
         f l e x - w r a p :   w r a p ; 
         l i s t - s t y l e :   n o n e ; 
         p a d d i n g :   0 ; 
         m a r g i n :   0 ; 
         f o n t - f a m i l y :   ' P T   S a n s ' ,   s a n s - s e r i f ; 
         f o n t - s i z e :   1 3 p x ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
         a l i g n - i t e m s :   c e n t e r ; 
 } 
 
 . b r e a d c r u m b _ _ i t e m   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         c o l o r :   # 8 8 8 ; 
 } 
 
 . b r e a d c r u m b _ _ i t e m : n o t ( : l a s t - c h i l d ) : : a f t e r   { 
         c o n t e n t :   ' / ' ; 
         m a r g i n :   0   1 2 p x ; 
         c o l o r :   # 4 4 4 ; 
         f o n t - s i z e :   1 2 p x ; 
 } 
 
 . b r e a d c r u m b _ _ i t e m - l i n k   { 
         c o l o r :   # 8 8 8 ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         t r a n s i t i o n :   c o l o r   0 . 3 s   e a s e ; 
 } 
 
 . b r e a d c r u m b _ _ i t e m - l i n k : h o v e r   { 
         c o l o r :   # f f 6 b 0 0 ; 
 } 
 
 . b r e a d c r u m b _ _ i t e m - - c u r r e n t   . b r e a d c r u m b _ _ i t e m - l i n k , 
 . b r e a d c r u m b _ _ i t e m - - l a s t   . b r e a d c r u m b _ _ i t e m - l i n k , 
 . b r e a d c r u m b _ _ i t e m - - l a s t   s p a n   { 
         c o l o r :   # f f f ; 
         p o i n t e r - e v e n t s :   n o n e ; 
 } 
 
 . b r e a d c r u m b _ _ s p a c e s h i p - s a f e - a r e a   { 
         d i s p l a y :   n o n e ; 
 } 
  
 