/* ============================================
   SCHEDULE TIMELINE
   ============================================ */

/* ---- Today date display ---- */
.schedule-today-date {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-5);
  margin-top: var(--sp-3);
}

.schedule-today-date__day {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: -0.03em;
}

.schedule-today-date__right {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.schedule-today-date__month-name {
  font-family: var(--font-display);
  font-size: clamp(var(--text-lg), 3vw, var(--text-xl));
  color: var(--gold);
  font-style: italic;
  line-height: 1.2;
  text-transform: capitalize;
}

.schedule-today-date__year {
  font-size: var(--text-sm);
  color: var(--text-faint);
  letter-spacing: 0.12em;
  line-height: 1;
}

.schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-block: var(--sp-6);
}

.schedule-timeline__item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: var(--sp-4);
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(209,194,176,0.10);
  border-radius: var(--radius-xl);
  padding: var(--sp-4) var(--sp-5);
  transition: box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.schedule-timeline__item:hover {
  box-shadow: var(--shadow-gold);
  border-color: rgba(209,194,176,0.22);
}

@media (max-width: 480px) {
  .schedule-timeline__item {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
  .schedule-timeline__time { grid-column: 1 / 3; }
}

.schedule-timeline__time {
  font-size: var(--text-sm);
  font-weight: var(--weight-semi);
  color: var(--gold);
  white-space: nowrap;
}

.schedule-timeline__masseuse {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-weight: var(--weight-medium);
  color: var(--text);
  transition: color var(--duration) var(--ease);
}

.schedule-timeline__masseuse:hover { color: var(--gold-light); }

.schedule-timeline__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--border-gold);
}

.schedule-timeline__empty {
  text-align: center;
  color: var(--text-muted);
  padding: var(--sp-12);
}

/* ---- Massage services section ---- */
.schedule-services {
  padding-block: clamp(3rem, 7vw, 5rem);
  background: transparent;
}

.schedule-services__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--gold-light);
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}

.schedule-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-5);
}

@media (max-width: 600px) {
  .schedule-services__grid {
    grid-template-columns: 1fr;
  }
}

.schedule-service-card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(209,194,176,0.10);
  border-radius: var(--radius-xl);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.schedule-service-card:hover {
  box-shadow: var(--shadow-gold);
  border-color: rgba(209,194,176,0.22);
}

.schedule-service-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--gold-light);
  margin: 0;
  min-height: 3.5rem;
}

.schedule-service-card__desc {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  margin: 0;
}

/* ---- Price table ---- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.price-table th {
  text-align: left;
  color: var(--text-faint);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--sp-2);
  border-bottom: 1px solid var(--border);
}

.price-table td {
  padding: var(--sp-2);
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.price-table td:first-child { color: var(--text-muted); }
.price-table td:last-child  { color: var(--gold-muted); }

.price-table__row--highlight td {
  color: var(--gold-light);
  background: rgba(143,112,50,0.07);
}

.price-table__row--highlight td:first-child { color: var(--gold); }

@media (max-width: 400px) {
  .price-table th,
  .price-table td { padding: var(--sp-1); }
}
