section {
  padding: 35px 17%;
  font-family: 'nanum-bold', 'sans-serif';
}
.sec-wrap h2, .sec-wrap h3 {
  font-size: 32px;
  margin-bottom: 20px;
  font-family: 'gowun', 'serif';
  letter-spacing: 0 !important;
  font-weight: 600 !important;
}
/* 예약확인/취소 최상단 */
.confirm-header, .cancel-header {
  text-align: center;
  padding-top: 10px;
  font-family: 'gowun','serif';
}
.header-inner { 
  position: relative;
  padding: 36px 0; 
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 5px solid #d4d4d4;
}
.header-inner h2 {
  width: 100%;
  color: var(--main-gray);
  font-size: 30px;
  letter-spacing: 0.6px;
}
.header-inner .prev-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--main-brown);
  font-weight: 600;
}
.highlight {
  color: var(--main-red);
  font-weight: 600;
}

@media (max-width: 1550px) {
  section {
      padding: 50px 3%;
  }
}
@media (max-width:768px){
  section {
      padding: 20px 2%;
  }
  .sec-wrap h2, .sec-wrap h3 {
      font-size: 18px;
      line-height: 1.1;
      margin-bottom: 20px;
  }
  /* 예약확인 및 취소 최상단 */
  .confirm-header, .cancel-header { padding-top: 0;}
  .header-inner { padding: 20px 0;}
  .header-inner h2 {
    font-size: 18px;
    letter-spacing: 0px;
  }
  .header-inner .prev-btn {
    font-size: 15px;
  }
}




/* ********* 예약조회 폼 영역 ********* */
.search-form {
  width: 684px;
  margin: 0 auto;
  padding: 50px;
  border: 1px solid #bbb;
  border-radius: 25px;
}
.form-group {
  display: flex;
  gap: 50px;
  margin-bottom: 20px;
}
.form-group label {
  display: inline-block;
  width: 150px;
  margin-bottom: 6px;
  padding-top: 20px;
  font-weight: 600;
  font-size: 18px;
}
.required {
  color: var(--main-red);
  margin-left: 4px;
}
.form-group .input-wrap { width: 100%;}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 19px 10px 19px 17px;
  border: 1px solid #bbb;
  border-radius: 5px;
  font-size: 18px;
  font-family: 'nanum-bold', 'sans-serif';
  letter-spacing: 0.36px;
}
select option:hover {
  background-color: #eee; /* 일부 브라우저만 적용됨 */
}
textarea {
  height: 100px;
  resize: vertical;
}
.phone-input {
  display: flex;
  gap: 8px;
  width: 100%;
}
.phone-input .input-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.phone-input select,
.phone-input input {
  width: 32.7%;
}
.custom-select.phone-select select {
  padding: 19px 54px 19px 14px !important;
}
.caution {
  width: 100% !important;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 7px;
}

/* 예약조회 */
.btn-search {
  width: 100%;
  margin-top: 30px;
  padding: 17px 0;
  background-color: var(--sub-brown);
  color: #fff;
  border: none;
  font-size: 20px;
  letter-spacing: 1.2px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.btn-search:hover {
  background-color: var(--main-brown);
}


@media (max-width:768px){
  .search-form {
    width: 90%;
    padding: 35px 20px;
    border: 1px solid #bbb;
    border-radius: 20px;
  }
  .form-group label { 
    display: none;
  }
  input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    padding: 15px 10px 15px 17px;
    border-radius: 5px;
    font-size: 14px;
    letter-spacing: 0.3px;
  }
  .custom-select.phone-select select {
      padding: 15px 4vw 15px 14px !important;
      font-size: 14px !important;
  }
  .caution { font-size: 11px;}
  .btn-search { 
    margin-top: 20px;
    font-size: 15px;
    letter-spacing: 0.9px;
    padding: 12px 0;
  }
}