.info-account__body span {
    color: #FFFFFF;
}

/* Appointment confirmation popup styles */
#appointment-confirmation .popup__doctor-name {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0;
    color: #160728;
}

#appointment-confirmation .popup__doctor-about {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

#appointment-confirmation .popup__appointment-time {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #160728;
}

#confirm-appointment-btn {
    width: auto;
    min-width: 200px;
}

/* Consultation Settings Styles */
.config-settings__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    align-items: stretch;
}

.config-settings__row .config-settings__item {
    height: 100%;
}

.config-settings__item {
    border-radius: 12px;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    /* iOS Safari fix - предотвращаем расширение при взаимодействии */
    contain: layout;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.item-config__wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item-config__wrapper {
    width: 100%;
}

.item-config__title {
    font-size: 18px;
    font-weight: 600;
    color: #160728;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-config__icon-right {
    color: #160728;
    opacity: 0.7;
}

.item-config__text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.item-config__text p {
    margin: 0;
}

.item-config__icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.item-config__icon.correct {
    background: #28a745;
    color: white;
}

.item-config__icon.error {
    background: #dc3545;
    color: white;
}

.item-config__status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.status-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.status-icon.correct {
    background: #28a745;
    color: white;
}

.status-icon.error {
    background: #dc3545;
    color: white;
}

.status-text {
    font-size: 14px;
    color: #666;
}

.item-config__video {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    margin: 15px 0;
}

.item-config__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-config__controls {
    margin-top: 15px;
}

/* Consultation Settings Button Styles */
.config-settings .btn {
    background: #f4c210;
    border-radius: 39px;
    padding: 20px 34px;
    color: #160728;
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    /* iOS Safari fix - отключаем нативные стили и поведение */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
    outline: none;
    /* Предотвращаем изменение размеров */
    flex-shrink: 0;
    box-sizing: border-box;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.config-settings .btn:focus {
    outline: none;
    /* Предотвращаем визуальные изменения при фокусе на iOS */
    -webkit-tap-highlight-color: transparent;
}

.config-settings .btn:active {
    /* Предотвращаем "прыжки" при клике */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.config-settings .btn:hover {
    opacity: 0.8;
}

.config-settings .btn-primary {
    background: #f4c210;
    color: #160728;
    width: 100%;
    margin: 15px 0;
}

.config-settings .btn-primary:hover {
    opacity: 0.8;
}

.config-settings .btn-large {
    padding: 20px 34px;
    font-size: 16px;
    width: 100%;
    margin: 15px 0;
}

.config-settings .btn-secondary {
    background: #f4c210;
    color: #160728;
    border: none;
    padding: 20px 34px;
    border-radius: 39px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.config-settings .btn-secondary:hover {
    opacity: 0.8;
}

.config-settings .btn-small {
    padding: 15px 25px;
    font-size: 14px;
}

.audio-level-indicator {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 40px;
    width: 100%;
    margin: 15px 0;
    justify-content: center;
}

.level-bar {
    width: 8px;
    background: #ddd;
    border-radius: 2px;
    transition: background-color 0.1s;
}

.level-bar.active {
    background: #e91e63;
}

.level-bar:nth-child(1) { height: 8px; }
.level-bar:nth-child(2) { height: 12px; }
.level-bar:nth-child(3) { height: 16px; }
.level-bar:nth-child(4) { height: 20px; }
.level-bar:nth-child(5) { height: 24px; }
.level-bar:nth-child(6) { height: 28px; }
.level-bar:nth-child(7) { height: 32px; }
.level-bar:nth-child(8) { height: 36px; }

.consultation-info {
    margin: 15px 0;
    padding: 10px;
    background: #e3f2fd;
    border-radius: 6px;
}

.consultation-info-text {
    font-size: 14px;
    color: #1976d2;
    margin: 0;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #160728;
    margin-bottom: 5px;
}

.form-calendar__input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

.consultation-formats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.check-pet-set {
    display: flex;
    align-items: center;
}

.check-pet-profile__label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #160728;
}

.check-pet-profile__label input[type="radio"] {
    display: none;
}

.checkbox.radio {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    transition: border-color 0.3s;
}

.check-pet-profile__label input[type="radio"]:checked + .checkbox.radio {
    border-color: #e91e63;
}

.check-pet-profile__label input[type="radio"]:checked + .checkbox.radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #e91e63;
    border-radius: 50%;
}

.camera-help-link,
.audio-help-link,
.microphone-help-link {
    color: #e91e63;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin: 10px 0;
}

.camera-help-link:hover,
.audio-help-link:hover,
.microphone-help-link:hover {
    text-decoration: underline;
}

/* iOS Safari специфичные фиксы */
/* Применяется только для iOS Safari */
@supports (-webkit-touch-callout: none) {
    .config-settings__item {
        /* Жесткая фиксация размеров для iOS */
        min-height: auto;
        height: auto;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: auto;
    }
    
    .config-settings .btn {
        /* Дополнительная изоляция для кнопок на iOS */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: auto;
        position: relative;
        z-index: 1;
    }
    
    .config-settings .btn:active {
        /* Полностью отключаем визуальные эффекты при клике */
        opacity: 0.8;
        transform: none;
        -webkit-transform: none;
    }
    
    .item-config__video video {
        /* Предотвращаем изменение размеров видео на iOS */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .config-settings__row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .item-config__wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .item-config__video {
        width: 100%;
        height: 200px;
        margin-left: 0;
        margin-top: 15px;
    }

    .consultation-formats {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .config-settings__item {
        padding: 15px;
    }

    .item-config__title {
        font-size: 16px;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Empty doctors list styles */
.doctors__empty {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 40px 20px;
}

.doctors__empty-content {
    text-align: center;
    max-width: 500px;
}

.doctors__empty-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.doctors__empty-title {
    font-size: 24px;
    font-weight: 600;
    color: #160728;
    margin-bottom: 16px;
    line-height: 1.3;
}

.doctors__empty-text {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 24px;
}

.doctors__empty .btn {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .doctors__empty {
        min-height: 300px;
        padding: 30px 15px;
    }

    .doctors__empty-title {
        font-size: 20px;
    }

    .doctors__empty-text {
        font-size: 14px;
    }
}

.item-config__video {
    padding: 0 !important;
}

.appoint__table-notice {
    text-align: left;
    /*font-size: 14px;*/
    font-weight: 500;
    /*color: #FFFFFF;*/
}

.video-select {
    margin-bottom: 30px;
    display: none;
}

.settings-btn {
    padding-top: 30px;
}

.no-available-days {
    width: 320px;
    font-size: 18px;
    font-weight: 500;
}

/* Custom CSS for calendar */
.fc-event-title {
    white-space: normal !important;
    word-wrap: break-word;
    overflow: visible !important;
}

.fc-event-time {
    display: none;
}

.fc-toolbar-title {
    font-size: 16px !important;
    font-weight: bold;
}

.popover {
    max-width: 300px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    z-index: 10000;
}

.popover-header {
    background-color: #F4C211;
    border-bottom: 1px solid #dee2e6;
    color: #495057;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.popover-body {
    color: #212529;
    padding: 0.75rem;
    font-size: 0.9rem;
    line-height: 20px;
    padding: 15px;
    z-index: 10000;
}

.popover .arrow::before {
    border-top-color: #dee2e6;
}

.popover .arrow::after {
    border-top-color: #f8f9fa;
}

.popover:hover {
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.25);
}

.specialists-list {
    margin-top: 5px;
}

.specialists-list a {
    color: #F4C211;
}

/** Custom CSS for doctors and specializations */
.doctors__filter {
    margin-bottom: 30px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid;
    padding-bottom: 25px;
}

.filter-scrollable {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 10px; /* Space for scrollbar */
    scrollbar-width: thin;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.filter-scrollable::-webkit-scrollbar {
    height: 4px;
}

.filter-scrollable::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.filter-scrollable::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.filter-scrollable .btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 20px 34px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.filter-scrollable .btn:hover {
    background-color: #F4C210;
    color: #000;
    /*border: none;*/
}

.filter-scrollable .btn.active {
    background-color: #F4C210;
    color: #000;
    border: none;
}

/* Doctor specialization tags */
.card-doctor__specializations {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
    padding: 0 15px;
}

.card-doctor__tag {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 12px;
    color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
    .doctors__filter {
        margin-bottom: 20px;
    }

    .filter-scrollable .btn {
        padding: 15px 24px;
        font-size: 14px;
    }

    .card-doctor__tag {
        font-size: 11px;
        padding: 2px 6px;
    }
}

.doctors__no-results {
    width: 100%;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
}

.products-section {
    width: 100%;
    margin-bottom: 30px;
}

.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

.product-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.product-item h4 {
    margin: 0 0 10px;
    font-size: 18px;
}

.product-item .price {
    font-size: 20px;
    font-weight: bold;
    color: #f4c210;
    margin: 0;
}

.selected-product-section {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 15px;
}

.selected-product {
    background: #f1f1f1;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.selected-product h4 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.selected-product .price {
    font-size: 16px;
    /*color: #f4c210;*/
    margin-top: 10px;
}

.selected-time-section {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 15px;
}

.selected-time-notice {
    background: #FFF9E6;
    border: 1px solid #F4C210;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 16px;
    color: #160728;
}

.selected-time-notice strong {
    color: #160728;
    font-weight: 600;
}

.schedule-section {
    width: 100%;
}

@media (max-width: 768px) {
    .products-list {
        grid-template-columns: 1fr;
    }

    .selected-product-section {
        padding: 0 10px;
    }

    .selected-time-section {
        padding: 0 10px;
    }
}

/* Стили для блока врачей на странице продукта */
.page__plan + .page__doctors {
    margin-top: 40px;
}

.page__plan + .page__doctors .doctors__container {
    padding-top: 0;
}

.page__plan + .page__doctors .doctors__title {
    margin-bottom: 30px;
}

.doctors__title--small {
    font-size: 24px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

@media (max-width: 768px) {
    .doctors__title--small {
        font-size: 20px !important;
    }
}


.doc-timetable__content {
    display: flex;
    gap: 30px;
    width: 100%;
}

.doc-timetable__left {
    flex: 0 0 400px;
}

.doc-timetable__right {
    flex: 1;
}

.doc-timetable__datepicker {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.doc-timetable__appoint {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 100%;
}

@media (max-width: 992px) {
    .doc-timetable__content {
        flex-direction: column;
    }

    .doc-timetable__left {
        flex: 0 0 auto;
        width: 100%;
    }
}

/**
Cabinet CSS
 */

.account-packages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.package-card {
    background: #fff;
    /*border-radius: 12px;*/
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.package-header {
    background: #f4c210;
    color: black;
    padding: 16px 20px;
    text-align: center;
}

.package-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.package-body {
    padding: 20px;
}

.consultation-info, .validity-info {
    margin-bottom: 20px;
}

.info-value {
    font-size: 28px;
    font-weight: 700;
    color: #240046;
    margin-bottom: 4px;
}

.info-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.progress-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 8px;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #5a189a, #7b2cbf);
    border-radius: 3px;
}

.validity-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.empty-packages {
    background: #160728;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 40px 20px;
    text-align: center;
    color: #fff;
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.empty-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.empty-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.btn-primary {
    background: #f4c210;
    color: black;
    padding: 20px 34px;
    border-radius: 39px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.btn-primary:hover {
    opacity: 0.8;
}

/**
Terms Notice CSS
 */

.terms-notice {
    margin-top: 20px;
    font-size: 11px;
    line-height: 140%;
    color: #160728;
}

.terms-notice a {
    color: #160728;
    text-decoration: underline;
}

.form-errors {
    color: #ff0000;
    /*font-size: 14px;*/
    margin-top: 10px;
    background-color: rgba(255, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 20px;
}

.form-errors ul {
    list-style-type: circle;
    padding-top: 10px;
    margin: 0;
}

.form-errors li {
    margin-bottom: 5px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    padding: 15px;
    margin-bottom: 20px;
}

.empty-history {
    margin-top: 40px;
}

.consultation-action__msg {
    margin-bottom: 20px;
}

/* Responsive filter buttons for doctors specializations */
.doctors__filter-buttons {
    display: flex;
    gap: 10px;
    padding-bottom: 10px;
}

/* Desktop styles - buttons wrap to new lines */
@media (min-width: 769px) {
    .doctors__filter-buttons {
        flex-wrap: wrap;
        overflow: visible;
    }
}

/* Mobile styles - horizontal scroll */
@media (max-width: 768px) {
    .doctors__filter-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .doctors__filter-buttons::-webkit-scrollbar {
        height: 4px;
    }

    .doctors__filter-buttons::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }

    .doctors__filter-buttons::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }
}

.doctors__filter-buttons .btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 20px 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.doctors__filter-buttons .btn:hover {
    background-color: #F4C210;
    color: #000;
}

.doctors__filter-buttons .btn.active {
    background-color: #F4C210;
    color: #000;
    border: none;
}

/* Mobile responsive button styles */
@media (max-width: 768px) {
    .doctors__filter-buttons .btn {
        padding: 15px 24px;
        font-size: 14px;
        margin-right: 10px;
    }
}

/* ========================================
   Стили для списка врачей с расписанием
   ======================================== */

.doctors__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.doctor-list-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.doctor-list-item:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.doctor-list-item__wrapper {
    display: flex;
    gap: 40px;
    padding: 30px;
}

/* Левая часть: информация о враче */
.doctor-list-item__info {
    display: flex;
    gap: 24px;
    flex: 0 0 400px;
}

.doctor-list-item__photo {
    flex-shrink: 0;
}

.doctor-list-item__img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.doctor-list-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-list-item__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.doctor-list-item__name {
    font-size: 24px;
    font-weight: 600;
    color: #160728;
    margin: 0;
    line-height: 1.3;
}

.doctor-list-item__name a {
    color: inherit;
}

.doctor-list-item__specialization {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.doctor-list-item__actions {
    margin-top: auto;
}

.doctor-list-item__btn-about {
    padding: 12px 24px;
    font-size: 14px;
    background-color: transparent;
    color: #160728;
    border: 1px solid #160728;
    transition: all 0.3s ease;
}

.doctor-list-item__btn-about:hover {
    background-color: #F4C210;
    color: #000;
    border-color: #F4C210;
}

/* Правая часть: расписание */
.doctor-list-item__schedule {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    min-width: 0;
}

.doctor-list-item__schedule-title {
    font-size: 18px;
    font-weight: 600;
    color: #160728;
    margin: 0;
}

/* Слайдер дат */
.doctor-list-item__days {
    display: flex;
    align-items: center;
    gap: 12px;
}

.doctor-list-item__days-prev,
.doctor-list-item__days-next {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.doctor-list-item__days-prev:hover,
.doctor-list-item__days-next:hover {
    background: #F4C210;
    border-color: #F4C210;
    color: #000;
}

.doctor-list-item__days-prev:disabled,
.doctor-list-item__days-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.doctor-list-item__days-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.doctor-list-item__days-track {
    display: flex;
    gap: 8px;
    transition: transform 0.3s ease;
}

.doctor-list-item__day {
    flex: 0 0 auto;
    width: 60px;
    padding: 12px 8px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.doctor-list-item__day:hover {
    border-color: #F4C210;
    background: #FFF9E6;
}

.doctor-list-item__day.active {
    background: #F4C210;
    border-color: #F4C210;
    color: #000;
}

.doctor-list-item__day-weekday {
    display: block;
    font-size: 11px;
    color: #999;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.doctor-list-item__day.active .doctor-list-item__day-weekday {
    color: #000;
}

.doctor-list-item__day-number {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #160728;
}

.doctor-list-item__days-loading {
    text-align: center;
    color: #999;
    font-size: 14px;
    padding: 12px;
}

/* Временные слоты */
.doctor-list-item__time-slots {
    width: 100%;
}

.doctor-list-item__time-slots-content {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
}

.doctor-list-item__time-slot {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 80px;
    flex: 0 0 auto;
}

.doctor-list-item__time-slot:hover {
    border-color: #F4C210;
    background: #FFF9E6;
}

.doctor-list-item__time-slot.active {
    background: #F4C210;
    border-color: #F4C210;
    color: #000;
}

.doctor-list-item__time-notice {
    color: #999;
    font-size: 14px;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .doctor-list-item__wrapper {
        gap: 30px;
    }

    .doctor-list-item__info {
        flex: 0 0 350px;
    }
}

@media (max-width: 992px) {
    .doctor-list-item__wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .doctor-list-item__info {
        flex: 1;
    }

    .doctor-list-item__schedule {
        border-top: 1px solid #eee;
        padding-top: 24px;
    }
}

@media (max-width: 768px) {
    .doctors__list {
        gap: 20px;
        margin-top: 30px;
    }

    .doctor-list-item__wrapper {
        padding: 20px;
    }

    .doctor-list-item__info {
        flex-direction: column;
        gap: 16px;
    }

    .doctor-list-item__photo {
        align-self: center;
    }

    .doctor-list-item__name {
        font-size: 20px;
        text-align: center;
    }

    .doctor-list-item__specialization {
        text-align: center;
    }

    .doctor-list-item__actions {
        text-align: center;
    }

    .doctor-list-item__day {
        width: 50px;
        padding: 10px 6px;
    }

    .doctor-list-item__day-number {
        font-size: 16px;
    }

    .doctor-list-item__time-slot {
        padding: 8px 16px;
        min-width: 70px;
        font-size: 13px;
    }
}
