/* ============================================================
   service_prices.css — стилове за страницата с ценова листа
   (service_prices.php)
   ============================================================ */

/* Основен контейнер */
.sp_wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 30px 15px 60px;
}

/* Разстояние под заглавието */
.sp_wrap .page_heading {
    margin-bottom: 28px;
}

/* Уводен текст */
.sp_intro {
    max-width: 760px;
    margin: 0 auto 32px;
    color: #4a4a4a;
    line-height: 1.6;
    font-size: 14px;
    text-align: center;
}

/* Категория-секция */
.sp_category {
    max-width: 760px;
    margin: 0 auto 36px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* Заглавна лента на категорията */
.sp_category_heading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #c71d2c;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.sp_category_heading i {
    font-size: 17px;
    opacity: 0.9;
}

/* Ценова таблица */
.sp_table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.sp_table thead tr {
    background: #f7f7f7;
    border-bottom: 2px solid #e0e0e0;
}

.sp_table thead th {
    padding: 10px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sp_table thead th:last-child {
    text-align: right;
    white-space: nowrap;
}

.sp_table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}

.sp_table tbody tr:last-child {
    border-bottom: none;
}

.sp_table tbody tr:hover {
    background: #fdf5f5;
}

.sp_table tbody td {
    padding: 11px 16px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* Колона с цената — вдясно */
.sp_table tbody td.sp_price {
    text-align: right;
    white-space: nowrap;
    font-weight: 600;
    color: #c71d2c;
}

/* BGN под EUR — по-малък, сив */
.sp_bgn {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #888;
    margin-top: 2px;
}

/* Забележки под таблицата */
.sp_notes {
    max-width: 760px;
    margin: -20px auto 32px;
    padding: 0 4px;
    color: #888;
    font-size: 12px;
    line-height: 1.8;
}

/* CTA бутон */
.sp_cta {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0 10px;
}

.sp_cta a {
    display: inline-block;
    padding: 14px 36px;
    background: #c71d2c;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.sp_cta a:hover {
    background: #a71421;
    color: #fff;
}

/* Мобилна адаптация */
@media (max-width: 767px) {
    .sp_wrap {
        padding: 20px 10px 40px;
    }

    .sp_category_heading {
        font-size: 14px;
        padding: 12px 14px;
    }

    .sp_table tbody td,
    .sp_table thead th {
        padding: 9px 10px;
        font-size: 13px;
    }

    .sp_table tbody td.sp_price {
        min-width: 90px;
    }
}
