.services-breadcrumb {
    padding: 15px 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    margin-bottom: 25px;
}

.wizard-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
}

    .wizard-breadcrumbs .breadcrumb-item {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
        color: var(--color-primary);
    }

        .wizard-breadcrumbs .breadcrumb-item a {
            color: inherit;
        }

            .wizard-breadcrumbs .breadcrumb-item a:hover {
                color: #a9a9a9;
            }

        .wizard-breadcrumbs .breadcrumb-item.hidden {
            display: none;
        }

        .wizard-breadcrumbs .breadcrumb-item.disabled {
            opacity: 0.65;
            cursor: not-allowed;
            pointer-events: none;
            color: #9ca3af;
        }

        .wizard-breadcrumbs .breadcrumb-item:hover {
            color: #a9a9a9;
        }

        .wizard-breadcrumbs .breadcrumb-item.completed {
            color: var(--color-primary);
        }

        .wizard-breadcrumbs .breadcrumb-item.active {
            color: #a9a9a9;
        }

    .wizard-breadcrumbs .breadcrumb-separator {
        color: #9ca3af;
        font-weight: 400;
    }

        .wizard-breadcrumbs .breadcrumb-separator.hidden {
            display: none;
        }

    .wizard-breadcrumbs .breadcrumb-label {
        font-size: 0.95rem;
        color: inherit;
        font-weight: inherit;
        line-height: 1.4;
    }

.services-step-header h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-card {
    border: 1px solid #e5e7eb;
    padding: 15px 14px;
    margin-bottom: 20px;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.18s ease-in-out;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
}

.service-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 18px rgba(194, 31, 36, 0.15);
    transform: translateY(-2px);
}

.service-card.selected {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(194, 31, 36, 0.18);
}

.service-card-title {
    font-weight: 600;
    color: #111827;
    font-size: 0.98rem;
    line-height: 1.4;
    height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card-desc {
    font-size: 0.86rem;
    color: #6b7280;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    height: 4.5em;
}

#serviceDetailFull p {
    margin-bottom: 0.5rem;
}

#serviceDetailFull ul, #serviceDetailFull ol {
    padding-left: 1.4rem;
}

#serviceDetailFilesList li + li {
    margin-top: 4px;
}

a.service-card {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.search-all-categories-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 10px 0 0 2px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #6b7280;
}

.service-card-breadcrumb {
    font-size: 0.8em;
    color: #9ca3af;
    line-height: 1.4;
    height: 1.4em;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Skeleton loading */
.skeleton-card {
    border: 1px solid #e5e7eb;
    padding: 15px 14px;
    margin-bottom: 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
}

.skeleton-line {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 4px;
}

.skeleton-title {
    height: 1rem;
    width: 70%;
    margin-bottom: 12px;
}

.skeleton-desc {
    height: 0.8rem;
    margin-bottom: 8px;
}

.skeleton-desc:last-child {
    width: 50%;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Kart tiklama animasyonu */
.service-card.navigating {
    opacity: 0.6;
    transform: scale(0.97);
    pointer-events: none;
}

/* Breadcrumb completed durumu gorsel farkliligi */
.wizard-breadcrumbs .breadcrumb-item.completed .breadcrumb-label::before {
    content: "\f00c";
    font-family: "FontAwesome";
    font-size: 0.7rem;
    margin-right: 4px;
    color: #16a34a;
}

@media only screen and (max-width: 767px) {
    .services-breadcrumb {
        padding: 12px 15px;
    }

    .wizard-breadcrumbs {
        gap: 5px;
    }

    .wizard-breadcrumbs .breadcrumb-label {
        font-size: 0.85rem;
    }

    .services-step-header h2 {
        font-size: 1.1rem;
    }

    .service-card-title {
        font-size: 0.9rem;
    }

    .service-card-desc {
        font-size: 0.82rem;
    }
}
