@charset "UTF-8";
/* ==========================================================
   Foreigner Survey – Shared Styles
   Light, mobile-first, clean travel-service feel.
   ========================================================== */

:root {
  --brand: #2F6BFF;
  --brand-dark: #1F4FE0;
  --brand-soft: #EAF1FF;
  --kakao: #FEE500;
  --kakao-text: #191600;
  --bg: #F6F8FB;
  --card: #FFFFFF;
  --text: #0B1C2D;
  --text-soft: #5A6A7A;
  --text-mute: #8A98A8;
  --line: #E6ECF2;
  --line-strong: #C9D3DF;
  --success: #16A34A;
  --warn: #F59E0B;
  --danger: #DC2626;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(11,28,45,.04), 0 1px 1px rgba(11,28,45,.03);
  --shadow: 0 4px 16px rgba(11,28,45,.06), 0 1px 2px rgba(11,28,45,.04);
  --shadow-lg: 0 16px 40px rgba(11,28,45,.10), 0 4px 12px rgba(11,28,45,.06);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Noto Sans SC",
    "Noto Sans TC", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: 760px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; gap: 12px;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; color: var(--text);
}
.brand-logo {
  width: 32px; height: 32px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-logo img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.brand-wordmark { height: 22px; width: auto; display: block; }
.brand:hover { text-decoration: none; }

.lang-select {
  position: relative;
}
.lang-select select {
  appearance: none; -webkit-appearance: none;
  border: 1px solid var(--line); background: #fff;
  border-radius: 999px; padding: 8px 32px 8px 14px;
  font-size: 14px; font-weight: 500; color: var(--text);
  cursor: pointer;
}
.lang-select::after {
  content: ""; position: absolute; right: 12px; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--text-soft);
  border-bottom: 2px solid var(--text-soft);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

/* ---------- Layout ---------- */
.page {
  max-width: 760px; margin: 0 auto; padding: 24px 16px 96px;
}

/* ---------- Stepper ---------- */
.stepper {
  display: flex; align-items: center; gap: 8px;
  margin: 12px 0 22px; flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 6px;
  padding: 10px 6px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.step-num {
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  background: var(--bg); color: var(--text-soft);
  border: 1px solid var(--line-strong);
}
.step-label { font-size: 11px; color: var(--text-soft); font-weight: 600; }
.step.active { border-color: var(--brand); background: var(--brand-soft); }
.step.active .step-num { background: var(--brand); color: #fff; border-color: var(--brand); }
.step.active .step-label { color: var(--brand); }
.step.done .step-num { background: var(--success); color: #fff; border-color: var(--success); }
.step.done .step-label { color: var(--success); }

/* ---------- Hero / Section heads ---------- */
.hero {
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 26px; line-height: 1.25; letter-spacing: -.01em;
  font-weight: 800; color: var(--text);
}
.hero p {
  margin-top: 8px; color: var(--text-soft); font-size: 15px;
}
.intro-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  font-size: 14px; color: var(--text-soft);
}
.intro-card strong { color: var(--text); }

/* ---------- Form sections ---------- */
.section {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}
.section h2 {
  font-size: 16px; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.section h2::before {
  content: ""; width: 4px; height: 16px; border-radius: 4px;
  background: var(--brand);
}
.section .hint { font-size: 13px; color: var(--text-soft); margin-bottom: 12px; }

/* ---------- Fields ---------- */
.field { margin-bottom: 14px; }
.field:last-child { margin-bottom: 0; }
.field-label {
  display: block; font-size: 13.5px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.field-label .req { color: var(--danger); margin-left: 2px; }
.field-help { font-size: 12.5px; color: var(--text-mute); margin-top: 4px; }

.input, .select, .textarea {
  width: 100%; background: #fff;
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 15px; color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.textarea { min-height: 92px; resize: vertical; }
.select {
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-soft) 50%),
    linear-gradient(135deg, var(--text-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px; background-repeat: no-repeat;
  padding-right: 38px;
}

/* ---------- Choices (radio / checkbox) ---------- */
.choices { display: grid; gap: 8px; }
.choice {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px; border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); background: #fff;
  cursor: pointer; transition: border-color .15s, background .15s;
  font-size: 14.5px;
}
.choice:hover { border-color: var(--brand); }
.choice input { margin-top: 3px; accent-color: var(--brand); }
.choice input:checked + span { color: var(--brand); font-weight: 600; }
.choice:has(input:checked) {
  border-color: var(--brand); background: var(--brand-soft);
}

/* ---------- Rating slider 1–10 ---------- */
.rating {
  display: grid; grid-template-columns: repeat(10, 1fr); gap: 6px;
  margin-top: 4px;
}
.rating label {
  position: relative; display: flex; align-items: center; justify-content: center;
  height: 40px; border: 1px solid var(--line-strong);
  border-radius: 8px; background: #fff;
  font-weight: 600; font-size: 14px; color: var(--text-soft);
  cursor: pointer; user-select: none; transition: all .12s;
}
.rating label:hover { border-color: var(--brand); color: var(--brand); }
.rating input { position: absolute; opacity: 0; pointer-events: none; }
.rating input:checked + span {
  background: var(--brand); color: #fff;
}
.rating label:has(input:checked) {
  background: var(--brand); color: #fff; border-color: var(--brand);
}
.rating-scale {
  display: flex; justify-content: space-between;
  font-size: 11.5px; color: var(--text-mute);
  margin-top: 6px;
}

/* ---------- Hotel cards (page 1) ---------- */
.hotel-grid {
  display: grid; gap: 14px;
}
.hotel-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.hotel-card.is-selected {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft), var(--shadow);
}
.hotel-gallery {
  position: relative; aspect-ratio: 16 / 10;
  background: #E9EEF4; overflow: hidden;
}
.hotel-gallery .slides {
  display: flex; height: 100%; transition: transform .35s ease;
  will-change: transform;
}
.hotel-gallery .slide {
  flex: 0 0 100%; height: 100%; background-size: cover; background-position: center;
  cursor: zoom-in;
}
.hotel-gallery .slide-fallback {
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mute); font-size: 13px;
  background: linear-gradient(135deg, #E2E8F0, #F1F5F9);
}
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  font-size: 18px; font-weight: 700;
}
.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }
.gallery-nav:hover { background: #fff; }
.gallery-dots {
  position: absolute; left: 0; right: 0; bottom: 10px;
  display: flex; justify-content: center; gap: 6px;
}
.gallery-dots .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,.15);
}
.gallery-dots .dot.active { background: #fff; }

.hotel-body { padding: 14px 14px 16px; }
.hotel-name { font-size: 17px; font-weight: 800; color: var(--text); }
.hotel-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-top: 4px; font-size: 13px; color: var(--text-soft);
}
.hotel-meta .pin::before { content: "📍"; margin-right: 2px; }
.reward-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--brand-soft); color: var(--brand-dark);
  font-weight: 700; font-size: 12.5px;
  padding: 3px 10px; border-radius: 999px;
}
.hotel-desc {
  margin-top: 10px; color: var(--text-soft); font-size: 14px;
}
.hotel-cta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-top: 14px;
}
@media (max-width: 380px) {
  .hotel-cta { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 18px;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 14.5px;
  border: 1px solid transparent; transition: transform .08s, background .15s, color .15s;
  text-align: center; line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); text-decoration: none; }
