/* 
   INDUSTRIAL CONVERSION BLOCKS (CATALOG) 
   Isolated styles for Sidebar Widget and Bottom Banner
*/

:root {
    --srv-orange: #E8620A;
    --srv-orange-hover: #C24F00;
    --srv-dark: #1A1A1A;
    --srv-font-main: 'PT Sans', sans-serif;
    --srv-font-accent: 'Oswald', sans-serif;
}

/* BASE LAYOUT FOR REPAIR BLOCKS */
.rd-main-wrapper .rd-container,
.rd-detail-page .rd-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.rd-main-wrapper .section,
.rd-detail-page .section {
    padding: 32px 36px;
}

.rd-main-wrapper .section--dark,
.rd-detail-page .section--dark {
    background: var(--srv-dark);
    color: #fff;

}

/* UNIVERSAL BUTTONS */
.srv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px;
    font-family: var(--srv-font-accent);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    gap: 8px;
    line-height: normal;
}

.srv-btn--orange {
    background: var(--srv-orange);
    color: #fff;
}

.srv-btn--orange:hover {
    background: var(--srv-orange-hover);
    color: #fff;
}

.srv-btn--ghost {
    background: transparent;
    border: 1px solid #666;
    color: #fff;
}

.srv-btn--lg {
    padding: 12px 25px;
    font-size: 15px;
}

.srv-btn--pulse {
    box-shadow: 0 0 0 0 rgba(232, 98, 10, 0.7);
    animation: srv-pulse 2s infinite;
}

@keyframes srv-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 98, 10, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(232, 98, 10, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(232, 98, 10, 0);
    }
}

/* ══════════════════════════════════════
   2A: SIDEBAR REPAIR WIDGET
   ══════════════════════════════════════ */
.repair-widget {
    background: var(--srv-dark);
    color: #fff;
    padding: 20px;
    font-family: var(--srv-font-main);
    margin-bottom: 25px;
}

.repair-widget-head {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.repair-widget-head-icon {
    width: 40px;
    height: 40px;
    background: var(--srv-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.repair-widget-head-title {
    font-family: var(--srv-font-accent);
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.2;
}

.repair-widget-head-sub {
    font-size: 12px;
    color: var(--srv-orange);
    text-transform: uppercase;
    font-weight: 700;
}

.repair-widget-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.repair-widget-perks li {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.3;
}

.perk-check {
    color: var(--srv-orange);
    font-weight: 700;
}

.repair-widget-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.repair-widget-form input,
.repair-widget-form textarea {
    background: #3a3d40;
    border: 1px solid #4a4d50;
    padding: 8px 12px;
    color: #fff;
    font-size: 13px;
    font-family: var(--srv-font-main);
}

.repair-widget-form textarea {
    height: 60px;
    resize: none;
}

.repair-widget-more {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 5px;
}

.repair-widget-more a {
    color: var(--srv-orange);
    text-decoration: none;
}

.repair-widget-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.repair-widget-footer-text {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    line-height: 1.2;
}

.repair-widget-footer a {
    font-family: var(--srv-font-accent);
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 700;
}

/* ══════════════════════════════════════
   2B: FULL-WIDTH BOTTOM BANNER
   ══════════════════════════════════════ */
.repair-banner {
    color: #fff;
    padding: 0;
    font-family: var(--srv-font-main);
    position: relative;
}

.repair-banner-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    /* padding-bottom: 40px; */
    align-items: center;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #999;
}

.repair-banner-left {
    display: flex;
    gap: 30px;
}

.repair-banner-ico {
    font-size: 48px;
    color: #fff;
    opacity: 0.8;
}

.repair-banner-kicker {
    font-family: var(--srv-font-accent);
    font-size: 11px;
    font-weight: 600;
    color: var(--srv-orange);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.repair-banner-title {
    font-family: var(--srv-font-accent);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
}

.repair-banner-desc {
    font-family: var(--srv-font-main);
    font-size: 14px;
    line-height: 1.4;
    color: #999;
    margin-bottom: 20px;
    max-width: 500px;
}

.repair-banner-right {
    display: block;
}

.repair-banner-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
    justify-content: flex-end;
}

.repair-pill {
    font-family: var(--srv-font-accent);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    border: 1px solid #999;
    padding: 4px 10px;
    border-radius: 0;
    background: transparent;
}

.repair-banner-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 15px;
}

/* INDICATORS (BOTTOM LINE) */
.repair-indicators {
    padding-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.repair-indicator {
    display: flex;
    gap: 12px;
    align-items: center;
}

.repair-indicator-icon {
    font-size: 20px;
    color: var(--srv-orange);
}

.repair-indicator-label {
    font-size: 12px;
    line-height: 1.3;
}

.repair-indicator-label strong {
    display: block;
    text-transform: uppercase;
    font-family: var(--srv-font-accent);
    font-size: 13px;
    color: #fff;
}

@media (max-width: 1200px) {
    .repair-banner-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .repair-indicators {
        flex-wrap: wrap;
        justify-content: center;
    }
}