/* ================================
   Base / Tokens / Global resets
===================================*/
*,
*::before,
*::after{ box-sizing: border-box; }

:root{
  /* 필요시 토큰 확장 */
  --rd-radius-btn: 8px;
  --rd-radius-input: 15px;
  --rd-shadow-focus: 0 0 0 3px rgba(160,23,73,.12); /* #A01749 */
}

.rd-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;   
  background-color: #FFF;     
  font-family:   "Noto Sans KR",
  "Malgun Gothic",          
  "Apple SD Gothic Neo",    
  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size-adjust: 0.5;
  padding-bottom: 48px;
}

/* 컴포넌트 */

/* 버튼 */
/* .rd-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-family: 'Noto Sans KR', sans-serif;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;  
}

/* 버튼 상태 */
/*
.rd-is-enabled {
  background: var(--Purple500, #A01749); 
  color: var(--White, #FFF);
}
.rd-is-disabled {
  background: var(--Grey500, #808080);
  color: #fff;
}

.rd-is-secondary {
  background: var(--Grey100, #F6F6F6);
  border: 1px solid var(--Grey500, #808080);
  color: var(--Grey500, #808080);
  font-size: 17px;
  line-height: 26px; 
}


.rd-size-l {
  font-size: 17px;
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 700;
  line-height: 26px; 
}

.rd-size-m {

  font-size: 15px;
  border-radius: 7px;
  padding: 12px 20px;
}

.rd-size-s {
  font-size: 13px;
  border-radius: 6px;
  padding: 12px 14px;
} */



.rd-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  white-space:nowrap;
  text-align:center;
  font-weight:700;
  border:none;
  color: #FFF;
  background: var(--Grey500, #808080);
  border-radius: var(--rd-radius-btn);
  line-height: 1.4;
  cursor:pointer;
  transition: background-color .18s ease, border-color .18s ease,
              box-shadow .18s ease, transform .12s ease, color .18s ease;
}

/* variants */
.rd-btn--primary{
  background: var(--Purple500, #A01749);
  color: var(--White, #FFF);
}
.rd-btn--secondary{
  background: var(--Grey100, #F6F6F6);
  border: 1px solid var(--Grey500, #808080);
  color: var(--Grey500, #808080);
}

/* sizes */
.rd-btn--l{ font-size:17px; padding:12px 28px; }
.rd-btn--m{ font-size:15px; padding:12px 20px; }
.rd-btn--s{ font-size:13px; padding:12px 14px; }

/* focus & keyboard accessibility */
.rd-btn:focus-visible{
  outline:0;
  box-shadow: var(--rd-shadow-focus);
}

/* hover(데스크톱 전용) */
@media (hover:hover) and (pointer:fine){
  .rd-btn--secondary:hover{
    background:#f8f9fa;
    border-color:#adb5bd;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
  }
  .rd-btn--primary:hover{
    filter: brightness(1.03);
  }
}

/* active */
.rd-btn:active{ transform: translateY(0); }

/* disabled & aria-disabled */
.rd-btn:disabled,
.rd-btn[aria-disabled="true"],
.rd-btn.is-disabled{    /* 유틸 상태 클래스와도 호환 */
  opacity:.6;
  cursor:not-allowed;
  pointer-events:none;
  background: var(--Grey500, #808080);
}

/* pressed (토글 버튼 UX + A11y) */
.rd-btn[aria-pressed="true"]{
  box-shadow: var(--rd-shadow-focus);
}

/* 모션 최소화 환경 */
@media (prefers-reduced-motion: reduce){
  .rd-btn{ transition:none; }
}

/* drop box */
.rd-select {
  color: var(--Grey500, #808080);
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid var(--Grey500, #808080);
  appearance: none;  /* 기본 브라우저 스타일 제거 */
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="14" viewBox="0 0 24 24" width="14" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  cursor: pointer;
  align-items: center;
  padding: 8px 16px;
  gap: 12px;
  display: flex;
  font-weight: 400;
  line-height: 26px; 
}

.rd-select--m{
  height:40px;
  font-size:15px;
  width: min(100%, 300px);     /* ▶ 고정폭 대신 반응형 상한 */
}
.rd-select--s{
  font-size:13px;
  width: min(100%, 150px);
}

.rd-select:disabled{
  background: var(--Grey100, #F6F6F6);
  cursor: not-allowed;
}

.rd-select:focus-visible{
  outline:0;
  border-color: var(--Purple500,#A01749);
  box-shadow: 0 0 0 3px rgba(160,23,73,.12);
  color: #000;
}

/* 홈>예약, divider*/
.rd-breadcrumb {
  font-size: 13px;
  color: #999;
  padding-top: 0;
  align-self: flex-start;
}

.rd-divider {
    width: 100%;
    max-width: 1200px;
    height: 10px;
    background: var(--Grey100, #F6F6F6);
    margin: 36px auto;
}

.rd-divider-s {
    height: 1px;
    align-self: stretch;
    background: #D9D9D9;
}

/* 하단 버튼 그룹 */
.rd-button-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 메뉴 타이틀 */
.rd-section-title {
  position: relative;
  padding-left: 14px;
  font-size: 24px;
  font-weight: bold;
  margin-left: 24px;
}

.rd-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 8px;
  height: 100%;
  background-color:var(--Purple500, #A01749); 
  border-radius: 2px;
}

.rd-h3 {
    margin: 18px 0;  
    color: var(--Grey700, #535353);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
  }