/**
 * Nutnut 美甲預約系統 - 極簡風格
 * 完全按照截圖設計
 */

/* ==================== 基礎重置 ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* 配色 - 按照截圖 */
  --primary-color: #4A4036;
  --bg-color: #F5F2EA;
  --accent-gold: #D4A373;
  --neutral-gray: #C2BDB6;
  --light-bg: #E5E0D5;
  --text-primary: #4A4036;
  --text-secondary: rgba(74, 64, 54, 0.6);
  --text-hint: rgba(74, 64, 54, 0.4);
  --text-inverse: #F5F2EA;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue',
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  background: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 430px;
  margin: 0 auto;
  background: var(--bg-color);
  min-height: 100vh;
}

/* ==================== 頂部區域 ==================== */
header {
  background: var(--bg-color);
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid rgba(74, 64, 54, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
  /* 防止抖動 */
  will-change: transform;
}

.header-content {
  position: relative;
  margin-bottom: 8px;
}

.back-button {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text-primary);
}

.logo-container {
  text-align: center;
}

.logo {
  height: 40px;
  object-fit: contain;
}

/* 步驟指示器 - 3個圓點 + 連接線 */
.step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 12px;
  padding: 0 16px;
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D4D4D4;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.step-dot.active {
  background: #4A4036;
  transform: scale(1.1);
}

.step-line {
  width: 24px;
  height: 1px;
  background: #D4D4D4;
  margin: 0 4px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.step-line.active {
  background: #4A4036;
}

/* 測試徽章 */
.test-mode-badge {
  background: var(--accent-gold);
  color: var(--text-primary);
  text-align: center;
  padding: 8px;
  font-size: 11px;
  font-weight: 700;
}

/* ==================== 用戶卡片 ==================== */
.user-card {
  margin: 8px 16px 16px;
  padding: 16px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(74, 64, 54, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(74, 64, 54, 0.08);
}

.user-info-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(212, 163, 115, 0.3);
  padding: 2px;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-welcome {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.user-name {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 14px;
}

.user-points {
  background: var(--primary-color);
  color: var(--text-inverse);
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: serif;
}

/* ==================== 分類按鈕 ==================== */
.category-bar {
  padding: 8px 16px;
  position: sticky;
  top: 77px;
  background: var(--bg-color);
  z-index: 40;
  border-bottom: 1px solid rgba(74, 64, 54, 0.05);
}

.category-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-btn {
  white-space: nowrap;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-family: serif;
  letter-spacing: 0.02em;
  border: 1px solid rgba(74, 64, 54, 0.3);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s;
}

.category-btn.active {
  background: var(--primary-color);
  color: var(--text-inverse);
  border-color: var(--primary-color);
}

/* ==================== 視圖容器 ==================== */
.view {
  padding: 16px;
  padding-bottom: 120px; /* 增加底部空間，避免被固定欄遮擋 */
  /* 防止內容跳動 */
  min-height: calc(100vh - 200px);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 2px 4px rgba(74, 64, 54, 0.08);
  border: 1px solid transparent;
  cursor: pointer;
  display: flex;
  gap: 16px;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: rgba(212, 163, 115, 0.5);
}

.service-card.selected {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px var(--primary-color);
}

/* 服務圖片 */
.service-image-wrapper {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  cursor: zoom-in;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  filter: sepia(0.2);
}

.zoom-hint {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 4px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image-wrapper:hover .zoom-hint {
  opacity: 1;
}

.selection-check {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  pointer-events: none;
}

.service-card.selected .selection-check {
  background: var(--primary-color);
}

/* 服務內容 */
.service-content {
  flex: 1;
  padding: 4px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 4px;
}

.service-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(74, 64, 54, 0.2);
  background: var(--bg-color);
  color: var(--text-primary);
  font-weight: 500;
}

.service-tag.new {
  background: var(--primary-color);
  color: var(--text-inverse);
  border-color: var(--primary-color);
}

.service-title {
  font-family: serif;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-description {
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 8px;
}

.service-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.service-duration {
  display: flex;
  align-items: center;
  font-size: 10px;
  color: var(--text-hint);
  gap: 4px;
}

/* ==================== 圖片 Modal ==================== */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  color: white;
}

.modal-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ==================== 員工選擇 ==================== */
.staff-section {
  background: rgba(255, 255, 255, 0.5);
  margin: 16px;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(74, 64, 54, 0.05);
}

.staff-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.staff-list {
  display: flex;
  gap: 16px;
  overflow-x: auto;
}

.staff-list::-webkit-scrollbar {
  display: none;
}

.staff-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 60px;
  cursor: pointer;
  transition: all 0.3s;
}

.staff-item:not(.selected) {
  opacity: 0.4;
  filter: grayscale(1);
}

.staff-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(212, 163, 115, 0.3);
  overflow: hidden;
}

.staff-item.selected .staff-avatar {
  border-color: var(--primary-color);
}

.staff-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 10px;
}

