.breadcrumb {
    padding: 1.5rem 0;
    color: var(--light-text);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-color);
}

.breadcrumb i {
    font-size: 0.7rem;
    margin: 0 0.5rem;
}

.service-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Filters */
.filters {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-color);
}

.filter-group input {
    margin-right: 0.5rem;
}

/* Service List */
.service-list h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.category-desc {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
}

.service-img {
    width: 200px;
    height: 150px;
    border-radius: var(--border-radius);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.service-info {
    flex-grow: 1;
}

.service-info h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.rating-badge {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rating-badge i {
    color: #ffc107;
}

.service-info .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.features {
    margin-bottom: 1.5rem;
}

.features li {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0.25rem;
}

.features li i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .service-layout {
        grid-template-columns: 1fr;
    }

    .filters {
        display: none;
        /* Hide filters on mobile for now */
    }

    .service-item {
        flex-direction: column;
    }

    .service-img {
        width: 100%;
        height: 200px;
    }
}