.btn-secondary {
  background: #fff; color: var(--text);
  border-color: var(--line-strong);
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }
.btn-ghost {
  background: transparent; color: var(--text-soft);
}
.btn-disabled, .btn:disabled {
  background: var(--bg); color: var(--text-mute);
  border-color: var(--line); cursor: not-allowed;
}
.btn-block { width: 100%; }

.btn-kakao {
  background: var(--kakao); color: var(--kakao-text);
  font-weight: 800;
}
.btn-kakao:hover { background: #FFD600; text-decoration: none; }
.btn-kakao::before {
  content: ""; width: 18px; height: 18px;
  background-color: var(--kakao-text);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 3C6.48 3 2 6.58 2 11c0 2.83 1.84 5.31 4.62 6.74-.2.74-.73 2.71-.84 3.13-.13.52.19.51.4.37.16-.11 2.55-1.74 3.59-2.45.73.1 1.47.16 2.23.16 5.52 0 10-3.58 10-8S17.52 3 12 3z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 3C6.48 3 2 6.58 2 11c0 2.83 1.84 5.31 4.62 6.74-.2.74-.73 2.71-.84 3.13-.13.52.19.51.4.37.16-.11 2.55-1.74 3.59-2.45.73.1 1.47.16 2.23.16 5.52 0 10-3.58 10-8S17.52 3 12 3z'/></svg>") no-repeat center / contain;
}

.btn-instagram {
  background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  color: #fff; font-weight: 800;
}
.btn-instagram:hover { filter: brightness(1.05); text-decoration: none; }
.btn-instagram::before {
  content: ""; width: 18px; height: 18px;
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M7 2C4.243 2 2 4.243 2 7v10c0 2.757 2.243 5 5 5h10c2.757 0 5-2.243 5-5V7c0-2.757-2.243-5-5-5H7zm0 2h10c1.654 0 3 1.346 3 3v10c0 1.654-1.346 3-3 3H7c-1.654 0-3-1.346-3-3V7c0-1.654 1.346-3 3-3zm11 1.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2zM12 7a5 5 0 1 0 0 10 5 5 0 0 0 0-10zm0 2a3 3 0 1 1 0 6 3 3 0 0 1 0-6z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M7 2C4.243 2 2 4.243 2 7v10c0 2.757 2.243 5 5 5h10c2.757 0 5-2.243 5-5V7c0-2.757-2.243-5-5-5H7zm0 2h10c1.654 0 3 1.346 3 3v10c0 1.654-1.346 3-3 3H7c-1.654 0-3-1.346-3-3V7c0-1.654 1.346-3 3-3zm11 1.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2zM12 7a5 5 0 1 0 0 10 5 5 0 0 0 0-10zm0 2a3 3 0 1 1 0 6 3 3 0 0 1 0-6z'/></svg>") no-repeat center / contain;
}

/* ---------- Action callout (prominent must-do) ---------- */
.action-callout {
  background: linear-gradient(135deg, var(--kakao) 0%, #FFD600 100%);
  color: var(--kakao-text);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(254,229,0,.35);
  border: 2px solid #F0CC00;
  position: relative;
}
.action-callout::before {
  content: ""; position: absolute; top: 12px; right: 14px;
  width: 22px; height: 22px;
  background-color: var(--kakao-text);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 3C6.48 3 2 6.58 2 11c0 2.83 1.84 5.31 4.62 6.74-.2.74-.73 2.71-.84 3.13-.13.52.19.51.4.37.16-.11 2.55-1.74 3.59-2.45.73.1 1.47.16 2.23.16 5.52 0 10-3.58 10-8S17.52 3 12 3z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 3C6.48 3 2 6.58 2 11c0 2.83 1.84 5.31 4.62 6.74-.2.74-.73 2.71-.84 3.13-.13.52.19.51.4.37.16-.11 2.55-1.74 3.59-2.45.73.1 1.47.16 2.23.16 5.52 0 10-3.58 10-8S17.52 3 12 3z'/></svg>") no-repeat center / contain;
  opacity: .9;
}
.action-callout-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: .04em;
  background: var(--kakao-text); color: var(--kakao);
  padding: 3px 8px; border-radius: 999px;
  margin-bottom: 6px; text-transform: uppercase;
}
.action-callout-title {
  font-weight: 800; font-size: 17px; line-height: 1.35;
  margin-bottom: 4px; padding-right: 28px;
}
.action-callout-msg {
  display: inline-block;
  background: rgba(255,255,255,.55);
  border: 1px dashed var(--kakao-text);
  padding: 6px 10px; border-radius: 8px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 15px; font-weight: 700;
  margin: 6px 0 12px;
}
.action-callout label.choice {
  background: rgba(255,255,255,.85);
  border-color: rgba(0,0,0,.18);
  font-weight: 700;
}
.action-callout label.choice:has(input:checked) {
  background: #fff; border-color: var(--kakao-text);
}

/* ---------- Submit bar (sticky on mobile) ---------- */
.submit-area {
  margin-top: 18px;
}
.submit-btn {
  width: 100%; padding: 16px;
  background: var(--brand); color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 800; font-size: 16px;
  box-shadow: 0 8px 22px rgba(47,107,255,.30);
}
.submit-btn:hover { background: var(--brand-dark); }
.submit-btn:disabled { background: var(--line-strong); color: #fff; box-shadow: none; cursor: not-allowed; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.85);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.16); color: #fff;
  font-size: 20px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.16); color: #fff;
  font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-nav.prev { left: 16px; }
.lightbox-nav.next { right: 16px; }

/* ---------- Success state ---------- */
.success {
  text-align: center;
  padding: 28px 18px;
}
.success-icon {
  width: 64px; height: 64px; margin: 0 auto 14px;
  border-radius: 50%; background: #DCFCE7; color: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.success h2 { font-size: 22px; margin-bottom: 8px; color: var(--text); }
.success p { color: var(--text-soft); font-size: 15px; }
.success .next-actions {
  margin-top: 22px; display: grid; gap: 10px; text-align: left;
}
.kakao-message-box {
  background: var(--bg); border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm); padding: 14px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 14px; color: var(--text);
  white-space: pre-line; text-align: left;
}
.copy-btn { font-size: 12.5px; }

/* ---------- File upload ---------- */
.file-drop {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  width: 100%; min-height: 140px;
  border: 1.5px dashed var(--line-strong); border-radius: var(--radius-sm);
  background: #fff; padding: 22px 16px; text-align: center;
  color: var(--text-soft); cursor: pointer;
  transition: border-color .15s, background .15s, transform .08s;
  font-size: 14px;
}
.file-drop:hover { border-color: var(--brand); background: var(--brand-soft); }
.file-drop:active { transform: scale(0.995); }
.file-drop.is-drag { border-color: var(--brand); background: var(--brand-soft); }
.file-drop input[type="file"] { display: none; }
.file-drop strong { color: var(--brand); }
.file-drop .file-drop-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1;
  margin-bottom: 4px;
}
.file-drop .file-drop-meta {
  font-size: 12px; color: var(--text-mute); margin-top: 2px;
}
.file-preview {
  margin-top: 10px; display: none;
  background: var(--brand-soft); color: var(--brand-dark);
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 13px; word-break: break-all;
}
.file-preview.is-set { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.file-preview button { color: var(--danger); font-weight: 700; font-size: 12.5px; }

/* ---------- Review-optional note (pretty card) ---------- */
.review-note {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #FDF4FF 0%, #EFF6FF 50%, #ECFDF5 100%);
  border: 1px solid rgba(168, 85, 247, .18);
  border-radius: var(--radius-lg);
  padding: 22px 18px 18px;
  margin: 6px 0 14px;
  box-shadow: 0 8px 24px rgba(168, 85, 247, .08);
}
.review-note::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 114, 182, .18) 0%, transparent 70%);
  pointer-events: none;
}
.review-note-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  color: #9333EA; text-transform: uppercase;
  background: rgba(168, 85, 247, .12);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 10px;
}
.review-note-eyebrow::before { content: "\2726"; font-size: 13px; }
.review-note-title {
  font-size: 17px; font-weight: 800; color: var(--text);
  line-height: 1.4; margin-bottom: 8px;
}
.review-note-body {
  font-size: 14px; color: var(--text-soft); line-height: 1.6;
}
.review-note-channels {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 14px;
}
.review-note-channels .chip {
  display: inline-flex; align-items: center;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 11px; font-size: 12px; font-weight: 600;
  color: var(--text);
}

