/* ===========================================================
   Ppasong — 한국→미국 배송대행 (KuroLogi 벤치마크)
   공통 스타일시트
   =========================================================== */

:root {
  --navy: #211a4d;        /* 딥 인디고 (다크 서피스) */
  --navy-2: #322a72;
  --blue: #5b47f5;        /* 일렉트릭 인디고 (프라이머리) */
  --blue-2: #7c6bff;
  --sky: #edeafe;         /* 라벤더 틴트 */
  --accent: #ff4d6d;      /* 바이브런트 코럴 (CTA/강조) */
  --accent-2: #ff7a92;
  --ink: #17151f;
  --muted: #6b6880;
  --line: #e9e7f0;
  --bg: #f7f6fc;
  --white: #ffffff;
  --ok: #12b886;
  --warn: #f08c00;
  --radius: 14px;
  --shadow: 0 6px 22px rgba(40, 25, 90, 0.08);
  --shadow-lg: 0 14px 46px rgba(40, 25, 90, 0.16);
  --max: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Pretendard Variable", Pretendard, -apple-system, "Malgun Gothic", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy);
  color: #cdd8e6;
  font-size: 12.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.topbar a { color: #cdd8e6; }
.topbar a:hover { color: #fff; }
.topbar .t-left { display: flex; gap: 18px; align-items: center; }
.topbar .t-right { display: flex; gap: 14px; align-items: center; }
.topbar .flag { font-size: 13px; }
.topbar .divider { color: #3a5170; }

/* ---------- Header / Nav ---------- */
.header {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233, 231, 240, 0.8);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header .container {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.brand .logo {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  display: grid; place-items: center;
  font-size: 18px; font-weight: 900;
}
.brand .logo small { font-size: 9px; }
.brand em { color: var(--accent); font-style: normal; }

.mainnav { margin-left: auto; }
.mainnav > ul { display: flex; gap: 4px; }
.mainnav > ul > li { position: relative; }
.mainnav > ul > li > a {
  display: block;
  padding: 0 16px;
  line-height: 76px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
}
.mainnav > ul > li:hover > a { color: var(--blue); }
.mainnav .dropdown {
  position: absolute;
  top: 72px; left: 50%;
  transform: translateX(-50%);
  min-width: 190px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transition: .18s ease;
}
.mainnav > ul > li:hover .dropdown { opacity: 1; visibility: visible; top: 66px; }
.mainnav .dropdown a {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  color: #40505f;
  border-radius: 7px;
}
.mainnav .dropdown a:hover { background: var(--sky); color: var(--blue); }

/* 모바일 하단 탭바 */
.mobtab { display: none; }
@media (max-width: 720px) {
  .mobtab {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line); padding: 6px 0 max(6px, env(safe-area-inset-bottom));
  }
  .mobtab a {
    flex: 1; text-align: center; font-size: 11px; font-weight: 700; color: var(--muted);
    display: flex; flex-direction: column; gap: 2px; text-decoration: none;
  }
  .mobtab a span { font-size: 20px; }
  .mobtab a.on { color: var(--blue); }
  body { padding-bottom: 64px; }
}

/* 스캔 스테이션 전체화면 (창고 태블릿용) */
.station-full {
  position: fixed !important; inset: 0 !important; z-index: 500; margin: 0 !important;
  border-radius: 0 !important; overflow-y: auto; background: #fff;
}
.station-full .panel-body { max-width: 860px; margin: 40px auto 0; }
.station-full input[type=text] { font-size: 24px !important; padding: 22px 20px !important; }

/* 페이지 넘김 */
.pager { display: flex; align-items: center; gap: 6px; justify-content: center; padding: 16px 12px 6px; flex-wrap: wrap; }
.pg-btn { min-width: 34px; height: 34px; padding: 0 10px; border: 1px solid var(--line); background: #fff; border-radius: 9px; font-weight: 700; font-size: 13px; color: #3a3f52; cursor: pointer; }
.pg-btn:hover:not(:disabled) { background: #f2f0ff; color: var(--blue); }
.pg-btn.on { background: var(--blue); border-color: var(--blue); color: #fff; }
.pg-btn:disabled { opacity: 0.45; cursor: default; }
.pg-dots { color: var(--muted); padding: 0 2px; }
.pg-info { margin-left: 10px; color: var(--muted); font-size: 12.5px; }

/* 🔔 헤더 알림 벨 */
.nbell { position: relative; margin: 0 -12px; }
.nbell-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; color: #3a3f52; cursor: pointer; transition: background 0.15s, color 0.15s;
}
.nbell-btn:hover { background: #f2f0ff; color: var(--blue); }
.nbell-badge {
  position: absolute; top: -5px; right: -6px; background: var(--accent); color: #fff;
  font-size: 10.5px; font-weight: 800; border-radius: 999px; padding: 1.5px 5.5px;
  min-width: 17px; text-align: center; line-height: 1.4;
}
.nbell-drop {
  position: absolute; right: 0; top: calc(100% + 12px); width: 370px;
  max-width: calc(100vw - 24px); background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-lg); z-index: 130; overflow: hidden;
}
.nbell-head { padding: 12px 16px; font-weight: 800; font-size: 14px; border-bottom: 1px solid var(--line); background: #f7f6fc; }
.nbell-list { list-style: none; margin: 0; padding: 0; max-height: 400px; overflow-y: auto; }
.nbell-list li { display: flex; flex-direction: column; gap: 5px; padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 13.5px; line-height: 1.6; }
.nbell-list li:last-child { border-bottom: 0; }
.nbell-list li.unread { background: #fff8f5; }
.nbell-list li[data-go] { cursor: pointer; transition: background 0.15s; }
.nbell-list li[data-go]:hover { background: #f2f0ff; }
.nbell-list .nb-body { color: #4d4a63; font-size: 13px; white-space: pre-line; line-height: 1.65; }
.nbell-list .nb-at { color: var(--muted); font-size: 11.5px; }
.nbell-empty { color: var(--muted); text-align: center; padding: 24px 16px !important; }

.header .cta {
  margin-left: 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .15s;
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, #5b47f5, #7c4df0); color: #fff; box-shadow: 0 4px 14px rgba(91,71,245,.28); }
.btn-primary:hover { background: linear-gradient(135deg, #4936d8, #6a3ee0); transform: translateY(-1px); box-shadow: 0 7px 20px rgba(91,71,245,.38); }
.btn-accent { background: linear-gradient(135deg, #ff4d6d, #ff7a59); color: #fff; box-shadow: 0 4px 14px rgba(255,77,109,.3); }
.btn-accent:hover { background: linear-gradient(135deg, #e63e5f, #f56a48); transform: translateY(-1px); box-shadow: 0 7px 20px rgba(255,77,109,.4); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 380px at 88% -15%, rgba(255,77,109,.32), transparent),
    radial-gradient(700px 380px at 10% 110%, rgba(124,107,255,.45), transparent),
    linear-gradient(135deg, #2a1f66 0%, #4a34c7 55%, #6d4bf0 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 64px 20px 72px;
}
.hero .tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  padding: 7px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; margin-bottom: 18px;
}
.hero h1 {
  font-size: 50px; line-height: 1.18; margin: 0 0 18px;
  font-weight: 800; letter-spacing: -1.8px;
}
.hero h1 em { font-style: normal; background: linear-gradient(90deg, #ff8fa8, #ffb36b); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 17px; color: #cfe0f2; margin: 0 0 28px; max-width: 520px; }
.hero .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .trust { margin-top: 26px; display: flex; gap: 26px; flex-wrap: wrap; }
.hero .trust .n { font-size: 24px; font-weight: 800; }
.hero .trust .l { font-size: 12.5px; color: #a9c1da; }

/* route card in hero */
.route-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 26px;
  backdrop-filter: blur(6px);
}
.route-card h3 { margin: 0 0 18px; font-size: 15px; color: #cfe0f2; font-weight: 600; }
.route-flow { display: flex; align-items: center; justify-content: space-between; }
.route-node { text-align: center; flex: 1; }
.route-node .ico { font-size: 30px; }
.route-node .cty { font-weight: 800; margin-top: 6px; }
.route-node .sub { font-size: 12px; color: #a9c1da; }
.route-arrow { color: var(--accent-2); font-size: 22px; padding: 0 6px; }
.route-card .rc-foot {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px dashed rgba(255,255,255,.2);
  display: flex; justify-content: space-between; font-size: 13px;
}
.route-card .rc-foot b { color: #fff; }

/* ---------- My address box (나의 배송대행지) ---------- */
.addrbar { background: #fff; border-bottom: 1px solid var(--line); }
.addrbar .container {
  display: flex; align-items: stretch; gap: 0;
  padding: 0;
}
.addrbar .ab-title {
  background: var(--navy);
  color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  padding: 18px 26px; min-width: 220px;
}
.addrbar .ab-title .k { font-size: 12px; color: #9fb6d0; }
.addrbar .ab-title .b { font-size: 18px; font-weight: 800; }
.addrbar .ab-fields {
  flex: 1; display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.addrbar .ab-cell {
  padding: 14px 20px; border-left: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center;
}
.addrbar .ab-cell label { font-size: 11.5px; color: var(--muted); margin-bottom: 3px; }
.addrbar .ab-cell .v { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.addrbar .ab-cell select {
  border: 1px solid var(--line); border-radius: 6px; padding: 6px 8px; font-size: 13.5px;
}
.addrbar .ab-cell .locked { color: var(--muted); font-weight: 500; font-size: 13px; }

/* ---------- Sections ---------- */
.section { padding: 68px 0; }
.section.alt { background: #fff; }
.section-head { text-align: center; margin-bottom: 46px; }
.section-head .eyebrow {
  color: var(--blue); font-weight: 700; font-size: 13.5px; letter-spacing: 1px;
  text-transform: uppercase;
}
.section-head h2 { font-size: 30px; margin: 8px 0 10px; letter-spacing: -0.6px; }
.section-head p { color: var(--muted); font-size: 16px; margin: 0; }

/* feature grid */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow);
  transition: .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .ico {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, #edeafe, #fde8ec);
  display: grid; place-items: center; font-size: 25px; margin-bottom: 16px;
  box-shadow: inset 0 0 0 1px rgba(91,71,245,.10);
}
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { text-align: center; position: relative; padding: 0 14px; }
.step:not(:last-child)::after {
  content: "→"; position: absolute; right: -10px; top: 26px;
  color: var(--accent); font-size: 22px; font-weight: 700;
}
.step .num {
  width: 60px; height: 60px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-size: 22px; font-weight: 800;
}
.step h4 { margin: 0 0 6px; font-size: 16.5px; }
.step p { margin: 0; color: var(--muted); font-size: 13.5px; }

/* price table */
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-table th, .price-table td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.price-table thead th { background: var(--navy); color: #fff; font-weight: 700; }
.price-table tbody tr:hover { background: var(--sky); }
.price-table td.zone { font-weight: 700; color: var(--navy); }
.price-table .best { color: var(--accent); font-weight: 800; }

/* notice/board */
.board { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.board .b-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.board .b-head h3 { margin: 0; font-size: 17px; }
.board .b-head a { font-size: 13px; color: var(--muted); }
.board li { display: flex; align-items: center; gap: 12px; padding: 12px 20px; border-bottom: 1px solid #f0f2f5; font-size: 14px; }
.board li:last-child { border-bottom: 0; }
.board .badge { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 5px; background: var(--sky); color: var(--blue); }
.board .badge.new { background: #ffe9e0; color: var(--accent); }
.board li .date { margin-left: auto; color: var(--muted); font-size: 12.5px; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; text-align: center; padding: 56px 0; }
.cta-band h2 { font-size: 28px; margin: 0 0 10px; }
.cta-band p { margin: 0 0 24px; font-size: 16px; opacity: .95; }
.cta-band .btn-ghost { background: #fff; border-color: #fff; color: var(--accent); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #9fb6d0; padding: 50px 0 26px; font-size: 13.5px; }
.footer .f-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid #1e3d63; }
.footer h4 { color: #fff; font-size: 15px; margin: 0 0 14px; }
.footer a { color: #9fb6d0; display: block; padding: 4px 0; }
.footer a:hover { color: #fff; }
.footer .f-brand { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer .f-bottom { padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: #6d87a6; }

/* ---------- Forms / page shell ---------- */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; padding: 44px 0; }
.page-hero h1 { margin: 0 0 6px; font-size: 30px; }
.page-hero .crumb { font-size: 13.5px; color: #9fb6d0; }
.page-hero .crumb a:hover { color: #fff; }

.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.panel-head { padding: 18px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.panel-head h2 { margin: 0; font-size: 19px; }
.panel-body { padding: 24px; }

.form-row { display: grid; grid-template-columns: 160px 1fr; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid #f0f2f5; }
.form-row > label { font-weight: 700; font-size: 14.5px; }
.form-row > label .req { color: var(--accent); }
.form-row .field { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
input[type=text], input[type=email], input[type=password], input[type=number], select, textarea {
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 7px; font-size: 14px; font-family: inherit; background: #fff; width: 100%; max-width: 420px;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,103,209,.12); }
.help { font-size: 12.5px; color: var(--muted); }
.form-actions { display: flex; justify-content: center; gap: 12px; padding-top: 24px; }

/* auth card */
.auth-wrap { max-width: 440px; margin: 60px auto; }
.auth-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 40px 36px; }
.auth-card h1 { text-align: center; margin: 0 0 6px; font-size: 24px; }
.auth-card .sub { text-align: center; color: var(--muted); margin: 0 0 26px; font-size: 14px; }
.auth-card .fld { margin-bottom: 14px; }
.auth-card .fld label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.auth-card .fld input { max-width: none; }
.auth-card .row-between { display: flex; justify-content: space-between; align-items: center; font-size: 13px; margin: 6px 0 18px; }
.auth-card .alt { text-align: center; margin-top: 18px; font-size: 13.5px; color: var(--muted); }
.auth-card .alt a { color: var(--blue); font-weight: 700; }

/* dashboard stat cards */
.stat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.stat .k { font-size: 13px; color: var(--muted); }
.stat .v { font-size: 27px; font-weight: 800; margin-top: 4px; background: linear-gradient(90deg, #4232b8, #7c4df0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .v em { font-size: 14px; color: var(--muted); font-style: normal; }

/* status table */
.data-table { width: 100%; border-collapse: collapse; background: #fff; }
.data-table th, .data-table td { padding: 12px 7px; border-bottom: 1px solid var(--line); font-size: 13px; text-align: left; }
.data-table thead th { background: #f7f9fc; color: #40505f; font-weight: 700; white-space: nowrap; }
.data-table td.nowrap { white-space: nowrap; }
.data-table tbody tr:hover { background: var(--sky); }
.pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.pill.wait { background: #fff3e0; color: var(--warn); }
.pill.in { background: var(--sky); color: var(--blue); }
.pill.ship { background: #e6f7ee; color: var(--ok); }

/* chat float */
.chat-fab { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: flex; flex-direction: column; gap: 10px; }
.chat-fab a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-lg); font-size: 24px; }
.chat-fab .kko { background: #fae100; }
.chat-fab .top { background: var(--navy); color: #fff; }

/* utilities */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}.text-center{text-align:center}
.tag-note { background: #fff8f2; border: 1px solid #ffe0cc; color: #a5490f; padding: 14px 18px; border-radius: 10px; font-size: 13.5px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .step:nth-child(2)::after { display: none; }
  .addrbar .ab-fields { grid-template-columns: repeat(2, 1fr); }
  .footer .f-top { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .mainnav { display: none; }
  .grid-4, .grid-3, .grid-2, .grid-5 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .hero h1 { font-size: 32px; }
  .addrbar .container { flex-direction: column; }
  .addrbar .ab-fields { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer .f-top { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .data-table { display: block; overflow-x: auto; }
}

/* ---------- 배송조회 타임라인 ---------- */
.track-timeline { position: relative; margin: 8px 0 0; padding-left: 6px; }
.track-timeline .tl { position: relative; padding: 0 0 22px 26px; border-left: 2px solid var(--line); }
.track-timeline .tl:last-child { border-left-color: transparent; padding-bottom: 0; }
.track-timeline .dot { position: absolute; left: -8px; top: 2px; width: 14px; height: 14px; border-radius: 50%; background: #cfcfe0; border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line); }
.track-timeline .tl.done .dot { background: var(--ok); }
.track-timeline .tl.now .dot { background: var(--accent); box-shadow: 0 0 0 4px rgba(255,77,109,.22); }
.track-timeline .c { display: flex; flex-direction: column; gap: 2px; }
.track-timeline .c b { font-size: 14.5px; }
.track-timeline .c span { font-size: 12.5px; color: var(--muted); }
.track-timeline .tl.wait .c b { color: var(--muted); font-weight: 600; }

/* ---------- FAQ 아코디언 ---------- */
.faq-cat { font-size: 13px; font-weight: 800; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin: 30px 0 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 12px; box-shadow: var(--shadow); overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 16px 20px; font-weight: 700; font-size: 15px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--blue); line-height: 1; flex: 0 0 auto; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .a { padding: 0 20px 18px; color: #48505e; font-size: 14px; line-height: 1.75; }
.faq-item summary .q { display: inline-flex; gap: 8px; }
.faq-item summary .q b { color: var(--accent); }

/* ---------- 제휴 마켓 스트립 ---------- */
.market-strip { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.market-strip .container { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 34px; padding: 26px 20px; }
.market-strip .lbl { color: var(--muted); font-size: 13.5px; font-weight: 600; }
.market-strip .mk { font-weight: 800; font-size: 18px; color: #9aa0ae; letter-spacing: -0.3px; }

/* ---------- 후기 ---------- */
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.review .stars { color: #ffb400; font-size: 15px; margin-bottom: 10px; }
.review p { margin: 0 0 16px; font-size: 14.5px; color: #3a4250; line-height: 1.7; }
.review .who { display: flex; align-items: center; gap: 10px; }
.review .ava { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-2)); color: #fff; display: grid; place-items: center; font-weight: 800; }
.review .who .nm { font-weight: 700; font-size: 14px; }
.review .who .rl { font-size: 12.5px; color: var(--muted); }

/* ---------- 법령/약관 본문 ---------- */
.legal { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px 34px; }
.legal h3 { font-size: 16px; margin: 24px 0 8px; }
.legal h3:first-child { margin-top: 0; }
.legal p, .legal li { color: #48505e; font-size: 14px; line-height: 1.8; }
.legal ul { list-style: disc; padding-left: 20px; margin: 6px 0; }


/* ---------- 2026-07 폴리시 개선 ---------- */
.data-table tbody tr:nth-child(even):not(.detail-row) { background: #fafafd; }
.price-table tbody tr:nth-child(even) { background: #fafafd; }
.event-pill { animation: pillPulse 2.2s ease-in-out infinite; }
@keyframes pillPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 77, 109, .45); }
  50% { box-shadow: 0 0 0 9px rgba(255, 77, 109, 0); }
}
.card .ico { transition: transform .18s; }
.card:hover .ico { transform: scale(1.12) rotate(-4deg); }
.board li a:hover { color: var(--blue); }
.footer a { transition: color .15s; }
html { scroll-behavior: smooth; }


/* ---------- 모바일 신청 폼 ---------- */
@media (max-width: 760px) {
  .item-head { display: none !important; }
  .item-row { flex-wrap: wrap; }
  .item-row .it-name { flex: 1 1 100% !important; }
  .item-row .it-qty { width: 72px !important; }
  .item-row .it-price { width: 96px !important; }
  .item-row .it-courier { flex: 1 !important; width: auto !important; }
  .item-row .it-track { flex: 1 1 58% !important; }
  .item-row > span { flex: 1 1 30% !important; min-width: 150px; }
  .ship-group .panel-head h2 { font-size: 15px !important; }
}

/* ============================================================
   HOME v2 — 스타트업 디자인 오버레이 (Linear/Stripe/Toss 레퍼런스)
   ============================================================ */

/* --- Hero: 딥 인디고 + 메시 글로우 + 도트 그리드 --- */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -20%, rgba(255, 77, 109, 0.35), transparent 60%),
    radial-gradient(900px 520px at -5% 115%, rgba(96, 165, 250, 0.28), transparent 60%),
    radial-gradient(700px 420px at 45% 120%, rgba(124, 107, 255, 0.4), transparent 65%),
    linear-gradient(160deg, #17123f 0%, #241a6b 45%, #4230b8 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(720px 460px at 60% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(720px 460px at 60% 40%, #000 0%, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; width: 480px; height: 480px; border-radius: 50%;
  right: -140px; top: -180px;
  background: radial-gradient(circle, rgba(255, 107, 138, 0.35), transparent 65%);
  filter: blur(10px);
  animation: orb-drift 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-50px, 40px) scale(1.15); }
}
.hero .container { padding: 84px 20px 92px; position: relative; z-index: 1; }
.hero h1 { font-size: 56px; letter-spacing: -2.4px; line-height: 1.12; }
.hero p.lead { font-size: 18px; color: #c9d6f5; }
.hero .tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero .hero-btns .btn-accent {
  box-shadow: 0 10px 34px rgba(255, 77, 109, 0.45);
}
.hero .hero-btns .btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.hero .hero-btns .btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }
.hero .trust { margin-top: 38px; gap: 0; }
.hero .trust > div { padding: 0 26px; border-left: 1px solid rgba(255, 255, 255, 0.14); }
.hero .trust > div:first-child { padding-left: 0; border-left: 0; }
.hero .trust .n {
  font-size: 28px; letter-spacing: -1px;
  background: linear-gradient(90deg, #fff, #ffd9c4);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* --- Route card: 글래스 강화 + 플로팅 --- */
.route-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(10, 5, 40, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: card-float 7s ease-in-out infinite alternate;
}
@keyframes card-float {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .route-card, .hero::after { animation: none; }
}

/* --- 섹션 헤드: 그라디언트 아이브로우 필 --- */
.section-head .eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(91, 71, 245, 0.1), rgba(255, 77, 109, 0.1));
  border: 1px solid rgba(91, 71, 245, 0.22);
  background-clip: padding-box;
  font-size: 12px; font-weight: 800; letter-spacing: 1.6px;
  color: var(--blue);
}
.section-head h2 { font-size: 34px; letter-spacing: -1.2px; }

/* --- 카드: 호버 리프트 + 상단 그라디언트 라인 --- */
.card { position: relative; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.card::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(35, 20, 100, 0.13); border-color: rgba(91, 71, 245, 0.35); }
.card:hover::after { transform: scaleX(1); }

/* --- 스텝: 연결선 + 그라디언트 숫자칩 --- */
.steps { position: relative; }
.step .num {
  background: linear-gradient(135deg, var(--blue), #7c6bff);
  color: #fff; box-shadow: 0 8px 22px rgba(91, 71, 245, 0.35);
  border: 0;
}
.step { transition: transform 0.25s ease; }
.step:hover { transform: translateY(-4px); }

/* --- 마켓 스트립: 모노톤 → 호버 컬러 --- */
.market-strip { background: linear-gradient(180deg, #fff, #f7f6fc); }
.market-strip .mk { transition: color 0.2s ease, transform 0.2s ease; cursor: default; }
.market-strip .mk:hover { color: var(--blue); transform: translateY(-2px); }

/* --- 리뷰: 인용부호 + 카드 호버 --- */
.review { position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.review::before {
  content: "\201C";
  position: absolute; top: 6px; right: 18px;
  font-size: 64px; line-height: 1; font-weight: 800;
  color: rgba(91, 71, 245, 0.12);
  font-family: Georgia, serif;
}
.review:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(35, 20, 100, 0.12); }

/* --- CTA 밴드: 딥 그라디언트 + 글로우 --- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 300px at 80% 120%, rgba(255, 77, 109, 0.5), transparent 60%),
    radial-gradient(600px 300px at 10% -30%, rgba(124, 107, 255, 0.55), transparent 60%),
    linear-gradient(150deg, #1b1450, #35249c);
  padding: 72px 0;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(560px 300px at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(560px 300px at 50% 50%, #000, transparent 80%);
  pointer-events: none;
}
.cta-band h2 { font-size: 32px; letter-spacing: -1px; position: relative; }
.cta-band p { position: relative; }
.cta-band .btn-ghost { position: relative; box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3); }

/* --- 스크롤 리빌 --- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.65s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.65s cubic-bezier(0.2, 0.7, 0.3, 1); }
.rv.in { opacity: 1; transform: none; }
.rv:nth-child(2) { transition-delay: 0.08s; }
.rv:nth-child(3) { transition-delay: 0.16s; }
.rv:nth-child(4) { transition-delay: 0.24s; }
.rv:nth-child(5) { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
}

/* --- 모바일 히어로 보정 --- */
@media (max-width: 860px) {
  .hero h1 { font-size: 36px; letter-spacing: -1.4px; }
  .hero .container { padding: 56px 20px 60px; }
  .hero .trust > div { padding: 0 16px; }
}


/* Tawk.to 실시간 채팅으로 대체 — 장식용 카카오 버튼 숨김 */
.chat-fab .kko { display: none; }
.chat-fab { bottom: 96px; }

/* 주문관리: 처리 버튼 컬럼 오른쪽 고정 — 가로 스크롤 시 잘림 방지 */
#adMainTable td.act-fix, #adMainTable th.act-fix { position: sticky; right: 0; background: #fff; box-shadow: -8px 0 10px -8px rgba(20,18,50,.18); z-index: 1; }
#adMainTable thead th.act-fix { background: #f7f6fc; z-index: 2; }
#adMainTable tr.detail-row td { position: static; box-shadow: none; }

/* 등급 메달 등 이모지가 그라디언트 텍스트에 실루엣으로 찍히는 문제 방지 */
.stat .v .emj { background: none; -webkit-background-clip: initial; background-clip: initial; -webkit-text-fill-color: initial; color: initial; }


/* 🌐 구글 번역(영문) 상태 — 헤더/메뉴 잘림 방지 (영문 라벨이 길어 압축 표시) */
html.translated-ltr .mainnav a, html.translated-rtl .mainnav a { white-space: nowrap; font-size: 12px; letter-spacing: -0.3px; padding: 6px 4px; }
html.translated-ltr .mainnav ul { gap: 8px; flex-wrap: nowrap; }
html.translated-ltr .mainnav { overflow-x: auto; scrollbar-width: none; flex: 1; min-width: 0; }
html.translated-ltr .mainnav::-webkit-scrollbar { display: none; }
html.translated-ltr .header .container { gap: 10px; }
html.translated-ltr .topbar .t-left span, html.translated-ltr .topbar .t-right a { white-space: nowrap; }
html.translated-ltr .header .btn { white-space: nowrap; padding: 9px 14px; font-size: 13px; }
/* 로고는 번역 영향 제거 (Ppa song 띄어쓰기 방지) */
html.translated-ltr .brand span, html.translated-ltr .brand em { white-space: nowrap; }
html.translated-ltr .brand font { display: contents; }


/* 📱 모바일 상단바 — 링크 잘림 방지 (한 줄 가로 스크롤) */
@media (max-width: 760px) {
  .topbar .container { flex-wrap: nowrap; gap: 8px; }
  .topbar .t-left { display: none; }
  .topbar .t-right { display: flex; align-items: center; gap: 10px; flex: 1; overflow-x: auto; white-space: nowrap; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .topbar .t-right::-webkit-scrollbar { display: none; }
  .topbar .t-right a { flex: 0 0 auto; }
  .topbar .t-right .divider { flex: 0 0 auto; }
  .header .container { flex-wrap: nowrap; gap: 8px; }
  .header .brand { flex: 0 0 auto; }
  .header .btn { padding: 8px 12px; font-size: 12.5px; white-space: nowrap; }
}
