.section-container {
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
}

.progress-wrap {
  position: relative;
 
}

.reservation-header {
  background: url('/images/subhead.jpg') no-repeat center center;
  background-size: cover;
}

.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom:40px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a79d96;
  font-weight: 600;
}

.progress-step.active {
  color: #9a7746;
}

.progress-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(24,20,18,0.08);
  font-size: 18px;
}

.progress-step.active .progress-icon {
  background: linear-gradient(135deg, #b9925a, #9a7746);
  color: #fff;
  border-color: transparent;
}

.progress-line {
  width: 70px;
  height: 1px;
  background: rgba(24,20,18,0.12);
  margin: 0 16px;
}

.progress-line.active {
  background: #b9925a;
}

.reservation-content {
  padding: 60px 0 100px;
  background: #f6f1ea;
}

.reservation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 340px;
  gap: 28px;
  align-items: start;
}

.reservation-form,
.reservation-summary {
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(24,20,18,0.07);
  border-radius: 2px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
}

.reservation-form {
  padding: 28px;
}

.reservation-summary {
  padding: 28px;
  position: sticky;
  top: 120px;
}

.calenderW {
  width: 100%;
}

.calender-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 28px;
  align-items: start;
}

#cal {
  min-height: 420px;
  background: #fff;
  border: 1px solid rgba(24,20,18,0.06);
  border-radius: 24px;
  padding: 20px;
}

.timeline {
  background: #fff;
  border: 1px solid rgba(24,20,18,0.06);
  border-radius: 24px;
  padding: 20px;
}

.timeline h4{
    font-size:1.2em;
	text-align:center;
}


.cdate {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.2;
  color: #181412;
  letter-spacing: -0.02em;
}

.time-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.time-item {
  display: block;
  cursor: pointer;
}

.time-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.time-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  border-radius: 16px;
  background: #faf8f5;
  border: 1px solid rgba(24,20,18,0.08);
  color: #181412;
  font-size: 17px;
  font-weight: 700;
  transition: all .25s ease;
}

.time-item span:hover {
  border-color: #b9925a;
  transform: translateY(-1px);
}

.time-item input:checked + span {
  background: linear-gradient(135deg, #b9925a, #9a7746);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(185,146,90,0.22);
}

.time-item input.empty {
  pointer-events: none;  
}

.time-item input.empty + span {
  color: #bbb; 
  cursor: not-allowed;   
  background: #f5f5f5;
}

/* hoverµµ ¸·±â */
.time-item input.empty + span:hover {
  background: #f5f5f5;
}

.time-item.empty {
  cursor: not-allowed;
}

.time-item.empty span {
  color: #bbb;
  background: #f3f3f3;
  
}

.time-item.empty input {
  pointer-events: none;
}

.status-booked {
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  font-style: normal;
  color: #c0392b;
}

.form-navigation {
  margin-top: 24px;
}

.btn-nav {
  min-width: 180px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
}

.btn-next {
  background: linear-gradient(135deg, #b9925a, #9a7746);
  color: #fff;
  box-shadow: 0 12px 28px rgba(185,146,90,0.22);
}

.btn-next:hover {
  transform: translateY(-2px);
}

.reserve-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.input-group.full {
  grid-column: 1 / -1;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #181412;
}

.input-group input,
.input-group textarea {
  width: 100%;
  border: 1px solid rgba(24,20,18,0.08);
  border-radius: 16px;
  background: #fff;
  padding: 14px 16px;
  font-size: 15px;
  color: #181412;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #b9925a;
  box-shadow: 0 0 0 4px rgba(185,146,90,0.08);
}

.summary-title {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #181412;
}

.summary-details {
  display: grid;
  gap: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(24,20,18,0.06);
}

.summary-label {
  color: #6a625d;
  font-size: 14px;
  font-weight: 600;
}

.summary-value {
  color: #181412;
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}

.summary-note {
  margin: 20px 0 0;
  color: #6a625d;
  font-size: 14px;
  line-height: 1.6;
}

#people_custom_wrap {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .reservation-summary {
    position: static;
  }

  .calender-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section-container {
    width: min(100% - 32px, 1200px);
  }

  .reservation-header {
    padding: 120px 0 40px;
  }

  .progress-line {
    width: 32px;
    margin: 0 8px;
  }

  .reservation-form,
  .reservation-summary {
    padding: 20px;
    border-radius: 22px;
  }

  #cal,
  .timeline {
    padding: 16px;
    border-radius: 18px;
  }

  .reserve-inputs {
    grid-template-columns: 1fr;
  }

  .btn-nav {
    width: 100%;
  }
}