.appointment-widget {
    background: #ffffff;
    padding: 50px 0 80px;
}

.appointment-widget__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.appointment-widget__header {
    margin-bottom: 40px;
}

.appointment-widget__title {
    text-align: center;
    margin-bottom: 30px;
}

.appointment-widget__progress {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    margin: 0 auto;
    max-width: 520px;
}

.appointment-widget__progress::before {
    content: '';
    position: absolute;
    top: 23px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: #e5e7eb;
    z-index: 1;
}

.appointment-widget__progress::after {
    content: '';
    position: absolute;
    top: 23px;
    left: 50px;
    width: 33%;
    height: 4px;
    background: #f97316;
    z-index: 2;
}

.appointment-widget__step {
    text-align: center;
    position: relative;
    z-index: 3;
}

.appointment-widget__step span {
    display: block;
    width: 46px;
    height: 46px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.appointment-widget__step--active span {
    background: #f97316;
    color: #fff;
}

/* Doctor Card */
.appointment-widget__doctor {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.appointment-widget__photo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.appointment-widget__info h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

/* Content */
.appointment-widget__content {
    min-height: 300px;
}

/* Button */
.appointment-widget__footer {
    margin-top: 50px;
    text-align: center;
}

.appointment-widget__btn {
    min-width: 320px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Time slots */
.time-slot {
    padding: 14px 10px;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.time-slot:hover {
    border-color: #f97316;
    transform: translateY(-2px);
}

.time-slot.active {
    background-color: #1e2937;
    color: white;
    border-color: #1e2937;
}

/* Адаптив */
@media (max-width: 768px) {
    .appointment-widget__doctor {
        flex-direction: column;
        text-align: center;
    }

    .appointment-widget__photo img {
        margin: 0 auto;
    }

    .appointment-widget__progress {
        gap: 30px;
    }

    .appointment-widget__progress::before,
    .appointment-widget__progress::after {
        left: 30px;
        right: 30px;
    }
}