/* ==========================================================================
   LETUS DESIGN SYSTEM — OFFICIAL INTEGRATED STYLESHEET
   ========================================================================== */

/* 1. 디자인팀 제공 로컬 프리미엄 서체 바인딩 (fonts/ 폴더 싱크) */
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url("fonts/Pretendard-Thin.otf") format("opentype");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: url("fonts/Pretendard-ExtraLight.otf") format("opentype");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("fonts/Pretendard-Light.otf") format("opentype");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("fonts/Pretendard-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("fonts/Pretendard-Medium.otf") format("opentype");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("fonts/Pretendard-SemiBold.otf") format("opentype");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("fonts/Pretendard-Bold.otf") format("opentype");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("fonts/Pretendard-ExtraBold.otf") format("opentype");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("fonts/Pretendard-Black.otf") format("opentype");
}

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,500;9..40,600&display=swap');

:root {
  /* ---------- Primary — Orange (브랜드 핵심 컬러) ---------- */
  --letus-orange-100: #FF5C39;
  --letus-orange-hover: #E84A28;
  --letus-orange-60: #FF9A83;
  --letus-orange-20: #FFE3DA;

  /* ---------- Secondary ---------- */
  --letus-green-100: #58BF6F;
  --letus-blue-100: #8AA8E2;

  /* ---------- Neutrals / Gray Scale (명세 엄격 준수) ---------- */
  --letus-black: #1A1A1A;
  --letus-ink: #222222;
  --letus-ink-soft: #333333;
  --letus-gray-500: #AAAAAA;
  --letus-gray-300: #DDDDDD;
  --letus-gray-100: #F5F5F5;
  --letus-white: #FFFFFF;

  /* ---------- Semantic mapping ---------- */
  --bg: var(--letus-white);
  --bg-soft: var(--letus-gray-100);
  --border: var(--letus-gray-300);
  --accent: var(--letus-orange-100);

  /* ---------- Type families ---------- */
  --font-sans: "Pretendard", -apple-system, sans-serif;
  --font-display: "DM Sans", "Pretendard", sans-serif;

  /* ---------- Spacing Tokens ---------- */
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 48px;
  --space-2xl: 80px;

  /* ---------- Radii ---------- */
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;

  /* ---------- Layout Constraints ---------- */
  --container-max: 1440px;
  --container-pad: 80px;
}

/* ==========================================================================
   GLOBAL RESET & TYPOGRAPHY SYSTEM
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--letus-ink-soft);
  background: var(--bg);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

/* 정밀 타입 스케일 (디자인 가이드라인 동기화) */
.hero-eyebrow-tag {
  color: var(--accent);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

h1 {
  font: 600 60px/1.2 var(--font-sans);
  letter-spacing: -0.025em;
  color: var(--letus-black);
}

h2 {
  font: 600 40px/1.2 var(--font-sans);
  letter-spacing: -0.02em;
  color: var(--letus-black);
}

h3 {
  font: 600 32px/1.35 var(--font-sans);
  letter-spacing: -0.01em;
  color: var(--letus-black);
}

h4 {
  font: 600 22px/1.2 var(--font-sans);
  letter-spacing: -0.01em;
  color: var(--letus-black);
}

p {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--letus-ink-soft);
}

.text-small {
  font: 400 14px/1.6 var(--font-sans);
  color: var(--letus-ink-soft);
}

.mobile-break {
  display: none;
}

/* ==========================================================================
   LAYOUT STRUCTURE (메인 서비스 페이지 규격 동기화)
   ========================================================================== */
.section-outer {
  width: 100%;
  position: relative;
}

.section-outer.bg-white {
  background: var(--letus-white);
}

/* 3. 배경색 일치 (기존 bg-[#F5F5F5] 적용) */
.section-outer.bg-gray {
  background-color: #F5F5F5;
  border-top: none;
  /* 기존에 있던 불필요한 보더 제거 */
}

.section-outer.bg-dark {
  background: var(--letus-black);
  color: var(--letus-white);
}

/* ==========================================================================
   LAYOUT STRUCTURE (메인 서비스 페이지 규격 완벽 동기화)
   ========================================================================== */

/* 1. 기본 컨테이너 (1600px 이상 큰 모니터 기준) */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
  /* 화면이 1600px 이상일 때는 내부 패딩 제거 (기존 서비스와 일치) */
  box-sizing: border-box;
}

