.provider-payment-instructions {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.provider-payment-instructions p {
    color: #555;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.provider-demo-note {
    background: #fff3cd;
    color: #856404;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.provider-demo-note i {
    color: #e0a800;
}

/**
 * Booking Wizard Styles
 *
 * @package ArvenaDoc
 * @since 1.0.0
 */

/* Wizard Container */
.booking-wizard-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

/* Progress Bar */
.wizard-progress {
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.progress-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #6cc3c6;
    color: #fff;
    transform: scale(1.1);
}

.progress-step.completed .step-number {
    background: #28a745;
    color: #fff;
}

.step-name {
    font-size: 12px;
    color: #666;
    text-align: center;
    word-wrap: break-word;
    max-width: 100px;
    line-height: 1.3;
}

.progress-step.active .step-name {
    color: #333;
    font-weight: 600;
}

.progress-connector {
    flex: 0 1 40px;
    min-width: 20px;
    max-width: 60px;
    height: 2px;
    background: #e9ecef;
    margin: 0 5px;
    align-self: flex-start;
    margin-top: 20px;
}

.progress-connector.completed {
    background: #28a745;
}

/* Wizard Content */
.wizard-content {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
}

.wizard-step-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.wizard-step-header h2 {
    font-size: 28px;
    color: #333;
    margin: 0 0 10px 0;
}

.step-description {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Doctor Selection */
.doctors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.doctor-card {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
}

.doctor-card:hover {
    border-color: #6cc3c6;
    background: #f0fffe;
}

.doctor-card input[type="radio"] {
    display: none;
}

.doctor-card input[type="radio"]:checked + .doctor-card-inner {
    border-left-color: #6cc3c6;
}

.doctor-card:has(input[type="radio"]:checked) {
    border-color: #6cc3c6;
    background: #f0fffe;
    box-shadow: 0 2px 8px rgba(108, 195, 198, 0.2);
}

.doctor-card-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.doctor-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-photo.no-photo {
    font-size: 32px;
    color: #999;
}

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

.doctor-info {
    flex: 1;
}

.doctor-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.doctor-specialty,
.doctor-languages {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.doctor-specialty i,
.doctor-languages i {
    color: #6cc3c6;
    margin-right: 5px;
}

/* Service Selection */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.service-option {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
}

.service-option:hover {
    border-color: #6cc3c6;
    background: #f0fffe;
}

.service-option input[type="radio"] {
    display: none;
}

.service-option:has(input[type="radio"]:checked) {
    border-color: #6cc3c6;
    background: #f0fffe;
    box-shadow: 0 2px 8px rgba(108, 195, 198, 0.2);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.service-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.service-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.service-meta i {
    color: #6cc3c6;
}

.service-price {
    font-weight: 600;
    color: #333;
}

.service-description {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Calendar */
.calendar-container {
    margin-bottom: 30px;
}

.week-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.week-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--enfold-main-color-secondary);
    background: white;
    color: var(--enfold-main-color-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.week-nav-btn:hover {
    background: var(--enfold-main-color-secondary);
    color: white;
    transform: scale(1.1);
}

.week-nav-btn:active {
    transform: scale(0.95);
}

.current-week-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.calendar-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.calendar-day {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.calendar-day:not(.past):not(.selected):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.calendar-day.available {
    border-color: #28a745;
    background: #f0fff4;
}

.calendar-day.unavailable {
    border-color: #e9ecef;
    background: #f8f9fa;
    opacity: 0.6;
}

.calendar-day.past {
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-day.today .day-name,
.calendar-day.today .day-number {
    color: var(--enfold-main-color-secondary);
    font-weight: 600;
}

.calendar-day.selected {
    box-shadow: 0 0 0 2px #ffc107;
}

.day-header {
    margin-bottom: 10px;
}

.day-name {
    display: block;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

.day-number {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.view-slots-btn {
    display: none;
}

.not-available-label {
    font-size: 11px;
    color: #999;
    display: block;
    margin-top: 5px;
}

/* Time Slots */
#time-slots-container {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.selected-date-title {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* No Slots Message */
#no-slots-message {
    margin-top: 30px;
}

#no-slots-message .empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

#no-slots-message .empty-icon {
    font-size: 64px;
    color: #adb5bd;
    margin-bottom: 20px;
}

#no-slots-message .empty-state h4 {
    font-size: 20px;
    color: #495057;
    margin-bottom: 10px;
    font-weight: 600;
}

#no-slots-message .empty-state p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.time-slot-btn {
    padding: 12px;
    text-align: center;
    font-size: 14px;
    transition: all 0.2s ease;
}

.time-slot-btn.selected {
    background: var(--enfold-main-color-secondary) !important;
    color: white !important;
    border-color: var(--enfold-main-color-secondary) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.time-slot-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Disabled wizard navigation buttons */
.wizard-next:disabled,
.wizard-next.disabled,
button.button-primary:disabled,
a.button-primary.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #ccc !important;
    border-color: #ccc !important;
    color: #666 !important;
}

.slot-status {
    font-size: 11px;
    display: block;
    margin-top: 3px;
}

/* Payment */
.hold-timer-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    color: #856404;
    font-weight: 500;
}

/* Payment Timer Notice */
.payment-timer-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.payment-timer-notice.hold-timer {
    background: #fff7ed;
    border-color: #f97316;
}

.payment-timer-notice i {
    font-size: 18px;
    color: #2563eb;
}

.payment-timer-notice .timer-text {
    flex: 1;
    color: #0c5460;
    font-weight: 500;
    font-size: 15px;
}

.payment-timer-notice .timer-countdown {
    font-size: 20px;
    font-weight: 700;
    color: #0c5460;
    font-family: 'Courier New', monospace;
    min-width: 60px;
    text-align: right;
}

/* Timer Warning State (< 2 minutes) */
.payment-timer-notice.timer-warning {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.payment-timer-notice.timer-warning i,
.payment-timer-notice.timer-warning .timer-text,
.payment-timer-notice.timer-warning .timer-countdown {
    color: #856404;
}

/* Timer Critical State (< 1 minute) */
.payment-timer-notice.timer-critical {
    border-color: #dc2626;
    background: #fef2f2;
    animation: pulse 1s ease-in-out infinite;
}

.payment-timer-notice.timer-critical i,
.payment-timer-notice.timer-critical .timer-text,
.payment-timer-notice.timer-critical .timer-countdown {
    color: #721c24;
}

/* Timer Expired State */
.payment-timer-notice.timer-expired {
    background: #e2e3e5;
    border-left-color: #6c757d;
}

.payment-timer-notice.timer-expired i,
.payment-timer-notice.timer-expired .timer-text,
.payment-timer-notice.timer-expired .timer-countdown {
    color: #383d41;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Payment Container */
/* Payment Expired Notice */
.payment-expired-notice {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    margin-bottom: 30px;
}

.payment-expired-notice i {
    font-size: 64px;
    color: #6c757d;
    margin-bottom: 20px;
}

.payment-expired-notice h3 {
    font-size: 24px;
    color: #495057;
    margin: 0 0 15px 0;
}

.payment-expired-notice p {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

/* Payment Cancelled Notice */
.payment-cancelled-notice {
    text-align: center;
    padding: 40px 20px;
    background: #fff3cd;
    border: 2px dashed #ffc107;
    border-radius: 8px;
    margin-bottom: 30px;
}

.payment-cancelled-notice i {
    font-size: 64px;
    color: #856404;
    margin-bottom: 20px;
}

.payment-cancelled-notice h3 {
    font-size: 24px;
    color: #856404;
    margin: 0 0 15px 0;
}

.payment-cancelled-notice p {
    color: #856404;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.appointment-summary {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.appointment-summary h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #333;
    font-weight: 600;
}

.summary-label {
    color: #666;
}

.summary-value {
    color: #333;
    font-weight: 500;
}

.summary-value.price {
    color: #6cc3c6;
    font-size: 20px;
}

.payment-placeholder {
    padding: 20px;
    border: 2px dashed #e9ecef;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
}

.notice-info {
    color: #004085;
    background: #cce5ff;
    border: 1px solid #b8daff;
    padding: 15px;
    border-radius: 4px;
}

/* Confirmation */
.confirmation-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 64px;
    color: #28a745;
    margin-bottom: 20px;
}

.confirmation-success h2 {
    font-size: 32px;
    color: #333;
    margin: 0 0 15px 0;
}

.success-message {
    font-size: 16px;
    color: #666;
}

.appointment-details-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.appointment-details-card h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
}

.detail-row {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row i {
    font-size: 20px;
    color: #6cc3c6;
    width: 25px;
    text-align: center;
}

.detail-row > div {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 3px;
}

.detail-value {
    display: block;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.confirmation-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Wizard Navigation */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.wizard-navigation .button {
    min-width: 150px;
}

/* Payment method selection (step 5) */
.payment-method-selection {
    margin-top: 30px;
    padding: 24px;
    border: 1px solid #e5e9f2;
    border-radius: 10px;
    background: #f9fbff;
}

.payment-method-selection h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #1e2a3b;
}

.payment-method-selection .description {
    margin-bottom: 18px;
    color: #5f6b7a;
    font-size: 14px;
}

.payment-method-empty {
    margin: 0;
    background: #fff2cc;
    border: 1px solid #ffda7b;
    border-radius: 6px;
    padding: 14px 16px;
    color: #856404;
    font-size: 14px;
}

.payment-method-info {
    padding: 12px 16px;
    background: #f1f5f9;
    border: 1px solid #cbd5f5;
    border-radius: 4px;
    color: #334155;
    margin-bottom: 15px;
}

.wizard-notice {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-left: 4px solid #cbd5f5;
    background: #f8fafc;
    border-radius: 4px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.wizard-notice i {
    font-size: 20px;
    margin-top: 2px;
}

.wizard-notice-error {
    border-left-color: #dc2626;
    background: #fef2f2;
    color: #7f1d1d;
}

.wizard-notice-error i {
    color: #dc2626;
}

.wizard-notice-code {
    font-size: 0.85em;
    margin-top: 6px;
    opacity: 0.8;
}

.payment-method-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.payment-method-option {
    border: 1px solid #d9e2ef;
    border-radius: 8px;
    padding: 16px 18px;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.payment-method-option:hover {
    border-color: #6cc3c6;
    box-shadow: 0 6px 16px rgba(108, 195, 198, 0.15);
}

.payment-method-option.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.payment-method-option label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.payment-method-option input[type="radio"] {
    accent-color: #6cc3c6;
}

.payment-method-option label input[type="radio"] {
    margin-top: 4px;
}

.method-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1e2a3b;
    font-size: 15px;
}

.method-name {
    flex: 1;
}

.method-fee {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(108, 195, 198, 0.12);
    color: #3a8a8f;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.method-description,
.method-provider,
.method-notice {
    margin: 4px 0 0;
    font-size: 13px;
    color: #596273;
}

.method-provider {
    font-style: italic;
}

.method-instructions {
    text-align: left;
    margin-top: 10px;
    font-size: 13px;
    color: #434c5d;
    background: #f3f7ff;
    border-left: 3px solid #6cc3c6;
    padding: 10px 14px;
    border-radius: 6px;
    line-height: 1.55;
}

.method-instructions p {
    margin: 0 0 8px;
}

.method-instructions p:last-child {
    margin-bottom: 0;
}

.confirmation-step .method-instructions {
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    padding: 12px 16px;
    margin: 16px 0;
    border-radius: 4px;
    color: #0f172a;
}

.confirmation-step.pending-payment .awaiting-payment {
    text-align: center;
    margin-bottom: 20px;
}

.confirmation-step.pending-payment .pending-icon {
    font-size: 48px;
    color: #f59e0b;
    margin-bottom: 10px;
}

.confirmation-step.payment-failed .arvena-error {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .payment-method-selection {
        padding: 20px;
    }

    .payment-method-option {
        padding: 14px;
    }

    .method-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .progress-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .progress-step {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        text-align: left;
        gap: 15px;
    }
    
    .step-number {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .step-name {
        font-size: 14px;
        text-align: left;
        max-width: none;
        flex: 1;
    }
    
    .progress-connector {
        display: none;
    }
    
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    
    .doctor-card-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .calendar-week {
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
    }
    
    .day-number {
        font-size: 18px;
    }
    
    .view-slots-btn {
        font-size: 10px;
        padding: 5px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wizard-navigation {
        flex-direction: column;
    }
}

