
/* ─────────────────────────────────────────────
   예약 현황
───────────────────────────────────────────── */
.booking-cal {
  padding: 140px 0 100px;
  min-height: 100vh;
  background: var(--color-bg-primary);
}

.booking-cal__header {
  text-align: center;
  margin: 60px 0;
  position: relative;
}

.booking-cal__footer {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* ─────────────────────────────────────────────
   캘린더
───────────────────────────────────────────── */
.booking-cal__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 20px 0;
}

.booking-cal__arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}
.booking-cal__arrow:hover {
  color: var(--color-gold);
}

.booking-cal__month {
  font-size: var(--text-xl);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  color: var(--color-text-primary);
  min-width: 200px;
  text-align: center;
}

.booking-cal__legend {
  display: flex;
  gap: 24px;
  margin: 20px 0 20px 10px;
}

.booking-cal__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: var(--ls-normal);
}

/* 캘린더 그리드 */
.badge {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 2px;
  flex-shrink: 0;
}

.badge--avail {
  background: rgb(201, 168, 76);
  color: #fff;
}

.badge--booked {
  background: rgb(136, 136, 136, 0.5);
  color: #fff;
}

.booking-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-left: 1px solid var(--color-border-subtle);
  border-top: 1px solid var(--color-border-subtle);
}

/* 요일 헤더 */
.cal-header {
  padding: 12px 0;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-gold);
  letter-spacing: var(--ls-normal);
  border-right: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-gold);
  background: var(--color-bg-secondary);
}

/* 날짜 셀 */
.cal-day {
  padding: 10px 10px 12px;
  min-height: 96px;
  border-right: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  background: var(--color-bg-secondary);
}

.cal-day--empty {
  background: var(--color-bg-primary);
}

.cal-day--past {
  opacity: 0.5;
}

.cal-day__num {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: 10px;
  line-height: 1;
}

.cal-day--today {
  position: relative;
}
.cal-day--today::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-gold);
  pointer-events: none;
  z-index: 2;
}

/* A/B/C 배지 */
.cal-day__badges {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 20px;
  border-radius: 2px;
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: 1;
}


/* 네이버 예약 */
.btn--naver {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 13px 32px;
  font-size: var(--text-sm);
  letter-spacing: var(--ls-wide);
  transition: var(--transition);
}
.btn--naver:hover {
  background: var(--color-gold);
  color: var(--color-bg-primary);
}
.btn__naver-logo {
  width: 14px;
  height: 14px;
  fill: #03C75A;
  flex-shrink: 0;
  transition: fill 0.3s ease;
}
.btn--naver:hover .btn__naver-logo {
  fill: var(--color-bg-primary);
}