/* ---------- Kakao delivery notice (Naver Pay gifticon) ---------- */
.kakao-delivery-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: linear-gradient(135deg, #FFF9CC 0%, #FFE873 100%);
  border: 1px solid #F0CC00;
  border-radius: var(--radius-sm);
  padding: 14px 14px;
}
.kakao-delivery-icon {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--kakao-text);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.kakao-delivery-icon::before {
  content: ""; width: 20px; height: 20px;
  background-color: var(--kakao);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 3C6.48 3 2 6.58 2 11c0 2.83 1.84 5.31 4.62 6.74-.2.74-.73 2.71-.84 3.13-.13.52.19.51.4.37.16-.11 2.55-1.74 3.59-2.45.73.1 1.47.16 2.23.16 5.52 0 10-3.58 10-8S17.52 3 12 3z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 3C6.48 3 2 6.58 2 11c0 2.83 1.84 5.31 4.62 6.74-.2.74-.73 2.71-.84 3.13-.13.52.19.51.4.37.16-.11 2.55-1.74 3.59-2.45.73.1 1.47.16 2.23.16 5.52 0 10-3.58 10-8S17.52 3 12 3z'/></svg>") no-repeat center / contain;
}
.kakao-delivery-title {
  font-weight: 800; font-size: 15px; color: var(--kakao-text);
  margin-bottom: 4px;
}
.kakao-delivery-body {
  font-size: 13.5px; color: var(--kakao-text); line-height: 1.55; opacity: .85;
}