.staff-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ==================== 日期選擇 ==================== */
.date-selector {
  background: var(--bg-color);
  padding: 8px 16px;
  position: sticky;
  top: 77px;
  z-index: 30;
}

.date-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0;
}

.date-scroll::-webkit-scrollbar {
  display: none;
}

.date-btn {
  flex-shrink: 0;
  width: 48px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid transparent;
  background: white;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s;
}

.date-btn.selected {
  background: var(--primary-color);
  color: var(--text-inverse);
  border-color: var(--primary-color);
  box-shadow: 0 4px 8px rgba(74, 64, 54, 0.1);
}

.date-day {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.date-number {
  font-size: 18px;
  font-family: serif;
}

/* ==================== 時段選擇 ==================== */
.time-section {
  padding: 16px;
}

.time-period {
  margin-bottom: 24px;
}

.period-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-hint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(74, 64, 54, 0.1);
  padding-bottom: 4px;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.time-slot {
  padding: 12px 8px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  background: white;
  color: var(--text-primary);
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
}

.time-slot:hover:not(:disabled) {
  border-color: rgba(74, 64, 54, 0.3);
}

.time-slot.selected {
  background: var(--primary-color);
  color: var(--text-inverse);
  border-color: var(--primary-color);
}

.time-slot:disabled {
  background: transparent;
  color: rgba(74, 64, 54, 0.2);
  border-color: rgba(74, 64, 54, 0.05);
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ==================== 確認頁面 ==================== */
.confirm-section {
  padding: 16px;
  padding-bottom: 100px;
}

.reservation-ticket {
  background: white;
  border-radius: 0;
  border: 1px solid rgba(74, 64, 54, 0.1);
  margin-bottom: 32px;
  position: relative;
  box-shadow: 0 2px 4px rgba(74, 64, 54, 0.08);
}

.ticket-decoration {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(1deg);
  width: 96px;
  height: 24px;
  background: rgba(229, 224, 213, 0.6);
  backdrop-filter: blur(2px);
}

.ticket-header {
  padding: 32px;
  text-align: center;
  border-bottom: 1px dashed rgba(74, 64, 54, 0.2);
}

.reservation-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.reservation-date {
  font-family: serif;
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.reservation-time {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
}

.ticket-body {
  padding: 24px;
}

.service-summary {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: center;
}

.summary-image {
  width: 64px;
  height: 64px;
  background: var(--bg-color);
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(74, 64, 54, 0.1);
}

.summary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.3);
}

.summary-details {
  flex: 1;
}

.summary-title {
  font-family: serif;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 4px;
}

.summary-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-price {
  color: var(--text-primary);
  font-weight: 700;
}

.summary-staff {
  font-size: 10px;
  color: var(--text-hint);
}

/* 表單 */
.form-section {
  padding: 0 8px;
  margin-top: 24px;
}

.form-header {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 8px;
  display: inline-block;
}

.line-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.line-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(74, 64, 54, 0.2);
}

.line-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.line-info {
  font-size: 12px;
  color: var(--text-secondary);
}

.line-name {
  font-weight: 700;
  color: var(--text-primary);
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-hint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(74, 64, 54, 0.2);
  padding: 8px 0;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--primary-color);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(74, 64, 54, 0.2);
}

.form-textarea {
  resize: none;
  height: 64px;
  font-size: 14px;
}

.form-hint {
  font-size: 10px;
  color: #c17b6f;
  margin-top: 4px;
}

/* ==================== 成功頁面 ==================== */
.success-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 32px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(74, 64, 54, 0.2);
}