/* 2. 화면이 1600px 이하로 줄어들 때 (테블릿/작은 데스크톱) */
@media (max-width: 1600px) {
  .container {
    padding: 0 8.3%;
    /* 화면 비율에 맞춰 좌우 여백 유연하게 축소 */
  }
}

/* 2. 섹션 상하 여백 (고정 픽셀에서 반응형 clamp로 변경) */
.section-padding {
  /* 데스크톱 기준: 최소 40px, 화면 너비의 8.3%, 최대 120px */
  padding-top: clamp(40px, 8.3vw, 120px);
  padding-bottom: clamp(40px, 8.3vw, 120px);
}

/* ==========================================================================
   HEADER (기존 서비스 페이지 기준 동기화)
   ========================================================================== */
header.letus-header-sticky {
  background: #FFFFFF;
  /* 기존 투명 블러 효과를 제거하고 완전한 흰색으로 변경 */
  border-bottom: 1px solid var(--letus-gray-300);
  height: 72px;
  /* 높이를 80px에서 72px로 축소 */
  width: 100%;
}

.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  /* 데스크톱 기준 좌우 패딩 32px */
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* 이미지 프레임 아웃라인 처리 */
.image-outline-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Component: Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  /* 8px */
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms cubic-bezier(.22, 1, .36, 1);
}

.btn-primary {
  background: var(--accent);
  color: var(--letus-white);
}

.btn-primary:hover {
  background: var(--letus-orange-hover);
}

.btn-secondary {
  background: var(--letus-white);
  color: var(--letus-ink-soft);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-soft);
}

.btn:disabled {
  background: var(--border);
  color: var(--letus-gray-500);
  cursor: not-allowed;
}

/* Component: Cards */
.card {
  background: var(--letus-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  /* 12px */
  padding: var(--space-xl);
  box-shadow: 0 1px 3px rgba(26, 26, 26, .06);
  transition: all 200ms cubic-bezier(.22, 1, .36, 1);
}

.card:hover {
  border-color: var(--accent);
}

.service-opt-card.selected {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 1px var(--accent);
  background-color: var(--letus-orange-20);
}

.service-opt-card {
  overflow: hidden;
}

.service-opt-card h4,
.service-opt-card p.text-small,
.service-opt-card p.text-small span {
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: var(--letus-orange-20);
  color: var(--accent);
}

/* FAQ Accordion UI */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  background: var(--letus-white);
}

.accordion-header {
  padding: var(--space-md) var(--space-lg);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  display: none;
}

/* ==========================================================================
   WIDGET COMPONENTS LAYOUT
   ========================================================================== */
.widget-container {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  margin-top: 56px;
}

#booking-widget {
  scroll-margin-top: 100px;
}

.widget-main {
  flex: 1;
  background: var(--letus-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 4px 12px rgba(26, 26, 26, .06);
}

.widget-sidebar {
  width: 420px;
  background: var(--letus-black);
  color: var(--letus-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: sticky;
  top: 110px;
}

.step-indicator-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--letus-white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--letus-ink-soft);
  position: relative;
}

.step-indicator-circle.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--letus-white);
}

.step-dot-label {
  position: absolute;
  top: 44px;
  font-size: 12px;
  color: var(--letus-ink-soft);
  font-weight: 600;
  white-space: nowrap;
}

.opt-hash {
  font-size: 14px;
  color: var(--letus-gray-500);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.widget-step-panel {
  display: none;
  padding-right: 12px;
}

.widget-step-panel::-webkit-scrollbar {
  width: 6px;
}

.widget-step-panel::-webkit-scrollbar-track {
  background: transparent;
}

.widget-step-panel::-webkit-scrollbar-thumb {
  background-color: var(--letus-gray-300);
  border-radius: 4px;
}

.widget-step-panel.active {
  display: block;
}

.furn-tab {
  padding-bottom: var(--space-sm);
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  color: var(--letus-gray-500);
}

.furn-tab.active {
  color: var(--accent);
  border-color: var(--accent);
}

.furn-tab-panel {
  display: none;
}

.furn-tab-panel.active {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.furn-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.qty-stepper button {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--letus-white);
  border: 1px solid var(--border);
  color: var(--letus-black);
  font-weight: 600;
  cursor: pointer;
}

.qty-stepper button:hover {
  background: var(--bg-soft);
}

.qty-stepper input {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--letus-black);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
  width: 48px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px;
  font-weight: 600;
}

.form-input-lbl {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: var(--space-sm);
  color: var(--letus-black);
}

.form-txt-field {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
}

