.repair-price-widget {
    width: 100%;
    box-sizing: border-box;
}

.repair-price-table td {
    border: unset;
}

.repair-price-widget *,
.repair-price-widget *::before,
.repair-price-widget *::after {
    box-sizing: border-box;
}

.repair-table-wrap {
    width: 100%;
    overflow-x: auto;
    /* border: 1px solid #e4e7eb; */
    border-radius: 16px;
    background: #ffffff;
}

.repair-price-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    overflow: hidden;
    margin-bottom: 0;
}

.repair-price-table thead {
    background: #151728;
}

.repair-price-table th {
    color: #ffffff;
    padding: 24px 28px;
    text-align: left;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    border: none;
}

.repair-price-table td {
    padding: 25px 28px;
    border-top: 1px solid #e4e7eb;
    color: #ff4b1f;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    white-space: nowrap;
    border-inline-width: 0px;
}


.repair-price-table tbody tr:nth-child(even) {
    background: #f3f6fa;
}

.repair-price-table tbody tr:nth-child(odd) {
    background: #ffffff;
}

.repair-price-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}

.repair-price-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}

.brand-info {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #151728;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.brand-dot {
    width: 14px;
    height: 14px;
    display: inline-block;
    border-radius: 50%;
    flex: 0 0 auto;
}

.repair-mobile-view {
    display: none;
}

@media (max-width: 768px) {
    .repair-table-wrap {
        display: none;
    }

    .repair-mobile-view {
        display: block;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        background: #f4f7fb;
        overflow: hidden;
        border-radius: 24px;
    }

    .repair-mobile-header {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 28px 20px 30px;
        background: radial-gradient(circle at top left, #263153 0%, #101426 45%, #080d1d 100%);
        border-bottom-left-radius: 22px;
        border-bottom-right-radius: 22px;
        color: #ffffff;
        box-shadow: 0 14px 32px rgba(10, 18, 40, 0.22);
    }

    .repair-header-icon {
        width: 52px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
        flex: 0 0 auto;
    }

    .repair-header-icon span {
        font-size: 24px;
        line-height: 1;
    }

    .repair-heading-text {
        min-width: 0;
    }

    .repair-mobile-header h2 {
        margin: 0;
        color: #ffffff;
        font-size: 26px;
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: -0.4px;
    }

    .repair-mobile-header p {
        margin: 6px 0 0;
        color: #b9c9ff;
        font-size: 17px;
        line-height: 1.35;
        font-weight: 500;
    }

    .repair-menu-icon {
        display: inline-flex;
        flex-direction: column;
        gap: 5px;
        width: 30px;
        margin-left: auto;
        flex: 0 0 auto;
    }

    .repair-menu-icon span {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 999px;
        background: #ffffff;
    }

    .repair-cards {
        padding: 18px 16px 24px;
    }

    .repair-card {
        margin: 0 0 18px;
        padding: 20px;
        background: #ffffff;
        border: 1px solid #e2e7ef;
        border-radius: 18px;
        box-shadow: 0 10px 26px rgba(18, 29, 51, 0.08);
    }

    .repair-card:last-child {
        margin-bottom: 0;
    }

    .repair-card-title {
        display: flex;
        align-items: center;
        gap: 14px;
        padding-bottom: 16px;
        border-bottom: 1px solid #dfe5ed;
    }

    .repair-card-title h3 {
        margin: 0;
        color: #11162a;
        font-size: 24px;
        line-height: 1.2;
        font-weight: 800;
        letter-spacing: -0.2px;
    }

    .repair-card-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 12px 0;
        border-bottom: 1px solid #edf1f5;
    }

    .repair-card-row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .repair-card-row span {
        position: relative;
        padding-left: 24px;
        color: #161b2f;
        font-size: 17px;
        line-height: 1.3;
        font-weight: 600;
    }

    .repair-card-row span::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 9px;
        height: 14px;
        transform: translateY(-50%);
        border: 2px solid #9aa5bb;
        border-radius: 3px;
    }

    .repair-card-row strong {
        color: #ff3f16;
        font-size: 18px;
        line-height: 1.3;
        font-weight: 800;
        white-space: nowrap;
    }
}

@media (max-width: 380px) {
    .repair-mobile-view {
        border-radius: 18px;
    }

    .repair-mobile-header {
        padding: 24px 16px 26px;
        gap: 12px;
    }

    .repair-header-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .repair-mobile-header h2 {
        font-size: 22px;
    }

    .repair-mobile-header p {
        font-size: 15px;
    }

    .repair-cards {
        padding: 14px 12px 20px;
    }

    .repair-card {
        margin-bottom: 14px;
        padding: 16px;
        border-radius: 16px;
    }

    .repair-card-title h3 {
        font-size: 21px;
    }

    .repair-card-row span {
        font-size: 15px;
    }

    .repair-card-row strong {
        font-size: 16px;
    }
}