.success-title {
  font-size: 24px;
  font-family: serif;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.success-message {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.success-details {
  width: 100%;
  max-width: 320px;
  border-top: 1px solid rgba(74, 64, 54, 0.1);
  border-bottom: 1px solid rgba(74, 64, 54, 0.1);
  padding: 24px 0;
  margin-bottom: 32px;
}

.success-datetime {
  font-family: serif;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.success-service {
  font-size: 14px;
  color: var(--text-hint);
}

.success-user {
  font-size: 12px;
  color: var(--text-hint);
  margin-top: 8px;
}

.home-link {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 4px;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}

/* ==================== 底部固定欄 ==================== */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(245, 242, 234, 0.9);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(74, 64, 54, 0.1);
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 50;
}

.bottom-content {
  max-width: 430px;
  margin: 0 auto;
}

/* 按鈕 */
.btn {
  width: 100%;
  padding: 12px 32px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--text-inverse);
  box-shadow: 0 8px 16px rgba(74, 64, 54, 0.15);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  background: var(--primary-color);
  font-size: 14px;
}

.btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74, 64, 54, 0.25);
}

.btn:active:not(:disabled) {
  transform: scale(0.98);
}

.btn:disabled {
  background: var(--neutral-gray);
  cursor: not-allowed;
  box-shadow: none;
}

/* ==================== Loading ==================== */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(245, 242, 234, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(74, 64, 54, 0.1);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-text {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 14px;
}

.loading {
  text-align: center;
  padding: 32px;
  color: var(--text-secondary);
  font-size: 14px;
}

.error-message {
  text-align: center;
  padding: 32px;
  color: #d32f2f;
  font-size: 14px;
  background: rgba(211, 47, 47, 0.05);
  border-radius: 8px;
  margin: 16px 0;
}

/* ==================== 通用 ==================== */
.hidden {
  display: none !important;
}

.empty-state {
  text-align: center;
  padding: 32px 0;
  color: var(--text-hint);
  font-size: 12px;
}

.secondary-link {
  margin-bottom: 12px;
  border-bottom-color: rgba(74, 64, 54, 0.35);
  color: var(--text-secondary);
}

.quick-manage-btn {
  margin: 0 16px 12px;
  border: 1px solid rgba(74, 64, 54, 0.2);
  background: #fff;
  color: var(--text-primary);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.bookings-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.42);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}

.bookings-panel {
  width: min(420px, 100%);
  max-height: 85vh;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(74, 64, 54, 0.12);
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 50px rgba(22, 18, 14, 0.28);
}

.bookings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 8px;
}

.bookings-header h3 {
  font-family: serif;
  font-size: 18px;
  color: var(--text-primary);
}

.bookings-close {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.bookings-actions {
  display: flex;
  justify-content: flex-end;
  padding: 0 18px 8px;
}

.bookings-refresh {
  border: 1px solid rgba(74, 64, 54, 0.18);
  background: var(--bg-color);
  color: var(--text-primary);
  font-size: 12px;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.bookings-list {
  overflow-y: auto;
  padding: 12px 18px 18px;
}

.booking-item {
  border: 1px solid rgba(74, 64, 54, 0.12);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  background: rgba(245, 242, 234, 0.45);
}

.booking-item:last-child {
  margin-bottom: 0;
}

.booking-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.booking-datetime {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 700;
}

.booking-service {
  font-size: 13px;
  color: var(--text-secondary);
}

.booking-meta {
  font-size: 11px;
  color: var(--text-hint);
}

.booking-status {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 8px;
}

.booking-status.pending {
  background: rgba(212, 163, 115, 0.18);
  color: #9f5b1a;
}

.booking-status.confirmed {
  background: rgba(22, 112, 84, 0.15);
  color: #1e6f56;
}

.booking-status.cancelled {
  background: rgba(140, 140, 140, 0.18);
  color: #6b6b6b;
}

.booking-status.completed {
  background: rgba(74, 64, 54, 0.16);
  color: #4a4036;
}

.booking-actions {
  display: flex;
  gap: 8px;
}

.booking-btn {
  border: 1px solid rgba(74, 64, 54, 0.2);
  background: white;
  color: var(--text-primary);
  font-size: 11px;
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
  flex: 1;
}

.booking-btn:hover:not(:disabled) {
  border-color: rgba(74, 64, 54, 0.38);
}

.booking-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.booking-btn-primary {
  background: var(--primary-color);
  color: var(--text-inverse);
  border-color: var(--primary-color);
}

.booking-btn-danger {
  border-color: rgba(193, 123, 111, 0.4);
  color: #9f4f44;
}

.reschedule-banner {
  margin: 12px 16px 0;
  background: rgba(212, 163, 115, 0.14);
  border: 1px solid rgba(212, 163, 115, 0.35);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  color: #8d5524;
}