.form-txt-field:focus {
  box-shadow: 0 0 0 3px rgba(255, 92, 57, .25);
  border-color: var(--accent);
}

.help-text {
  font-size: 13px;
  color: var(--letus-gray-500);
  margin-top: 6px;
}

.agreement-row-box {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--bg-soft);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 14px;
}

.toggle-switch-shell {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.toggle-switch-shell input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: var(--border);
  border-radius: 28px;
  transition: .2s;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: var(--letus-white);
  border-radius: 50%;
  transition: .2s;
}

input:checked+.toggle-slider {
  background-color: var(--accent);
}

input:checked+.toggle-slider:before {
  transform: translateX(24px);
}

/* Modal UI */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content-box {
  background: var(--letus-white);
  width: 100%;
  max-width: 560px;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .widget-container {
    flex-direction: column;
  }

  .widget-sidebar {
    width: 100%;
    position: static;
  }

  .container {
    padding: 0 var(--space-md);
  }
}

/* ==========================================================================
   MOBILE RESPONSIVE (MAX-WIDTH: 768PX)
   ========================================================================== */
@media (max-width: 768px) {
  header.letus-header-sticky .header-inner {
    /* 서비스 페이지 모바일 기준: 좌측 20px, 우측 12px 패딩 적용 */
    padding: 0 12px 0 20px !important;
  }

  /* 섹션 제목과 본문 박스 사이의 시각적 여백 추가 확보 */
  .principles-grid,
  .process-grid,
  .faq-accordion,
  #booking-widget {
    margin-top: 32px !important;
  }

  /* 모바일 좌우 패딩 고정 (기존 px-4 대응) */
  .container {
    padding: 0 16px !important;
  }

  /* 모바일 상하 여백 (기존 clamp(70px, 12.5vw, 100px) 대응) */
  .section-padding {
    padding-top: clamp(70px, 12.5vw, 100px) !important;
    padding-bottom: clamp(70px, 12.5vw, 100px) !important;
  }

  /* 타이포그래피 스케일 축소 */
  h1 {
    font-size: 32px !important;
    line-height: 1.3 !important;
  }

  h2 {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }

  h3 {
    font-size: 20px !important;
    line-height: 1.35 !important;
  }

  /* 헤더 GNB 메뉴 중 텍스트 링크 숨김, [견적 문의] 버튼만 우측 상단 배치 */
  header.letus-header-sticky nav {
    display: none !important;
  }

  header.letus-header-sticky .header-inner {
    padding: 0 20px !important;
  }

  header.letus-header-sticky .header-inner>div {
    gap: 16px !important;
  }

  /* Hero 섹션 모바일 레이아웃 (세로 1열) */
  .bg-white>section.container.hero-grid {
    grid-template-columns: 1fr !important;
    gap: 56px !important;
  }

  /* 가구를 다루는 원칙 모바일 레이아웃 (세로 1열) */
  .principles-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  /* 4단계 프로세스 모바일 레이아웃 (세로 1열) */
  .process-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* 상품 선택 카드 모바일 레이아웃 (세로 1열) 및 내부 여백/잘림 방지 */
  .service-options-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .service-opt-card {
    padding: 16px !important;
    min-height: auto !important;
  }

  .service-opt-card h4,
  .service-opt-card p.text-small,
  .service-opt-card p.text-small span {
    white-space: normal !important;
    overflow: visible !important;
    word-break: keep-all;
  }

  /* 모바일 전용 영문 괄호 타이틀 분리 */
  .mobile-only-block {
    display: block !important;
    text-align: left;
    margin-top: 2px;
  }

  /* Footer 모바일 레이아웃 방어 (1열 및 배치 순서) */
  .letus-footer {
    padding: 32px 0;
    /* 모바일 상하 패딩 32px */
  }

  .letus-footer .footer-inner {
    padding: 0 16px;
    /* 모바일 좌우 패딩 16px */
  }

  .footer-right {
    position: static;
    margin-top: 16px;
    order: 99;
    /* 소셜 아이콘 하단 배치 */
  }

  .footer-info {
    gap: 8px;
  }

  /* 예약 위젯 내 가구 선택 카테고리 탭 바 가로 스와이프 활성화 */
  .furn-tab-container {
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 8px !important;
    gap: 16px !important;
  }

  .furn-tab {
    flex-shrink: 0 !important;
  }

  /* 모바일 전용 타이틀 정렬 및 줄바꿈 */
  .mobile-break {
    display: block !important;
  }

  .mobile-center-title {
    text-align: center !important;
  }

  /* FAQ 카테고리 탭 반응형 (두 줄 래핑 및 폰트 크기 조정) */
  .faq-tabs {
    flex-wrap: wrap !important;
    gap: 12px 16px !important;
  }

  .faq-tab-btn {
    font-size: 14px !important;
    white-space: normal !important;
  }

  /* 위젯 내 가로 2열 배치(일자/시간 등) 세로 1열 100% 폭 전환 */
  .service-datetime-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* 예약 위젯 상단 스텝 인디케이터 (모바일 방어) */
  .step-indicator-circle {
    flex-shrink: 0 !important;
  }

  .widget-main>div:first-child {
    gap: 16px !important;
  }
}

