body {
    margin: 0;
    padding: 0;
    background-color: #000;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-image: url('/static/default/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 15px;
}

.category-block {
    position: relative;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* затемнение поверх background */
.category-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

/* всё остальное поверх фильтра */
.category-title,
.type-title,
.service-item {
    position: relative;
    z-index: 1;
}

.category-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px #000;
}

.type-title {
    font-size: 1.2em;
    margin: 20px 0 10px;
    font-weight: 500;
    color: #ccc;
    text-transform: lowercase;
}

.service-item {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 12px;
    transition: background-color 0.2s ease;
    backdrop-filter: blur(6px);
}

.service-item:hover {
    background-color: rgba(255,255,255,0.08);
}

.service-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-right: 16px;
    flex-shrink: 0;
}

.service-text {
    display: flex;
    flex-direction: column;
    font-size: 0.95em;
    color: #fff;
}

.service-text .name {
    font-weight: 500;
    margin-bottom: 4px;
}

.service-text .price {
    font-size: 0.85em;
    color: #aaa;
}

/* Адаптивность */
@media (max-width: 600px) {
    .container {
        padding: 20px 10px;
    }

    .service-img {
        width: 48px;
        height: 48px;
    }

    .service-text {
        font-size: 0.9em;
    }
}