/* ---------- Visa-no notice ---------- */
[hidden] { display: none !important; }
.notice-soft {
  display: flex; align-items: flex-start; gap: 10px;
  background: #FFFBEB; border: 1px solid #FDE68A;
  border-radius: var(--radius-sm);
  padding: 12px 14px; margin-top: 8px;
  font-size: 13.5px; color: #92400E; line-height: 1.55;
}
.notice-soft-icon {
  flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: #F59E0B; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px;
  font-family: ui-sans-serif, -apple-system, system-ui, sans-serif;
  margin-top: 1px;
}
.notice-soft-text { flex: 1; min-width: 0; }
.notice-soft-text strong { color: #78350F; }

/* ---------- Help-ways display list ---------- */
.help-ways-title {
  font-weight: 700; font-size: 15px; color: var(--text);
  margin-bottom: 10px;
}
.help-ways-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.help-way {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  background: var(--brand-soft);
  border: 1px solid rgba(47, 107, 255, .18);
  border-radius: var(--radius-sm);
  font-size: 14.5px; color: var(--text);
}
.help-way-icon {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; line-height: 1;
}

/* ---------- Footer ---------- */
.foot {
  text-align: center; color: var(--text-mute);
  font-size: 12px; margin-top: 28px;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
  background: var(--text); color: #fff;
  padding: 10px 16px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transition: opacity .2s;
  z-index: 300;
}
.toast.show { opacity: 1; }

/* ---------- Larger screens ---------- */
@media (min-width: 720px) {
  .hero h1 { font-size: 32px; }
  .stepper { gap: 12px; }
  .step { padding: 12px 8px; }
  .step-label { font-size: 12.5px; }
}