/* ==========================================================================
   FOOTER (기존 서비스 페이지 여백 동기화)
   ========================================================================== */
.letus-footer {
  padding: 64px 0;
  /* 데스크톱 상하 패딩 64px */
  background-color: #383838;
  color: var(--letus-white);
}

.letus-footer .footer-inner {
  max-width: 1600px;
  /* 기존 서비스와 동일한 1600px 너비 */
  margin: 0 auto;
  padding: 0 32px;
  /* 데스크톱 좌우 패딩 32px */
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* 기존에 있던 하단 보더(경계선) 및 48px 여백 삭제 (서비스 페이지와 일치) */
}

.footer-right {
  position: absolute;
  top: 0;
  right: 32px;
  /* 패딩에 맞춰 우측 정렬 */
}

.footer-brands {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--letus-white);
}

.footer-brands a {
  color: var(--letus-white);
  text-decoration: none;
}

.footer-brands a:hover {
  text-decoration: underline;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: #cccccc;
  line-height: 17px;
  margin-top: 16px;
}

.company-name {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.info-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* 정책 링크 컨테이너 */
.footer-policy-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  font-size: 14px;
  color: #cccccc;
}

.footer-policy-links a {
  color: #cccccc;
  text-decoration: none;
}

.footer-policy-links a:hover {
  color: var(--letus-white);
}

#link-privacy-policy {
  font-weight: 700;
  /* 기존 서비스 페이지의 font-bold 적용 */
}

.footer-divider {
  width: 1px;
  height: 10px;
  background-color: #cccccc;
}

/* 하단 카피라이트 영역 */
.footer-copyright {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  /* mt-12 적용 */
  font-size: 12px;
  color: #FFFFFF;
}

.footer-copyright .footer-divider {
  background-color: #FFFFFF;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  color: var(--letus-white);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: transparent;
}

.footer-socials a:hover {
  opacity: 0.7;
}

/* ==========================================================================
   CUSTOM ALERT MODAL & PRIVACY MODAL
   ========================================================================== */
.modal-overlay {
  display: none;
  /* Changed by JS to flex */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(2px);
}

.modal-content-box {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  width: 90%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.privacy-modal-box {
  max-width: 720px;
  padding: 40px 32px;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  margin-bottom: 24px;
  font-size: 13px;
}

.privacy-table th,
.privacy-table td {
  border: 1px solid var(--letus-gray-300);
  padding: 12px;
  text-align: left;
}

.privacy-table th {
  background-color: var(--letus-gray-100);
  font-weight: 600;
  color: var(--letus-black);
}

.privacy-content::-webkit-scrollbar {
  width: 6px;
}

.privacy-content::-webkit-scrollbar-thumb {
  background-color: var(--letus-gray-300);
  border-radius: 4px;
}

/* ==========================================================================
   FAQ & ACCORDION
   ========================================================================== */
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--letus-gray-300);
}

.faq-tab-btn {
  background: none;
  border: none;
  padding: 0 0 12px 0;
  font: 400 16px/1 var(--font-sans);
  color: var(--letus-gray-500);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.faq-tab-btn.active {
  font-weight: 700;
  color: var(--letus-black);
}

.faq-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--letus-orange-100);
}

.accordion-item {}

/* ==========================================================================
   SUCCESS MODAL
   ========================================================================== */
#success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.success-modal-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   DATE INPUT CUSTOMIZATION
   ========================================================================== */
input[type="date"].form-txt-field {
  cursor: pointer;
  position: relative;
  color: var(--letus-black);
}

input[type="date"].form-txt-field::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  /* 달력 아이콘을 우측에 깔끔하게 배치 */
  position: absolute;
  right: 16px;
  width: 20px;
  height: 20px;
}

input[type="date"].form-txt-field::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Loading Spinner Animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
  vertical-align: middle;
}