/* ========================================
   Блок «Услуги и цены» — Таблица с категориями слева
   ======================================== */

.dent-prices {
    width: 100%;
}

/* --- Табы (скрыты на десктопе) --- */
.dent-prices__tabs {
    display: none;
}

/* --- Шапка колонок --- */
.dent-prices__head {
    display: grid;
    grid-template-columns: 190px 1fr 120px 120px;
    gap: 0 20px;
    padding-bottom: 12px;
}

.dent-prices__head-col {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.dent-prices__head-col:nth-child(3),
.dent-prices__head-col:nth-child(4) {
    text-align: right;
}

/* --- Обёртка групп + вертикальная линия --- */
.dent-prices__body {
    position: relative;
}

.dent-prices__body::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 270px;
    border-left: 1px dashed #d0d0d0;
    pointer-events: none;
}

/* --- Группа: категория + список услуг --- */
.dent-prices__group {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 0 20px;
    border-bottom: 1px dashed #d0d0d0;
    padding: 20px 0;
}

.dent-prices__group:last-child {
    border-bottom: none;
}

/* --- Категория (левая колонка) --- */
.dent-prices__category {
    padding-top: 2px;
}

.dent-prices__category a {
    color: #1a7cfa;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 124, 250, 0.3);
    transition: color 0.2s, border-color 0.2s;
}

.dent-prices__category a:hover {
    color: #04bf68;
    border-color: #04bf68;
}

/* --- Список услуг (правая колонка) --- */
.dent-prices__services {
    display: flex;
    flex-direction: column;
}

/* --- Подкатегория (заголовок внутри правой колонки) --- */
.dent-prices__subcategory {
    padding: 14px 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    border-top: 1px solid #ececec;
    margin-top: 6px;
}

.dent-prices__subcategory:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.dent-prices__subcategory a {
    color: #1a7cfa;
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 124, 250, 0.25);
    transition: color 0.2s, border-color 0.2s;
}

.dent-prices__subcategory a:hover {
    color: #04bf68;
    border-color: #04bf68;
}

/* --- Строка услуги --- */
.dent-prices__row {
    display: grid;
    grid-template-columns: 1fr 120px 120px;
    gap: 0 20px;
    align-items: baseline;
    padding: 6px 0;
}

/* --- Название услуги --- */
.dent-prices__service {
    font-size: 18px;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    transition: color 0.2s, border-color 0.2s;
    width: fit-content;
    line-height: 1.5;
}

.dent-prices__service:hover {
    color: #04bf68;
    border-color: #04bf68;
}

/* --- Цены --- */
.dent-prices__our-price,
.dent-prices__avg-price {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    text-align: right;
    white-space: nowrap;
}

/* =========================
   Адаптив
   ========================= */
@media (max-width: 992px) {
    .dent-prices__head {
        grid-template-columns: 160px 1fr 100px 100px;
        gap: 0 12px;
    }

    .dent-prices__group {
        grid-template-columns: 160px 1fr;
        gap: 0 12px;
    }

    .dent-prices__row {
        grid-template-columns: 1fr 100px 100px;
        gap: 0 12px;
    }

    .dent-prices__body::before {
        right: 218px;
    }
}

@media (max-width: 768px) {
    /* Табы — показываем */
    .dent-prices__tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 16px;
    }

    .dent-prices__tab {
        padding: 8px 16px;
        border: 1px solid #d9d9d9;
        border-radius: 20px;
        background: #fff;
        color: #333;
        font-size: 14px;
        line-height: 1.3;
        cursor: pointer;
        transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .dent-prices__tab--active {
        background: #1a7cfa;
        color: #fff;
        border-color: #1a7cfa;
    }

    /* Шапка — убираем пустую колонку категории */
    .dent-prices__head {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 0 16px;
        padding-bottom: 8px;
    }

    .dent-prices__head-col:first-child {
        display: none;
    }

    .dent-prices__head-col {
        font-size: 16px;
    }

    /* Вертикальная линия — скрываем */
    .dent-prices__body::before {
        display: none;
    }

    /* Группы — только активная видна */
    .dent-prices__group {
        display: none;
        grid-template-columns: 1fr;
        padding: 0;
        border-bottom: none;
    }

    .dent-prices__group--active {
        display: block;
    }

    /* Категория — скрываем (заменена табами) */
    .dent-prices__category {
        display: none;
    }

    /* Подкатегория на мобильных */
    .dent-prices__subcategory {
        padding: 12px 0 4px;
        font-size: 15px;
    }

    /* Строки */
    .dent-prices__row {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 0 16px;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .dent-prices__row:last-child {
        border-bottom: none;
    }

    .dent-prices__service,
    .dent-prices__our-price,
    .dent-prices__avg-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .dent-prices__tab {
        padding: 6px 12px;
        font-size: 13px;
    }

    .dent-prices__head {
        display: none;
    }

    .dent-prices__row {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .dent-prices__our-price,
    .dent-prices__avg-price {
        text-align: left;
    }

    .dent-prices__our-price::before {
        content: 'Наша цена: ';
        font-weight: 400;
        color: #999;
        font-size: 14px;
    }

    .dent-prices__avg-price::before {
        content: 'Средняя: ';
        font-weight: 400;
        font-size: 14px;
    }
}
