@charset "utf-8";
/* 테라피킹즈 — 컬러·입체감 중심 UI (외부 폰트·아이콘 라이브러리 0) */

:root{
  --ink:#171A2B; --ink2:#414962; --mut:#7A82A0;
  --paper:#fff; --line:#E9ECF5; --line2:#F7F1EC;
  --wash:#F7F8FC;                       /* 아주 옅은 블루 배경 */
  --brand:#DB2777; --brand2:#16A34A; --brand-d:#07784F; --brand-soft:#FCE7F3;
  --cyan:#16A34A; --mint:#12B886; --amber:#FFB020; --coral:#F97316; --pink:#EA580C; --violet:#0EA5E9;
  --grad-brand:linear-gradient(135deg,#DB2777 0%,#16A34A 55%,#22C55E 100%);
  --grad-warm:linear-gradient(135deg,#86EFAC 0%,#16A34A 100%);
  --r-s:4px; --r-m:8px; --r-l:14px;
  --sh-1:0 1px 2px rgba(30,18,10,.08);
  --sh-2:0 3px 10px rgba(30,18,10,.10);
  --sh-3:0 8px 22px rgba(30,18,10,.14);
  --sh-brand:0 4px 14px rgba(219,39,119,.26);
  --wrap:1280px;
  --ease:cubic-bezier(.22,.61,.36,1);
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{margin:0;background:var(--paper);color:var(--ink);
  font-family:"Pretendard Variable","Pretendard","Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic",system-ui,-apple-system,sans-serif;
  font-size:15px;line-height:1.55;letter-spacing:-.012em;-webkit-font-smoothing:antialiased}
img{max-width:100%;border:0;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
ul,ol,li{list-style:none;margin:0;padding:0}
h1,h2,h3,p{margin:0}
:focus-visible{outline:2px solid var(--brand);outline-offset:2px;border-radius:6px}
.bo-sr{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}
.bo-skip{position:absolute;left:-9999px}
.bo-skip:focus{left:12px;top:12px;z-index:200;background:#fff;padding:10px 14px;border:2px solid var(--brand);border-radius:10px}
.bo-wrap{max-width:var(--wrap);margin:0 auto;padding:0 24px}
.bo-i{width:22px;height:22px;display:block}
.bo-icobtn{display:grid;place-items:center;width:38px;height:38px;border-radius:12px}
.bo-icobtn:hover{background:var(--brand-soft);color:var(--brand)}

/* ── 헤더 ──────────────────────────────── */
/* ── 헤더 ─────────────────────────────────────────────
   하이타이형 1단 바. 로고 → 텍스트 메뉴 → 알약 검색 → 알림·회원.
   ★복제 원본(3단: 유틸바+로고바+GNB)과 구조 자체를 바꿨다. */
.bo-hd{position:sticky;top:0;z-index:60;background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(14px);border-bottom:1px solid var(--line2);
  transition:box-shadow .25s var(--ease),border-color .25s var(--ease)}
.bo-hd.is-stuck{box-shadow:0 6px 24px rgba(20,40,36,.08);border-color:transparent}
.bo-hd-row{display:flex;align-items:center;gap:28px;height:74px}

.bo-hd-burger{display:none;width:40px;height:40px;border-radius:12px;flex-direction:column;
  justify-content:center;gap:5px;padding:0 9px}
.bo-hd-burger span{display:block;height:2.2px;border-radius:2px;background:var(--ink);transition:.25s var(--ease)}
.bo-hd-burger span:nth-child(3){width:60%}
.bo-hd-burger[aria-expanded="true"] span:nth-child(1){transform:translateY(7.2px) rotate(45deg)}
.bo-hd-burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.bo-hd-burger[aria-expanded="true"] span:nth-child(3){width:100%;transform:translateY(-7.2px) rotate(-45deg)}

.bo-logo{display:flex;align-items:center;flex:none;color:var(--brand);
  transition:transform .2s var(--ease)}
.bo-logo:hover{transform:translateY(-1px)}
.bo-logo svg,.bo-logo img{height:30px;width:auto;display:block}

.bo-hd-nav{display:flex;align-items:center;gap:30px;flex:none}
.bo-hd-nav-a{position:relative;font-size:16px;font-weight:700;letter-spacing:-.02em;
  color:var(--ink);white-space:nowrap;padding:6px 0;transition:color .18s var(--ease)}
.bo-hd-nav-a::after{content:"";position:absolute;left:50%;right:50%;bottom:0;height:2.5px;border-radius:3px;
  background:var(--brand);transition:left .26s var(--ease),right .26s var(--ease)}
.bo-hd-nav-a:hover{color:var(--brand)}
.bo-hd-nav-a:hover::after,.bo-hd-nav-a.is-on::after{left:0;right:0}
.bo-hd-nav-a.is-on{color:var(--brand)}

.bo-hd-search{flex:1;min-width:0;max-width:420px;margin-left:auto;display:flex;align-items:center;
  height:46px;padding:0 6px 0 20px;border-radius:999px;background:#F3F6F5;
  border:1.5px solid transparent;transition:.22s var(--ease)}
.bo-hd-search:focus-within{background:#fff;border-color:var(--brand2);
  box-shadow:0 0 0 5px rgba(219,39,119,.14)}
.bo-hd-search input{flex:1;min-width:0;border:0;background:transparent;outline:0;
  font-size:14.5px;color:var(--ink)}
.bo-hd-search input::placeholder{color:var(--mut)}
.bo-hd-search button{display:grid;place-items:center;width:36px;height:36px;border-radius:50%;
  color:var(--ink);transition:.2s var(--ease)}
.bo-hd-search button:hover{background:var(--brand);color:#fff}
.bo-hd-search .bo-i{width:19px;height:19px}

.bo-hd-side{display:flex;align-items:center;gap:14px;flex:none}
.bo-hd-bell{display:grid;place-items:center;width:40px;height:40px;border-radius:50%;
  color:var(--ink2);transition:.2s var(--ease)}
.bo-hd-bell:hover{background:var(--brand-soft);color:var(--brand)}
.bo-hd-bell .bo-i{width:21px;height:21px}
.bo-hd-txt{font-size:14.5px;font-weight:600;color:var(--ink2);white-space:nowrap}
.bo-hd-txt:hover{color:var(--brand)}
.bo-hd-cta{height:40px;display:flex;align-items:center;padding:0 18px;border-radius:999px;
  font-size:14.5px;font-weight:700;color:#fff;background:var(--ink);white-space:nowrap;
  transition:.2s var(--ease)}
.bo-hd-cta:hover{background:var(--brand);transform:translateY(-1px);box-shadow:var(--sh-brand)}

@media (max-width:1080px){
  .bo-hd-nav{display:none}
  .bo-hd-burger{display:flex}
  .bo-hd-row{gap:14px;height:64px}
  .bo-hd-search{max-width:none}
}
@media (max-width:720px){
  .bo-hd-search{display:none}
  .bo-hd-txt{display:none}
  .bo-logo{margin-right:auto}
}

.bo-sheet{position:relative;border-top:1px solid var(--line2);background:#fff;box-shadow:0 26px 44px rgba(20,24,60,.14)}
.bo-sheet-in{position:relative;display:grid;grid-template-columns:1.5fr 1.2fr .8fr;gap:34px;padding-top:26px;padding-bottom:30px}
.bo-sheet-col h2{font-size:12px;font-weight:800;letter-spacing:.08em;color:var(--brand);margin-bottom:14px}
.bo-sheet-cats ul{display:grid;grid-template-columns:repeat(2,1fr);gap:4px}
.bo-sheet-cats a{display:flex;align-items:center;gap:11px;padding:9px 10px;border-radius:12px}
.bo-sheet-cats a:hover{background:var(--wash)}
.bo-sheet-ico{display:grid;place-items:center;width:36px;height:36px;border-radius:12px;
  background:var(--grad-brand);color:#fff;box-shadow:0 6px 14px rgba(76,99,240,.28)}
.bo-sheet-ico .bo-i{width:19px;height:19px}
.bo-sheet-cats b{font-size:14px;font-weight:600}
.bo-sheet-cats em{font-style:normal;font-size:12px;color:var(--mut);margin-left:auto}
.bo-sheet-region{display:flex;flex-wrap:wrap;gap:8px}
.bo-sheet-region a{display:block;padding:7px 14px;border:1px solid var(--line);border-radius:999px;font-size:13px}
.bo-sheet-region a:hover{border-color:var(--brand);color:var(--brand);background:var(--brand-soft)}
.bo-sheet-plain a{display:block;padding:7px 0;font-size:14px;color:var(--ink2)}
.bo-sheet-plain a:hover{color:var(--brand)}
.bo-sheet-close{position:absolute;right:0;top:18px;width:34px;height:34px;border-radius:50%;display:grid;place-items:center;color:var(--mut)}
.bo-sheet-close:hover{background:var(--wash);color:var(--ink)}

/* ── 히어로 ────────────────────────────── */
.bo-hero-wrap{margin-top:26px}
.bo-hero{position:relative;border-radius:var(--r-l);overflow:hidden;background:#0E1230;box-shadow:var(--sh-3)}
.bo-hero-track{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;scrollbar-width:none}
.bo-hero-track::-webkit-scrollbar{display:none}
.bo-slide{position:relative;flex:0 0 100%;scroll-snap-align:start;height:450px}
.bo-slide img{width:100%;height:100%;object-fit:cover}
.bo-slide::after{content:"";position:absolute;inset:0;
  background:linear-gradient(96deg,rgba(23,20,66,.90) 0%,rgba(30,26,80,.72) 32%,rgba(24,22,60,.24) 62%,rgba(20,18,50,.05) 100%),
             radial-gradient(120% 90% at 88% 20%,rgba(122,90,248,.34) 0%,transparent 60%)}
.bo-tone-light::after{background:linear-gradient(96deg,rgba(18,16,52,.92) 0%,rgba(26,22,70,.76) 34%,rgba(22,20,58,.24) 66%,transparent 100%),
             radial-gradient(120% 90% at 88% 20%,rgba(31,196,224,.30) 0%,transparent 60%)}
.bo-slide-body{position:absolute;left:0;top:50%;transform:translateY(-50%);z-index:2;padding:0 60px;max-width:660px;color:#fff}
.bo-kicker{display:flex;align-items:center;gap:10px;font-size:12.5px;color:#DCDBFF;margin-bottom:16px}
.bo-kicker span{background:var(--grad-warm);color:#fff;font-weight:800;font-size:11.5px;padding:5px 11px;border-radius:999px;
  box-shadow:0 8px 18px rgba(255,94,138,.4)}
.bo-kicker i{width:24px;height:2px;border-radius:2px;background:linear-gradient(90deg,#fff,rgba(255,255,255,0))}
.bo-slide h2{font-size:44px;line-height:1.22;font-weight:800;letter-spacing:-.04em;text-shadow:0 4px 24px rgba(6,8,30,.45)}
.bo-slide-sub{margin-top:14px;font-size:15.5px;color:#E4E3FF;text-shadow:0 2px 12px rgba(6,8,30,.4)}
.bo-btn{display:inline-flex;align-items:center;gap:6px;margin-top:26px;height:50px;padding:0 26px;border-radius:999px;
  background:var(--grad-brand);color:#fff;font-size:15px;font-weight:700;
  box-shadow:0 14px 30px rgba(219,39,119,.45),inset 0 1px 0 rgba(255,255,255,.35);transition:.22s var(--ease)}
.bo-btn .bo-i{width:16px;height:16px}
.bo-btn:hover{transform:translateY(-2px);box-shadow:0 18px 38px rgba(76,99,240,.55),inset 0 1px 0 rgba(255,255,255,.4)}
.bo-hero-arw{position:absolute;top:50%;transform:translateY(-50%);z-index:3;width:48px;height:48px;border-radius:50%;
  background:rgba(255,255,255,.92);color:var(--ink);display:grid;place-items:center;box-shadow:var(--sh-2);
  opacity:0;transition:opacity .25s var(--ease),transform .2s}
.bo-hero:hover .bo-hero-arw{opacity:1}
.bo-hero-arw:hover{background:#fff;transform:translateY(-50%) scale(1.06)}
.bo-hero-arw.bo-prev{left:18px} .bo-hero-arw.bo-next{right:18px}
.bo-hero-foot{position:absolute;left:60px;right:24px;bottom:26px;z-index:3;display:flex;align-items:center;gap:16px}
.bo-hero-dots{display:flex;gap:8px}
.bo-hero-dots button{width:28px;height:16px;display:grid;place-items:center}
.bo-hero-dots i{display:block;width:22px;height:4px;border-radius:3px;background:rgba(255,255,255,.42);transition:.28s var(--ease)}
.bo-hero-dots button.is-on i{background:linear-gradient(90deg,#fff,#C9C3FF);width:36px;box-shadow:0 0 12px rgba(255,255,255,.6)}
.bo-hero-ctl{margin-left:auto;display:flex;align-items:center;gap:10px;background:rgba(14,16,44,.5);
  backdrop-filter:blur(8px);color:#fff;border:1px solid rgba(255,255,255,.16);border-radius:999px;padding:7px 15px;font-size:12.5px}
.bo-hero-ctl .bo-i{width:13px;height:13px}
.bo-hero-num b{font-weight:800}
.bo-hero-num em{font-style:normal;opacity:.7;margin-left:2px}

/* ── 신뢰 배너 ─────────────────────────── */
.bo-trust{margin-top:28px}
.bo-trust ul{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.bo-trust li{display:flex;gap:14px;align-items:flex-start;padding:20px 22px;border-radius:var(--r-m);
  background:#fff;border:1px solid var(--line2);box-shadow:var(--sh-1);transition:.24s var(--ease)}
.bo-trust li:hover{transform:translateY(-3px);box-shadow:var(--sh-2)}
/* ★원본 사이트는 보라·청록·주황 그러데이션 사각 배지를 쓴다.
   쉼픽은 **민트 계열의 원형 배지 + 옅은 테두리**로 간다(형태부터 다르게). */
.bo-trust-ico{display:grid;place-items:center;width:46px;height:46px;flex:none;border-radius:50%;
  color:var(--brand-d);background:var(--brand-soft);border:1.5px solid rgba(219,39,119,.22);
  box-shadow:none;transition:.2s var(--ease)}
.bo-trust li:nth-child(1) .bo-trust-ico{color:#DB2777;background:#E3F7F2}
.bo-trust li:nth-child(2) .bo-trust-ico{color:#0B8FA8;background:#E2F4F8;border-color:rgba(11,143,168,.2)}
.bo-trust li:nth-child(3) .bo-trust-ico{color:#3E8E5A;background:#E8F5EC;border-color:rgba(62,142,90,.2)}
.bo-trust li:hover .bo-trust-ico{background:#fff;border-color:currentColor}
.bo-trust-ico .bo-i{width:21px;height:21px}
.bo-trust strong{display:block;font-size:15px;font-weight:700}
.bo-trust p{font-size:13px;color:var(--mut);margin-top:4px;line-height:1.6}

/* ── 섹션 공통 ─────────────────────────── */
.bo-sec{margin-top:64px}
.bo-sec-hd{display:flex;align-items:baseline;gap:12px;margin-bottom:24px}
.bo-sec-hd h2{position:relative;font-size:25px;font-weight:800;letter-spacing:-.035em;padding-left:14px}
.bo-sec-hd h2::before{content:"";position:absolute;left:0;top:6px;bottom:4px;width:5px;border-radius:3px;background:var(--grad-brand)}
.bo-sec-sub{font-size:13.5px;color:var(--mut)}
.bo-more{margin-left:auto;display:inline-flex;align-items:center;gap:3px;font-size:13.5px;font-weight:600;color:var(--brand)}
.bo-more .bo-i{width:15px;height:15px}
.bo-more:hover{text-decoration:underline}
.bo-band{margin-top:64px;padding:10px 0 60px;
  background:linear-gradient(180deg,#F7F8FF 0%,#EFF3FF 60%,#FFF7F9 100%)}
.bo-band .bo-sec{margin-top:48px}

/* 업종 타일 — 컬러 + 입체 */
.bo-cats-row{display:grid;grid-template-columns:repeat(11,1fr);gap:10px}
.bo-cats-row a{display:flex;flex-direction:column;align-items:center;gap:10px;padding:16px 6px 14px;border-radius:var(--r-m);
  transition:.24s var(--ease)}
.bo-cats-row a:hover{background:#fff;box-shadow:var(--sh-2);transform:translateY(-4px)}
.bo-cat-ico{position:relative;display:grid;place-items:center;width:62px;height:62px;border-radius:22px;color:#fff;
  transition:.24s var(--ease);overflow:hidden}
.bo-cat-ico::before{content:"";position:absolute;inset:0;border-radius:inherit;
  background:linear-gradient(180deg,rgba(255,255,255,.42),rgba(255,255,255,0) 55%)}
.bo-cat-ico::after{content:"";position:absolute;left:-20%;top:-60%;width:90%;height:120%;border-radius:50%;
  background:radial-gradient(closest-side,rgba(255,255,255,.35),transparent)}
.bo-cat-ico .bo-i{position:relative;z-index:1;width:29px;height:29px;filter:drop-shadow(0 2px 3px rgba(0,0,0,.18))}
.bo-cats-row a:hover .bo-cat-ico{transform:translateY(-2px) scale(1.04)}
.bo-cat-lb{font-size:13px;font-weight:700;white-space:nowrap}
.bo-cat-sub{font-size:11.5px;color:var(--mut)}
.bo-ci-swedish{background:linear-gradient(145deg,#7B8CFF,#4453E8);box-shadow:0 12px 22px rgba(68,83,232,.36)}
.bo-ci-aroma  {background:linear-gradient(145deg,#4FE0B0,#12A97C);box-shadow:0 12px 22px rgba(18,169,124,.36)}
.bo-ci-thai   {background:linear-gradient(145deg,#FF9CC0,#EF4E86);box-shadow:0 12px 22px rgba(239,78,134,.34)}
.bo-ci-dry    {background:linear-gradient(145deg,#FFC96B,#F5921B);box-shadow:0 12px 22px rgba(245,146,27,.34)}
.bo-ci-sports {background:linear-gradient(145deg,#5FD6F5,#2B87E0);box-shadow:0 12px 22px rgba(43,135,224,.34)}
.bo-ci-home   {background:linear-gradient(145deg,#B08BFF,#6F3EE0);box-shadow:0 12px 22px rgba(111,62,224,.34)}
.bo-ci-solo   {background:linear-gradient(145deg,#FFD37A,#F0A32B);box-shadow:0 12px 22px rgba(240,163,43,.34)}
.bo-ci-lomi   {background:linear-gradient(145deg,#7BE8CE,#17B08F);box-shadow:0 12px 22px rgba(23,176,143,.34)}
.bo-ci-couple {background:linear-gradient(145deg,#FF9B7A,#EC4B3A);box-shadow:0 12px 22px rgba(236,75,58,.32)}
.bo-ci-foot   {background:linear-gradient(145deg,#63E3D0,#0FA79A);box-shadow:0 12px 22px rgba(15,167,154,.34)}
.bo-ci-waxing {background:linear-gradient(145deg,#FFB3D8,#E5559C);box-shadow:0 12px 22px rgba(229,85,156,.32)}
.bo-ci-spa    {background:linear-gradient(145deg,#8FD4FF,#3F73D8);box-shadow:0 12px 22px rgba(63,115,216,.34)}
.bo-ci-near   {background:linear-gradient(145deg,#5B6BF0,#DB2777);box-shadow:0 12px 22px rgba(219,39,119,.4)}

/* 카드 레일 */
.bo-rail-wrap{position:relative}
.bo-rail{display:flex;gap:18px;overflow-x:auto;scroll-behavior:smooth;scroll-snap-type:x proximity;scrollbar-width:none;padding:4px 2px 8px}
.bo-rail::-webkit-scrollbar{display:none}
.bo-card{flex:0 0 calc((100% - 72px)/5);scroll-snap-align:start;min-width:190px}
.bo-card>a{display:block;border-radius:var(--r-m);transition:.24s var(--ease)}
.bo-card>a:hover{transform:translateY(-4px)}
.bo-card-thumb{position:relative;display:grid;place-items:center;aspect-ratio:4/3;border-radius:var(--r-m);margin-bottom:12px;
  overflow:hidden;box-shadow:var(--sh-2)}
.bo-card-thumb::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(255,255,255,.28),rgba(255,255,255,0) 58%)}
.bo-card-mark{position:relative;font-style:normal;font-size:26px;font-weight:800;letter-spacing:.06em;color:rgba(255,255,255,.92);
  text-shadow:0 3px 10px rgba(0,0,0,.2)}
.bo-card-soon{position:absolute;bottom:10px;left:10px;font-style:normal;font-size:11px;color:#fff;
  background:rgba(20,22,50,.36);backdrop-filter:blur(4px);padding:4px 9px;border-radius:999px}
.bo-cg-1{background:linear-gradient(140deg,#7B8CFF,#4453E8)}
.bo-cg-2{background:linear-gradient(140deg,#4FE0B0,#12A97C)}
.bo-cg-3{background:linear-gradient(140deg,#FF9CC0,#EF4E86)}
.bo-cg-4{background:linear-gradient(140deg,#FFC96B,#F5921B)}
.bo-cg-5{background:linear-gradient(140deg,#5FD6F5,#2B87E0)}
.bo-cg-6{background:linear-gradient(140deg,#B08BFF,#6F3EE0)}
.bo-card-area{display:block;font-size:12px;color:var(--brand);font-weight:700;margin-bottom:2px}
.bo-card-t{display:block;font-size:15px;font-weight:700}
.bo-card-tags{display:flex;flex-wrap:wrap;gap:5px;margin-top:9px}
.bo-card-tags i{font-style:normal;font-size:11.5px;color:var(--ink2);background:var(--wash);border:1px solid var(--line2);
  border-radius:999px;padding:3px 9px}
.bo-rail-arw{position:absolute;top:30%;width:44px;height:44px;border-radius:50%;background:#fff;border:1px solid var(--line);
  box-shadow:var(--sh-2);display:grid;place-items:center;z-index:2;transition:.2s var(--ease)}
.bo-rail-arw:hover{background:var(--grad-brand);color:#fff;border-color:transparent;box-shadow:var(--sh-brand)}
.bo-rail-arw[disabled]{opacity:0;pointer-events:none}
.bo-rail-arw.bo-prev{left:-18px} .bo-rail-arw.bo-next{right:-18px}

/* 혜택 */
.bo-bene{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.bo-bene a{display:block;transition:.24s var(--ease)}
.bo-bene a:hover{transform:translateY(-4px)}
.bo-bene-img{position:relative;display:block;border-radius:var(--r-m);overflow:hidden;margin-bottom:12px;
  box-shadow:var(--sh-2)}
.bo-bene-img img{aspect-ratio:4/3;object-fit:cover;transition:transform .55s var(--ease)}
.bo-bene a:hover img{transform:scale(1.06)}
.bo-badge{position:absolute;left:12px;top:12px;font-style:normal;font-size:11.5px;font-weight:800;color:#fff;
  background:var(--grad-brand);padding:5px 11px;border-radius:999px;box-shadow:0 8px 16px rgba(76,99,240,.36)}
.bo-bene strong{display:block;font-size:15px;font-weight:700}
.bo-bene span{font-size:13px;color:var(--mut)}

/* 기획전 */
.bo-promo{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.bo-promo a{position:relative;display:block;height:278px;border-radius:var(--r-l);overflow:hidden;color:#fff;
  box-shadow:var(--sh-2);transition:.28s var(--ease)}
.bo-promo a:hover{transform:translateY(-5px);box-shadow:var(--sh-3)}
.bo-promo li.is-big a{height:306px}
.bo-promo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.bo-promo a:hover img{transform:scale(1.07)}
.bo-promo a::after{content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(18,16,52,.06) 26%,rgba(18,16,52,.78) 100%),
             radial-gradient(90% 60% at 80% 0%,rgba(122,90,248,.32),transparent 70%)}
.bo-promo-tag{position:absolute;left:18px;top:18px;z-index:2;font-style:normal;font-size:11.5px;font-weight:800;color:#fff;
  background:rgba(255,255,255,.18);border:1px solid rgba(255,255,255,.36);backdrop-filter:blur(6px);padding:5px 12px;border-radius:999px}
.bo-promo-tx{position:absolute;left:20px;right:20px;bottom:20px;z-index:2;display:block}
.bo-promo-tx strong{display:block;font-size:21px;font-weight:800;letter-spacing:-.032em;line-height:1.3;text-shadow:0 3px 14px rgba(0,0,0,.4)}
.bo-promo-tx em{font-style:normal;display:block;font-size:13px;opacity:.92;margin-top:5px}

/* 지역 */
.bo-regions{display:grid;grid-template-columns:repeat(6,1fr);gap:10px}
.bo-regions a{display:flex;align-items:center;justify-content:space-between;padding:14px 18px;border:1px solid var(--line);
  border-radius:var(--r-s);font-size:14.5px;font-weight:700;background:#fff;box-shadow:var(--sh-1);transition:.22s var(--ease)}
.bo-regions .bo-i{width:15px;height:15px;color:var(--mut)}
.bo-regions a:hover{color:#fff;border-color:transparent;background:var(--grad-brand);box-shadow:var(--sh-brand);transform:translateY(-2px)}
.bo-regions a:hover .bo-i{color:#fff}

/* 새 소식 */
.bo-news{margin-bottom:80px}
.bo-latest{border:1px solid var(--line2);border-radius:var(--r-m);padding:6px 20px;box-shadow:var(--sh-1)}
.bo-latest .lt{margin:0}
.bo-latest .lt h2{display:none}
.bo-latest .lt li{padding:11px 0;border-bottom:1px solid var(--line2);font-size:14px}
.bo-latest .lt li:last-child{border-bottom:0}

/* ── 푸터 ──────────────────────────────── */
.bo-ft{background:linear-gradient(160deg,#171A3A 0%,#20204A 45%,#2A1E46 100%);color:#B9BDDA;padding:54px 0 40px}
.bo-ft-top{display:grid;grid-template-columns:1.5fr 2fr;gap:40px}
.bo-ft-brand{display:flex;flex-direction:column;gap:10px}
.bo-ft-logo{height:58px;width:auto;margin-bottom:6px}
.bo-ft-brand p{font-size:12.5px;line-height:1.85}
.bo-ft-nav{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.bo-ft-nav h3{font-size:11.5px;letter-spacing:.09em;color:#9AA0FF;margin-bottom:12px}
.bo-ft-nav a{display:block;font-size:13px;padding:5px 0}
.bo-ft-nav a:hover{color:#fff}
.bo-ft-btm{margin-top:34px;padding-top:22px;border-top:1px solid rgba(255,255,255,.12)}
.bo-ft-btm p{font-size:11.5px;line-height:1.9;color:#8B90B4}
.bo-ft-disclaimer{font-size:.72rem;line-height:1.8;color:#767ba3;opacity:.85}

.bo-top{position:fixed;right:24px;bottom:28px;width:48px;height:48px;border-radius:50%;color:#fff;
  background:var(--grad-brand);box-shadow:var(--sh-brand);display:none;place-items:center;z-index:45}
.bo-top.is-on{display:grid}
.bo-top:hover{transform:translateY(-2px)}

/* ── 게시판·회원 페이지(그누 기본 스킨과 공존) ── */
#container{max-width:var(--wrap);margin:30px auto 70px;padding:0 24px}
#container_title{font-size:24px;font-weight:800;letter-spacing:-.035em;margin-bottom:16px}

/* ── 반응형 ───────────────────────────── */
@media (max-width:1180px){
  .bo-cats-row{grid-template-columns:repeat(6,1fr)}
  .bo-regions{grid-template-columns:repeat(4,1fr)}
  .bo-card{flex:0 0 calc((100% - 36px)/3)}
  .bo-sheet-in{grid-template-columns:1.4fr 1fr}
  .bo-slide h2{font-size:35px}
}
@media (max-width:860px){
  .bo-bene{grid-template-columns:repeat(2,1fr)}
  .bo-promo{grid-template-columns:repeat(2,1fr)}
  .bo-trust ul{grid-template-columns:1fr;gap:12px}
  .bo-ft-top{grid-template-columns:1fr}
}
@media (max-width:760px){
  .bo-wrap{padding:0 16px}
  .bo-util{display:none}
  .bo-hd-row{height:60px;padding:0;gap:12px;flex-wrap:nowrap}
  .bo-logo svg,.bo-logo img{height:26px}
  .bo-hd-join{height:36px;padding:0 14px;font-size:12.5px!important}
  .bo-gnb-all span,.bo-gnb-quick{display:none}
  .bo-gnb-row{height:46px;gap:12px}
  .bo-gnb-nav{gap:20px}
  .bo-hero-wrap{margin-top:14px}
  .bo-hero{border-radius:var(--r-m)}
  .bo-slide{height:350px}
  .bo-slide-body{padding:0 22px;max-width:none;top:auto;bottom:66px;transform:none}
  .bo-slide h2{font-size:26px;line-height:1.3}
  .bo-slide-sub{font-size:13.5px;margin-top:10px}
  .bo-btn{height:42px;padding:0 18px;font-size:13.5px;margin-top:16px}
  .bo-hero-arw{display:none}
  .bo-hero-foot{left:22px;right:16px;bottom:16px}
  .bo-cats-row{grid-template-columns:repeat(4,1fr);gap:4px}
  .bo-cats-row a{padding:12px 2px 10px}
  .bo-cat-ico{width:54px;height:54px;border-radius:18px}
  .bo-cat-ico .bo-i{width:25px;height:25px}
  .bo-cat-sub{display:none}
  .bo-sec{margin-top:44px}
  .bo-sec-hd h2{font-size:20px;padding-left:11px}
  .bo-sec-sub{display:none}
  .bo-card{flex:0 0 62%;min-width:0}
  .bo-rail-arw{display:none}
  .bo-bene{gap:14px}
  .bo-promo{grid-template-columns:1fr;gap:14px}
  .bo-promo a,.bo-promo li.is-big a{height:214px}
  .bo-regions{grid-template-columns:repeat(3,1fr);gap:8px}
  .bo-regions a{padding:12px 14px;font-size:13.5px}
  .bo-band{margin-top:44px;padding-bottom:44px}
  .bo-ft-nav{grid-template-columns:repeat(3,1fr);gap:10px}
  .bo-news{margin-bottom:52px}
}
@media (prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}

/* ══════════════════════════════════════════════════════════
   매장·지역·업종 페이지 (2026-08-04)
   ══════════════════════════════════════════════════════════ */

/* 빵부스러기 */
.bo-crumb{max-width:var(--wrap);margin:0 auto;padding:16px 24px 0;font-size:12.5px;color:var(--mut)}
.bo-crumb ol{display:flex;flex-wrap:wrap;align-items:center;gap:6px}
.bo-crumb li+li:before{content:"›";margin-right:6px;opacity:.5}
.bo-crumb a:hover{color:var(--brand);text-decoration:underline}
.bo-crumb span{color:var(--ink2);font-weight:600}

.bo-sec-hd2{margin-top:44px}
.bo-btn-line{background:#fff!important;color:var(--brand)!important;border:1.5px solid #BCE8DE;box-shadow:none!important}
.bo-btn-line:hover{border-color:var(--brand);background:var(--brand-soft)!important}
.bo-note{margin-top:12px;font-size:12.5px;color:var(--mut)}
.bo-empty-line{padding:40px 4px;color:var(--mut);text-align:center;background:var(--wash);border-radius:var(--r-m)}

/* 매장 카드 그리드 */
.bo-scards{display:grid;grid-template-columns:repeat(4,1fr);gap:22px 20px;margin-top:22px}
/* grid 트랙 기본값 minmax(auto,1fr) - 카드 안 긴 제목(white-space:nowrap)이 min-content 를
   밀어 올려 트랙이 1fr 몫보다 넓어지고, 모바일에서 카드가 옆으로 밀려나가 2열이 1열처럼
   보인다(온기 2026-08-23 실측 -> 계열 이식). */
.bo-scard{min-width:0;display:flex}
.bo-scard>a{display:flex;flex-direction:column;width:100%;border-radius:var(--r-m);overflow:hidden;background:#fff;
  border:1px solid var(--line);box-shadow:var(--sh-1);transition:transform .22s var(--ease),box-shadow .22s var(--ease),border-color .22s}
.bo-scard>a:hover{transform:translateY(-4px);box-shadow:var(--sh-2);border-color:#BCE8DE}
.bo-scard-th{display:block;position:relative;aspect-ratio:4/3;overflow:hidden}
.bo-th{width:100%;height:100%;display:block}
.bo-scard-th{flex:0 0 auto}
.bo-scard-b{display:flex;flex-direction:column;flex:1 1 auto;padding:14px 16px 16px}
.bo-scard-area{display:block;font-size:12px;color:var(--brand);font-weight:700;letter-spacing:-.01em}
.bo-scard-t{display:block;margin-top:3px;font-size:15.5px;font-weight:800;letter-spacing:-.03em;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.bo-scard-tags{display:flex;flex-wrap:wrap;gap:5px;margin-top:9px}
.bo-scard-tags i{font-style:normal;font-size:11.5px;padding:3px 8px;border-radius:999px;
  background:var(--brand-soft);color:var(--brand-d);font-weight:600}
.bo-scard-meta{display:flex;align-items:center;gap:5px;margin-top:auto;padding-top:9px;font-size:12px;color:var(--mut)}
.bo-scard-meta .bo-i{width:14px;height:14px}

/* 칩 */
.bo-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}
.bo-chips a{display:inline-block;padding:8px 14px;border-radius:999px;font-size:13px;font-weight:600;
  background:#fff;border:1px solid var(--line);color:var(--ink2);transition:.18s var(--ease)}
.bo-chips a:hover{border-color:var(--brand);color:var(--brand);background:var(--brand-soft)}
.bo-chips .is-on a{background:var(--grad-brand);color:#fff;border-color:transparent;box-shadow:var(--sh-brand)}
.bo-regions-sm a{font-size:14px;padding:12px 14px}

/* 페이지네이션 */
.bo-pager{margin-top:34px}
.bo-pager ul{display:flex;justify-content:center;gap:6px}
.bo-pager a,.bo-pager em{display:grid;place-items:center;min-width:38px;height:38px;padding:0 12px;
  border-radius:12px;font-size:13.5px;font-weight:700;font-style:normal;border:1px solid var(--line);background:#fff}
.bo-pager a:hover{border-color:var(--brand);color:var(--brand)}
.bo-pager em{background:var(--grad-brand);color:#fff;border-color:transparent;box-shadow:var(--sh-brand)}

/* 업종 목록 */
.bo-catlist{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:22px}
.bo-catlist a{display:grid;grid-template-columns:56px 1fr;gap:14px;align-items:start;padding:18px;
  background:#fff;border:1px solid var(--line);border-radius:var(--r-m);box-shadow:var(--sh-1);transition:.22s var(--ease)}
.bo-catlist a:hover{transform:translateY(-3px);box-shadow:var(--sh-2);border-color:#BCE8DE}
.bo-catlist b{display:block;font-size:16px;font-weight:800;letter-spacing:-.03em}
.bo-catlist em{display:block;margin-top:5px;font-size:13px;font-style:normal;color:var(--mut);line-height:1.5}
.bo-catlist .bo-cat-ico{width:56px;height:56px}

/* 매장 상세 */
.bo-detail{max-width:1080px}
.bo-dt-hd{display:grid;grid-template-columns:300px 1fr;gap:28px;align-items:start;
  padding:26px;border-radius:var(--r-l);background:var(--wash);border:1px solid var(--line2)}
.bo-dt-hd-th{border-radius:var(--r-m);overflow:hidden;aspect-ratio:4/3;box-shadow:var(--sh-2)}
.bo-dt-area{display:flex;align-items:center;gap:6px;font-size:13px;font-weight:700;color:var(--brand)}
.bo-dt-area .bo-i{width:16px;height:16px}
.bo-dt-hd-b h1{margin-top:8px;font-size:30px;font-weight:800;letter-spacing:-.04em;line-height:1.24}
.bo-dt-tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:12px}
.bo-dt-tags a{font-size:12.5px;font-weight:600;padding:5px 11px;border-radius:999px;
  background:#fff;border:1px solid var(--line);color:var(--ink2)}
.bo-dt-tags a:hover{border-color:var(--brand);color:var(--brand)}
.bo-dt-cta{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}
.bo-dt-cta .bo-i{width:18px;height:18px;margin-right:2px}

.bo-detail section{margin-top:40px}
.bo-detail h2{font-size:19px;font-weight:800;letter-spacing:-.035em;
  padding-left:12px;border-left:4px solid transparent;border-image:var(--grad-brand) 1}
.bo-dt-info dl{display:grid;grid-template-columns:120px 1fr;gap:0;margin-top:16px;
  border-top:1px solid var(--line);font-size:14.5px}
.bo-dt-info dt{padding:13px 4px;border-bottom:1px solid var(--line2);font-weight:700;color:var(--ink2);margin:0}
.bo-dt-info dd{padding:13px 4px;border-bottom:1px solid var(--line2);margin:0}
.bo-dt-info dd a{color:var(--brand);font-weight:700}

/* ★코스 구성은 PC 에서도 세로 한 줄 — 시간·금액을 위아래로 훑는 편이 비교가 빠르다(사용자 지시) */
.bo-courses{display:flex;flex-direction:column;gap:10px;margin-top:16px}
.bo-courses li{display:flex;justify-content:space-between;align-items:center;gap:14px;
  padding:14px 16px;border-radius:var(--r-s);background:#fff;border:1px solid var(--line);box-shadow:var(--sh-1)}
.bo-c-n{font-weight:700;font-size:14.5px}
.bo-c-p{font-weight:800;color:var(--brand-d);white-space:nowrap}

.bo-dt-intro p{max-width:44rem;margin-top:14px;font-size:15.5px;line-height:1.85;color:var(--ink2)}

/* 검색 페이지 입력 */
.bo-searchbig{display:flex;gap:8px;margin-top:20px;max-width:640px}
.bo-searchbig input{flex:1;height:52px;padding:0 18px;border-radius:999px;border:1.5px solid var(--line);
  background:#fff;font-size:15px;box-shadow:var(--sh-1)}
.bo-searchbig input:focus{border-color:var(--brand);outline:none}
.bo-searchbig button{height:52px;padding:0 26px;border-radius:999px;font-weight:800;color:#fff;
  background:var(--grad-brand);box-shadow:var(--sh-brand)}

.bo-ft-tel{font-size:14px;font-weight:700}
.bo-ft-tel a{color:#fff}

.bo-empty{text-align:center;padding:80px 0}
.bo-empty h1{font-size:26px;font-weight:800;letter-spacing:-.04em}
.bo-empty p{margin-top:10px;color:var(--mut)}
.bo-empty-act{display:flex;justify-content:center;gap:10px;margin-top:24px}

@media (max-width:1080px){
  .bo-scards{grid-template-columns:repeat(3,1fr)}
  .bo-catlist{grid-template-columns:repeat(2,1fr)}
  .bo-dt-hd{grid-template-columns:220px 1fr;gap:20px}
  .bo-dt-hd-b h1{font-size:25px}
}
@media (max-width:760px){
  .bo-crumb{padding:12px 16px 0;font-size:12px}
  .bo-scards{grid-template-columns:repeat(2,1fr);gap:16px 12px}
  .bo-catlist{grid-template-columns:1fr}
  .bo-dt-hd{grid-template-columns:1fr;padding:18px;border-radius:var(--r-m)}
  .bo-dt-hd-th{max-width:280px}
  .bo-dt-hd-b h1{font-size:22px}
  .bo-dt-info dl{grid-template-columns:92px 1fr;font-size:14px}
  .bo-courses{grid-template-columns:1fr}
  .bo-detail h2{font-size:17px}
  .bo-dt-intro p{font-size:15px;line-height:1.8}
}

/* 상세 — 교통 안내 · FAQ (2026-08-05) */
.bo-dt-access p{max-width:44rem;margin-top:12px;font-size:15.5px;line-height:1.85;color:var(--ink2)}
.bo-dt-faq dl{margin-top:16px;border-top:1px solid var(--line)}
.bo-dt-faq dt{padding:16px 4px 6px;font-weight:800;font-size:15.5px;letter-spacing:-.02em}
.bo-dt-faq dd{margin:0;padding:0 4px 16px;border-bottom:1px solid var(--line2);
  max-width:44rem;font-size:15px;line-height:1.8;color:var(--ink2)}
.bo-th{width:100%;height:100%;display:block;object-fit:cover}

/* ══════════════════════════════════════════════════════════
   업소 상세 — 히어로 + 정보 셀 재설계 (2026-08-05)
   사진을 배경으로 깔고 정보는 유리판 위에 얹는다. 각 항목은 독립된 셀.
   ══════════════════════════════════════════════════════════ */
.bo-detail{max-width:none;padding:0}
.bo-detail-body{max-width:1080px;margin:0 auto;padding:0 24px}

/* ── 히어로 ── */
.bo-hero-shop{position:relative;overflow:hidden;isolation:isolate;
  min-height:380px;display:flex;align-items:flex-end;
  border-radius:0 0 var(--r-l) var(--r-l);margin-bottom:34px}
.bo-hero-shop-bg{position:absolute;inset:0;z-index:-2}
.bo-hero-shop-bg .bo-th,.bo-hero-shop-bg img{width:100%;height:100%;object-fit:cover;display:block}
.bo-hero-shop:before{content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,rgba(6,30,26,.10) 0%,rgba(6,30,26,.55) 45%,rgba(6,30,26,.88) 100%)}
.bo-hero-shop:after{content:"";position:absolute;inset:0;z-index:-1;
  background:radial-gradient(120% 90% at 12% 100%,rgba(219,39,119,.5),transparent 62%)}
.bo-hero-shop-in{position:relative;width:100%;max-width:1080px;margin:0 auto;
  padding:38px 24px 34px;color:#fff}
.bo-hero-shop-area{display:inline-flex;align-items:center;gap:6px;
  padding:6px 13px;border-radius:999px;font-size:13px;font-weight:700;
  background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.26);
  backdrop-filter:blur(8px);color:#fff}
.bo-hero-shop-area .bo-i{width:15px;height:15px}
.bo-hero-shop-in h1{margin:14px 0 0;font-size:38px;font-weight:800;letter-spacing:-.045em;
  line-height:1.18;text-shadow:0 2px 18px rgba(0,0,0,.45)}
.bo-hero-shop-tags{display:flex;flex-wrap:wrap;gap:7px;margin-top:14px}
.bo-hero-shop-tags a{font-size:12.5px;font-weight:700;padding:6px 13px;border-radius:999px;
  background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.3);color:#fff;
  backdrop-filter:blur(6px);transition:.18s var(--ease)}
.bo-hero-shop-tags a:hover{background:#fff;color:var(--brand-d);border-color:transparent}
.bo-hero-shop-cta{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.bo-btn-lg{height:52px;padding:0 24px;font-size:15.5px;border-radius:16px;
  box-shadow:0 14px 30px rgba(219,39,119,.45),inset 0 1px 0 rgba(255,255,255,.35)}
.bo-btn-lg .bo-i{width:19px;height:19px;margin-right:4px}
.bo-btn-ghost{display:inline-flex;align-items:center;gap:4px;height:52px;padding:0 20px;
  border-radius:16px;font-weight:700;font-size:14.5px;color:#fff;
  background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.34);backdrop-filter:blur(8px);
  transition:.2s var(--ease)}
.bo-btn-ghost:hover{background:rgba(255,255,255,.24);transform:translateY(-2px)}
.bo-btn-ghost .bo-i{width:16px;height:16px}

/* ── 정보 셀 ── */
.bo-fact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:34px}
.bo-fact{position:relative;display:grid;grid-template-columns:46px 1fr;grid-template-rows:auto auto;
  gap:2px 13px;align-items:start;padding:18px;border-radius:var(--r-m);background:#fff;
  border:1px solid var(--line);box-shadow:var(--sh-1);
  transition:transform .2s var(--ease),box-shadow .2s var(--ease)}
.bo-fact:hover{transform:translateY(-3px);box-shadow:var(--sh-2)}
.bo-fact:before{content:"";position:absolute;inset:0 0 auto;height:3px;border-radius:var(--r-m) var(--r-m) 0 0;
  background:var(--grad-brand);opacity:.9}
.bo-fact-ico{grid-row:1/3;display:grid;place-items:center;width:46px;height:46px;border-radius:14px;
  color:#fff;box-shadow:0 6px 14px rgba(20,24,60,.16),inset 0 1px 0 rgba(255,255,255,.4)}
.bo-fi-map{background:linear-gradient(135deg,#DB2777,#16A34A)}
.bo-fi-stn{background:linear-gradient(135deg,#16A34A,#DB2777)}
.bo-fi-time{background:linear-gradient(135deg,#22C55E,#3FA9F5)}
.bo-fi-fac{background:linear-gradient(135deg,#7ED957,#16A34A)}
.bo-fi-tel{background:linear-gradient(135deg,#86EFAC,#16A34A)}
.bo-fact-ico .bo-i{width:22px;height:22px}
.bo-fact-k{font-size:12px;font-weight:800;color:var(--mut);letter-spacing:.01em}
.bo-fact-v{font-size:14.5px;font-weight:700;line-height:1.5;letter-spacing:-.02em;word-break:keep-all}
.bo-fact-v a{color:var(--brand-d)}
.bo-fact-tel .bo-fact-v{font-size:16px;letter-spacing:-.03em}
.bo-chipmini{display:inline-block;font-style:normal;font-size:12px;font-weight:700;
  padding:3px 9px;margin:3px 4px 0 0;border-radius:999px;background:var(--brand-soft);color:var(--brand-d)}

/* ── 본문 카드 ── */
.bo-card{position:relative;margin-top:26px;padding:26px 28px;background:#fff;
  border:1px solid var(--line);border-radius:var(--r-l);box-shadow:var(--sh-1)}
.bo-card>h2{margin:0 0 4px;font-size:19px;font-weight:800;letter-spacing:-.035em;
  padding-left:12px;border-left:4px solid transparent;border-image:var(--grad-brand) 1}
.bo-card p{max-width:44rem}
.bo-detail .bo-courses{margin-top:16px}
.bo-detail .bo-courses li{background:var(--wash);border-color:var(--line2)}
.bo-dt-faq dl{margin-top:14px;border-top:0}
.bo-dt-faq dt{padding:16px 16px 8px;background:var(--wash);border-radius:var(--r-s) var(--r-s) 0 0;
  margin-top:10px;border:1px solid var(--line2);border-bottom:0}
.bo-dt-faq dd{padding:0 16px 16px;background:var(--wash);border-radius:0 0 var(--r-s) var(--r-s);
  border:1px solid var(--line2);border-top:0}
.bo-dt-near{max-width:1080px;margin:44px auto 0;padding:0 24px}

@media (max-width:1080px){
  .bo-fact-grid{grid-template-columns:repeat(2,1fr)}
  .bo-hero-shop-in h1{font-size:31px}
}
@media (max-width:760px){
  .bo-hero-shop{min-height:300px;border-radius:0 0 var(--r-m) var(--r-m);margin-bottom:24px}
  .bo-hero-shop-in{padding:26px 16px 24px}
  .bo-hero-shop-in h1{font-size:25px}
  .bo-detail-body,.bo-dt-near{padding:0 16px}
  .bo-fact-grid{grid-template-columns:1fr;gap:10px}
  .bo-fact{padding:15px}
  .bo-card{padding:20px 18px;border-radius:var(--r-m)}
  .bo-btn-lg,.bo-btn-ghost{height:48px;font-size:14.5px}
}

/* 푸터 제휴문의 */
.bo-ft-sep{margin:0 8px;opacity:.4}
.bo-ft-tel a{color:#fff;text-decoration:underline;text-underline-offset:3px}

/* ══════════════════════════════════════════════════════════
   매거진(이용 안내) — 웹진 레이아웃 (2026-08-05)
   본문 가로폭은 한 줄 40~45자에 맞춘다(읽기 피로를 줄이는 폭).
   ══════════════════════════════════════════════════════════ */
.bo-mag{padding-bottom:10px}
.bo-mag-hd{position:relative;overflow:hidden;isolation:isolate;
  background:linear-gradient(135deg,#07784F 0%,#DB2777 45%,#3FA9F5 100%);color:#fff;
  border-radius:0 0 var(--r-l) var(--r-l);margin-bottom:38px}
.bo-mag-hd:after{content:"";position:absolute;inset:0;z-index:-1;
  background:radial-gradient(90% 120% at 85% 0%,rgba(255,255,255,.22),transparent 60%)}
.bo-mag-hd-in{padding:46px 24px 42px;max-width:820px}
.bo-mag-kicker{display:flex;align-items:center;gap:9px;font-size:12.5px;font-weight:700;
  color:rgba(255,255,255,.86)}
.bo-mag-kicker span{padding:5px 12px;border-radius:999px;background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.28);backdrop-filter:blur(6px)}
.bo-mag-kicker i{width:3px;height:3px;border-radius:50%;background:rgba(255,255,255,.6)}
.bo-mag-hd-in h1{margin:16px 0 0;font-size:36px;font-weight:800;letter-spacing:-.045em;line-height:1.24;
  text-shadow:0 2px 20px rgba(0,0,0,.22)}
.bo-mag-lead{margin-top:14px;font-size:16px;line-height:1.7;color:rgba(255,255,255,.9);max-width:44rem}

.bo-mag-grid{display:grid;grid-template-columns:220px minmax(0,1fr);gap:44px;align-items:start;
  padding-bottom:20px}
.bo-mag-toc{position:sticky;top:96px;padding:20px;border-radius:var(--r-m);
  background:var(--wash);border:1px solid var(--line2);box-shadow:var(--sh-1)}
.bo-mag-toc-t{font-size:12px;font-weight:800;color:var(--brand-d);letter-spacing:.04em}
.bo-mag-toc ol{margin-top:10px;counter-reset:t}
.bo-mag-toc li{counter-increment:t;margin-top:9px;font-size:13.5px;line-height:1.5}
.bo-mag-toc li:before{content:counter(t);display:inline-grid;place-items:center;width:19px;height:19px;
  margin-right:8px;border-radius:6px;background:#fff;border:1px solid var(--line);
  font-size:11px;font-weight:800;color:var(--brand)}
.bo-mag-toc a{color:var(--ink2)}
.bo-mag-toc a:hover{color:var(--brand);text-decoration:underline}

/* ── 본문 리딩 ── */
.bo-mag-body{max-width:44rem;font-size:16.5px;line-height:1.9;color:var(--ink2);letter-spacing:-.01em}
.bo-mag-body p{margin:0 0 1.35em}
.bo-mag-body h2{margin:2.1em 0 .7em;font-size:21px;font-weight:800;color:var(--ink);
  letter-spacing:-.035em;line-height:1.35;scroll-margin-top:110px;
  padding-left:14px;border-left:5px solid transparent;border-image:var(--grad-brand) 1}
.bo-mag-body h3{margin:1.6em 0 .5em;font-size:17.5px;font-weight:800;color:var(--ink)}
.bo-mag-body strong,.bo-mag-body b{color:var(--ink);font-weight:800}
.bo-mag-body a{color:var(--brand-d);font-weight:700;text-decoration:underline;
  text-underline-offset:3px;text-decoration-thickness:1.5px}
.bo-mag-body a:hover{color:var(--brand)}
.bo-mag-body ul,.bo-mag-body ol{margin:0 0 1.35em;padding-left:2px}
.bo-mag-body li{position:relative;margin:.5em 0 .5em 1.15em;line-height:1.85}
.bo-mag-body ul>li:before{content:"";position:absolute;left:-1.05em;top:.72em;width:6px;height:6px;
  border-radius:50%;background:var(--brand);opacity:.75}
.bo-mag-body ol{counter-reset:n}
.bo-mag-body ol>li{counter-increment:n}
.bo-mag-body ol>li:before{content:counter(n);position:absolute;left:-1.35em;top:.15em;
  width:20px;height:20px;display:grid;place-items:center;border-radius:7px;
  background:var(--brand-soft);color:var(--brand-d);font-size:11.5px;font-weight:800}
.bo-mag-body img{border-radius:var(--r-m);box-shadow:var(--sh-2);margin:1.4em 0}
/* FAQ 문답 — 본문 마지막의 Q/A 문단을 카드처럼 */
.bo-mag-body p>strong:first-child{display:inline}

/* ── 카드 목록 ── */
.bo-mag-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:22px}
.bo-mag-cards a{display:flex;flex-direction:column;height:100%;padding:24px;border-radius:var(--r-m);
  background:#fff;border:1px solid var(--line);box-shadow:var(--sh-1);
  transition:transform .22s var(--ease),box-shadow .22s var(--ease),border-color .22s}
.bo-mag-cards a:hover{transform:translateY(-4px);box-shadow:var(--sh-2);border-color:#BCE8DE}
.bo-mag-card-k{align-self:flex-start;font-size:11.5px;font-weight:800;padding:4px 10px;border-radius:999px;
  background:var(--brand-soft);color:var(--brand-d)}
.bo-mag-cards strong{display:block;margin-top:12px;font-size:16.5px;font-weight:800;
  letter-spacing:-.03em;line-height:1.42;color:var(--ink)}
.bo-mag-card-x{display:block;margin-top:9px;font-size:13.5px;line-height:1.65;color:var(--mut)}
.bo-mag-cards em{margin-top:auto;padding-top:14px;font-style:normal;font-size:12px;color:var(--mut)}
.bo-mag-cards-lg li.is-lead{grid-column:span 3}
.bo-mag-cards-lg li.is-lead a{background:linear-gradient(135deg,#F7F8FF,#FFF);border-color:#BCE8DE}
.bo-mag-cards-lg li.is-lead strong{font-size:22px;line-height:1.34}
.bo-mag-cards-lg li.is-lead .bo-mag-card-x{font-size:14.5px;max-width:52rem}

@media (max-width:1080px){
  .bo-mag-grid{grid-template-columns:1fr;gap:24px}
  .bo-mag-toc{position:static}
  .bo-mag-cards{grid-template-columns:repeat(2,1fr)}
  .bo-mag-cards-lg li.is-lead{grid-column:span 2}
  .bo-mag-hd-in h1{font-size:29px}
}
@media (max-width:760px){
  .bo-mag-hd{border-radius:0 0 var(--r-m) var(--r-m);margin-bottom:26px}
  .bo-mag-hd-in{padding:32px 16px 30px}
  .bo-mag-hd-in h1{font-size:24px}
  .bo-mag-lead{font-size:15px}
  .bo-mag-body{font-size:16px;line-height:1.85}
  .bo-mag-body h2{font-size:19px}
  .bo-mag-cards{grid-template-columns:1fr}
  .bo-mag-cards-lg li.is-lead{grid-column:span 1}
  .bo-mag-cards-lg li.is-lead strong{font-size:19px}
}

/* 매거진 — 커버·본문 사진·카드 썸네일 (2026-08-05) */
.bo-mag.has-cover .bo-mag-hd{background-size:cover;background-position:center;min-height:340px;
  display:flex;align-items:flex-end}
.bo-mag.has-cover .bo-mag-hd-in{padding:52px 24px 44px}
.bo-mag-fig{margin:2em 0}
.bo-mag-fig img{width:100%;height:auto;border-radius:var(--r-m);box-shadow:var(--sh-2);display:block}
.bo-mag-fig figcaption{margin-top:9px;font-size:12.5px;color:var(--mut);text-align:center}

.bo-mag-cards a{padding:0;overflow:hidden}
.bo-mag-card-th{display:block;aspect-ratio:16/9;overflow:hidden;background:var(--wash)}
.bo-mag-card-th img{width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .4s var(--ease)}
.bo-mag-cards a:hover .bo-mag-card-th img{transform:scale(1.05)}
.bo-mag-card-b{display:flex;flex-direction:column;flex:1;padding:20px 22px 22px}
.bo-mag-cards-4{grid-template-columns:repeat(4,1fr)}
.bo-mag-cards-4 strong{font-size:15px;line-height:1.4}
.bo-mag-cards-lg li.is-lead a{flex-direction:row;align-items:stretch}
.bo-mag-cards-lg li.is-lead .bo-mag-card-th{flex:0 0 46%;aspect-ratio:auto}
.bo-mag-cards-lg li.is-lead .bo-mag-card-b{justify-content:center;padding:28px 30px}

@media (max-width:1080px){
  .bo-mag-cards-4{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:760px){
  .bo-mag.has-cover .bo-mag-hd{min-height:260px}
  .bo-mag.has-cover .bo-mag-hd-in{padding:34px 16px 28px}
  .bo-mag-cards-4{grid-template-columns:1fr}
  .bo-mag-cards-lg li.is-lead a{flex-direction:column}
  .bo-mag-cards-lg li.is-lead .bo-mag-card-th{flex:none;aspect-ratio:16/9}
  .bo-mag-cards-lg li.is-lead .bo-mag-card-b{padding:20px 18px}
}

/* ══════════════════════════════════════════════════════════
   모바일 전체 카테고리 패널 — 글자가 세로로 깨지던 것 수정 (2026-08-05)
   원인: 좁은 폭에서 2열 그리드 + em(부제)이 같은 줄에 붙어 한 글자씩 줄바꿈.
   ══════════════════════════════════════════════════════════ */
.bo-sheet-cats b{word-break:keep-all;white-space:nowrap}
.bo-sheet-cats em{word-break:keep-all;white-space:nowrap}

@media (max-width:860px){
  .bo-sheet-in{grid-template-columns:1fr;gap:22px}
  .bo-sheet-close{top:10px}
}
@media (max-width:760px){
  /* 업종 — 한 줄에 하나, 부제는 이름 아래로 */
  .bo-sheet-cats ul{grid-template-columns:1fr;gap:2px}
  .bo-sheet-cats a{gap:12px;padding:10px 8px;align-items:center}
  .bo-sheet-ico{width:34px;height:34px;flex:0 0 34px;border-radius:11px}
  .bo-sheet-ico .bo-i{width:18px;height:18px}
  .bo-sheet-cats b{flex:1;font-size:14.5px;font-weight:700}
  .bo-sheet-cats em{margin-left:0;flex:0 0 auto;font-size:11.5px;
    padding:3px 9px;border-radius:999px;background:var(--brand-soft);color:var(--brand-d)}
  /* 지역 칩 — 2열 고정 대신 자동 배치 */
  .bo-sheet-region{gap:7px}
  .bo-sheet-region a{padding:8px 15px;font-size:13.5px}
  .bo-sheet-in{padding-top:18px;padding-bottom:22px}
}
@media (max-width:400px){
  .bo-sheet-cats em{display:none}   /* 아주 좁은 화면에서는 부제를 감춘다 */
}

/* ══════════════════════════════════════════════════════════
   업종 목록 카드 — 설명글이 아이콘 칸으로 떨어지던 것 수정 (2026-08-05)
   원인: 2열 그리드에 자식이 3개(아이콘·제목·설명)라 설명이 자동으로 1열 2행에 배치됨.
   ══════════════════════════════════════════════════════════ */
.bo-catlist a{grid-template-columns:56px minmax(0,1fr);grid-template-rows:auto 1fr;
  gap:4px 16px;padding:20px;align-items:start}
.bo-catlist .bo-cat-ico{grid-column:1;grid-row:1 / span 2;align-self:start}
.bo-catlist b{grid-column:2;grid-row:1;align-self:center;min-height:56px;display:flex;align-items:center}
.bo-catlist em{grid-column:2;grid-row:2;margin-top:0;word-break:keep-all;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.bo-catlist li{display:flex}
.bo-catlist a{width:100%}

@media (max-width:760px){
  .bo-catlist a{grid-template-columns:48px minmax(0,1fr);gap:4px 13px;padding:16px}
  .bo-catlist .bo-cat-ico{width:48px;height:48px}
  .bo-catlist b{min-height:48px;font-size:15.5px}
  .bo-catlist em{font-size:12.5px;-webkit-line-clamp:2}
}

/* ══════════════════════════════════════════════════════════
   롱테일 링크 + 모바일 고정 전화 버튼 (2026-08-05)
   ══════════════════════════════════════════════════════════ */
.bo-lt-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:10px;margin-top:22px}
.bo-lt-grid a{display:flex;align-items:center;gap:6px;padding:13px 14px;border-radius:14px;
  background:#fff;border:1px solid var(--line);box-shadow:var(--sh-1);
  transition:transform .18s var(--ease),box-shadow .18s var(--ease),border-color .18s}
.bo-lt-grid a:hover{transform:translateY(-3px);box-shadow:var(--sh-2);border-color:#BCE8DE}
.bo-lt-gu{font-size:12px;font-weight:800;color:var(--brand);white-space:nowrap}
.bo-lt-grid b{flex:1;font-size:13.5px;font-weight:700;letter-spacing:-.02em;white-space:nowrap;
  overflow:hidden;text-overflow:ellipsis}
.bo-lt-grid .bo-i{width:14px;height:14px;color:var(--mut);flex:none}

/* 지역 페이지 롱테일 칩 */
.bo-chips-lt a{font-weight:700}
.bo-region-faq{margin-top:34px}

/* ── 모바일 하단 고정 전화 버튼 (업소 상세) ── */
.bo-callbar{display:none}
@media (max-width:760px){
  .bo-lt-grid{grid-template-columns:repeat(2,1fr);gap:8px}
  .bo-lt-grid a{padding:12px}

  .bo-callbar{display:flex;position:fixed;left:0;right:0;bottom:0;z-index:90;
    gap:9px;padding:10px 14px calc(10px + env(safe-area-inset-bottom));
    background:rgba(255,255,255,.92);backdrop-filter:saturate(160%) blur(14px);
    border-top:1px solid var(--line2);box-shadow:0 -8px 26px rgba(20,24,60,.12)}
  .bo-callbar a{display:flex;align-items:center;justify-content:center;gap:7px;height:50px;
    border-radius:15px;font-weight:800;font-size:15px;letter-spacing:-.02em}
  .bo-callbar .bo-cb-tel{flex:1;color:#fff;background:var(--grad-brand);
    box-shadow:0 10px 22px rgba(219,39,119,.4),inset 0 1px 0 rgba(255,255,255,.35)}
  .bo-callbar .bo-cb-area{flex:0 0 auto;padding:0 16px;color:var(--brand-d);
    background:var(--brand-soft);border:1px solid #BCE8DE}
  .bo-callbar .bo-i{width:19px;height:19px}
  /* ── 로드샵 2버튼 (2026-09-01 사용자 지시) ──
     출장·홈타이만 전화, 로드샵은 [제휴 준비중][광고문의].
     ★이 규칙은 반드시 이 미디어쿼리 **안**에 있어야 한다 — `.bo-callbar` 자체가
       모바일에서만 display:flex 라, 밖에 두면 데스크톱에도 바가 뜬다(실제로 한 번 그랬다). */
  .bo-callbar-2 .bo-cb-soon,
  .bo-callbar-2 .bo-cb-ad{display:flex;align-items:center;justify-content:center;gap:7px;
    flex:1;height:50px;border-radius:15px;font-weight:800;font-size:15px;letter-spacing:-.02em}
  /* 왼쪽 — 아직 제휴가 아니다. 누를 수 없게 두어 기대를 만들지 않는다 */
  .bo-callbar-2 .bo-cb-soon{color:#46525f;background:#eef1f5;border:1px solid #dde3ea;cursor:default}
  /* 오른쪽 — 실제 동작하는 버튼만 채운 색 */
  .bo-callbar-2 .bo-cb-ad{color:#fff;background:var(--grad-brand);
    box-shadow:0 10px 22px rgba(219,39,119,.4),inset 0 1px 0 rgba(255,255,255,.35)}

  /* 고정 바에 본문이 가리지 않게 */
  body.has-callbar{padding-bottom:78px}
  .bo-top{bottom:84px}
}
@media (max-width:400px){
  .bo-lt-grid{grid-template-columns:1fr}
  .bo-callbar .bo-cb-area{display:none}
}

/* ══════════════════════════════════════════════════════════
   후기 (2026-08-05) — 실제 후기가 있을 때만 별점이 보인다
   ══════════════════════════════════════════════════════════ */
.bo-stars{display:inline-flex;gap:1px;font-size:15px;line-height:1;color:#D8DCEA;letter-spacing:.5px}
.bo-stars i{font-style:normal}
.bo-stars i.on{color:#FFB020}
.bo-stars i.half{background:linear-gradient(90deg,#FFB020 50%,#D8DCEA 50%);-webkit-background-clip:text;background-clip:text;color:transparent}
.bo-stars.lg{font-size:21px}

.bo-hero-rating{display:flex;align-items:center;gap:9px;margin-top:12px;
  font-size:13.5px;color:rgba(255,255,255,.92)}
.bo-hero-rating b{font-size:16px;font-weight:800}
.bo-hero-rating a{text-decoration:underline;text-underline-offset:3px;color:rgba(255,255,255,.85)}
.bo-hero-rating .bo-stars i{color:rgba(255,255,255,.42)}
.bo-hero-rating .bo-stars i.on{color:#FFD166}

.bo-rv-summary{display:flex;align-items:center;gap:20px;margin-top:16px;padding:18px 20px;
  border-radius:var(--r-m);background:var(--wash);border:1px solid var(--line2)}
.bo-rv-score{display:flex;align-items:baseline;gap:3px}
.bo-rv-score b{font-size:34px;font-weight:800;letter-spacing:-.04em;color:var(--brand-d)}
.bo-rv-score span{font-size:14px;color:var(--mut)}
.bo-rv-cnt{margin-top:5px;font-size:13px;color:var(--mut)}

.bo-rv-list{margin-top:14px}
.bo-rv-list li{padding:16px 2px;border-bottom:1px solid var(--line2)}
.bo-rv-head{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.bo-rv-writer{font-size:13px;font-weight:700}
.bo-rv-date{font-size:12px;color:var(--mut);margin-left:auto}
.bo-rv-list p{margin-top:8px;max-width:44rem;font-size:15px;line-height:1.75;color:var(--ink2)}
.bo-rv-empty{margin-top:14px;padding:26px;text-align:center;border-radius:var(--r-m);
  background:var(--wash);color:var(--mut);font-size:14.5px}
.bo-rv-note{margin-top:12px;padding:12px 15px;border-radius:12px;font-size:14px;font-weight:700}
.bo-rv-ok{background:#E7F7EE;color:#137A45}
.bo-rv-err{background:#FDECEC;color:#C0392B}

/* 작성 폼 */
.bo-rv-form-wrap{margin-top:20px;border-top:1px solid var(--line);padding-top:16px}
.bo-rv-form-wrap summary{cursor:pointer;font-weight:800;font-size:15px;color:var(--brand-d);
  list-style:none;display:inline-flex;align-items:center;gap:6px}
.bo-rv-form-wrap summary::-webkit-details-marker{display:none}
.bo-rv-form-wrap summary:before{content:"✎";font-size:14px}
.bo-rv-form{margin-top:14px;display:flex;flex-direction:column;gap:11px;max-width:44rem}
.bo-rv-row{display:flex;gap:9px;align-items:center;flex-wrap:wrap}
.bo-rv-form input[type=text],.bo-rv-form input[type=password],.bo-rv-form input[type=month]{
  flex:1;min-width:150px;height:46px;padding:0 14px;border:1.5px solid var(--line);
  border-radius:12px;font-size:14.5px;background:#fff}
.bo-rv-form input:focus,.bo-rv-form textarea:focus{border-color:var(--brand);outline:none}
.bo-rv-form textarea{padding:13px 14px;border:1.5px solid var(--line);border-radius:12px;
  font-size:15px;line-height:1.7;resize:vertical;font-family:inherit}
.bo-rv-hint{font-size:12.5px;color:var(--mut)}
.bo-rv-guide{font-size:12.5px;line-height:1.6;color:var(--mut)}
.bo-rv-form button{align-self:flex-start;height:48px;padding:0 26px}
.bo-hp{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important}

/* 별점 입력 — 오른쪽에서 왼쪽으로 채운다 */
.bo-rv-rate{border:0;padding:0;margin:0;display:inline-flex;flex-direction:row-reverse;
  justify-content:flex-end;gap:2px}
.bo-rv-rate legend{position:absolute;left:-9999px}
.bo-rv-rate input{position:absolute;opacity:0;width:0;height:0}
.bo-rv-rate label{cursor:pointer;font-size:30px;line-height:1;color:#D8DCEA;transition:color .12s}
.bo-rv-rate input:checked ~ label,
.bo-rv-rate label:hover,.bo-rv-rate label:hover ~ label{color:#FFB020}
.bo-rv-rate input:focus-visible + label{outline:2px solid var(--brand);border-radius:4px}

/* 목록 카드 별점 */
.bo-scard-rate{display:flex;align-items:center;gap:5px;margin-top:8px;font-size:12px;color:var(--mut)}
.bo-scard-rate b{color:var(--ink);font-weight:800}

@media (max-width:760px){
  .bo-rv-summary{gap:14px;padding:15px}
  .bo-rv-score b{font-size:28px}
  .bo-rv-form input[type=text],.bo-rv-form input[type=password],.bo-rv-form input[type=month]{min-width:100%}
}

/* 후기 관리 */
.bo-btn-sm{height:36px;padding:0 15px;font-size:13px;border-radius:11px}
.bo-btn-del{background:#FDECEC!important;color:#C0392B!important;box-shadow:none!important;border:1px solid #F6C6C2}
.bo-rv-adm li{padding:18px 2px}
.bo-rv-shop{font-size:12.5px}
.bo-rv-shop a{color:var(--brand-d);font-weight:700}
.bo-rv-acts{display:flex;align-items:center;gap:8px;margin-top:12px;flex-wrap:wrap}
.bo-rv-ip{margin-left:auto;font-size:11.5px;color:var(--mut)}

/* ── 컬러 카테고리 아이콘 ───────────────────────────── */
.bo-ci{width:44px;height:44px;display:block}
.bo-cat-ico{display:grid;place-items:center;width:64px;height:64px;border-radius:22px;
  background:#fff;box-shadow:0 4px 14px rgba(20,40,36,.08);transition:.24s var(--ease)}
.bo-cat-a:hover .bo-cat-ico,li:hover>a>.bo-cat-ico{transform:translateY(-3px);
  box-shadow:0 12px 26px rgba(20,40,36,.14)}
.bo-sheet-ico .bo-ci{width:34px;height:34px}


/* ══════════════════════════════════════════════════════════════
   웰니스 매거진 — 웹진 레이아웃 (도깨비미디어 매거진 룩을 민트 브랜드로)
   ★본문 폭 46rem 고정(한 줄 한글 40~45자)
   ══════════════════════════════════════════════════════════════ */
.wm{--mg:#DB2777;--mg-d:#07784F;--mg-soft:#FCE7F3;
    --ink:#16181d;--ink2:#242a33;--sub:#5b6472;--mute:#868e9c;
    --line:#eceef2;--line2:#dfe3e9;--bg:#f7f8fa;
    color:var(--ink);word-break:keep-all}
.wm img{max-width:100%;height:auto;display:block}

/* ── 목록 머리 */
.wm-head{padding:38px 0 26px;border-bottom:2px solid var(--ink)}
.wm-head h1{margin:0 0 10px;font-size:34px;font-weight:900;letter-spacing:-.038em;line-height:1.24}
.wm-head h1 em{font-style:normal;color:var(--mg)}
.wm-head p{margin:0;max-width:46rem;font-size:15px;line-height:1.72;color:var(--sub)}

.wm-pill{display:inline-block;padding:4px 11px;border-radius:20px;font-size:11.5px;
  font-weight:800;color:#fff;background:var(--mg)}
.wm-meta{font-size:12.5px;color:var(--mute);font-weight:500}
.wm-meta .dot{margin:0 6px;opacity:.5}

/* ── 피처 */
.wm-feat{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,1fr);gap:32px;
  align-items:center;padding:32px 0;border-bottom:1px solid var(--line)}
.wm-feat .thumb{border-radius:18px;overflow:hidden;background:var(--bg);aspect-ratio:16/10;display:block}
.wm-feat .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .4s var(--ease)}
.wm-feat:hover .thumb img{transform:scale(1.03)}
.wm-feat h2{margin:13px 0 12px;font-size:28px;font-weight:900;letter-spacing:-.034em;line-height:1.32}
.wm-feat:hover h2{color:var(--mg)}
.wm-feat p{margin:0 0 14px;font-size:15.5px;line-height:1.74;color:var(--sub)}

/* ── 카드 그리드 */
.wm-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px 24px;padding:34px 0 48px}
.wm-card .thumb{border-radius:14px;overflow:hidden;background:var(--bg);aspect-ratio:16/10;
  margin-bottom:13px;display:block}
.wm-card .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .4s var(--ease)}
.wm-card:hover .thumb img{transform:scale(1.04)}
.wm-card h3{margin:0 0 8px;font-size:17.5px;font-weight:800;letter-spacing:-.028em;line-height:1.44;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.wm-card:hover h3{color:var(--mg)}
.wm-card p{margin:0 0 9px;font-size:13.5px;line-height:1.66;color:var(--sub);
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.wm-empty{padding:70px 20px;text-align:center;color:var(--mute)}

/* ── 상세 */
.wm-artwrap{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:52px;
  align-items:start;padding:26px 0 56px}
.wm-article{min-width:0;max-width:46rem}
.wm-bc{font-size:12.5px;color:var(--mute);margin:0 0 16px}
.wm-bc .sep{margin:0 7px;opacity:.55}
.wm-bc a:hover{color:var(--mg)}
.wm-kick{display:flex;align-items:center;gap:12px;margin:0 0 12px}
.wm-h1{margin:0 0 14px;font-size:35px;font-weight:900;letter-spacing:-.04em;line-height:1.28;color:#0f1319}
.wm-dek{position:relative;margin:0 0 24px;padding:3px 2px 4px 20px;font-size:17px;line-height:1.75;
  color:#4b5563;letter-spacing:-.012em}
.wm-dek::before{content:"";position:absolute;left:0;top:6px;bottom:6px;width:4px;border-radius:2px;background:var(--mg)}

.wm-by{display:flex;align-items:center;gap:12px;padding:14px 0;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.wm-by .av{width:38px;height:38px;flex:0 0 38px;border-radius:50%;display:grid;place-items:center;
  font-size:12.5px;font-weight:900;color:#fff;background:var(--mg);letter-spacing:.02em}
.wm-by b{display:block;font-size:14px;font-weight:800}
.wm-by .sub{font-size:12.5px;color:var(--mute)}

.wm-cover{margin:24px 0 4px}
.wm-cover img{width:100%;border-radius:18px}

.wm-toc{margin:24px 0 4px;padding:18px 20px;background:var(--bg);
  border:1px solid var(--line);border-radius:14px}
.wm-toc b{display:block;font-size:12.5px;font-weight:800;color:var(--mg);margin-bottom:9px;letter-spacing:.02em}
.wm-toc ol{margin:0;padding-left:18px;list-style:decimal}
.wm-toc li{font-size:14px;line-height:1.9;color:var(--sub);list-style:decimal}
.wm-toc a:hover{color:var(--mg);text-decoration:underline}

/* 본문 */
.wm-body{font-size:17.5px;line-height:1.92;color:var(--ink2);padding:24px 0 8px;letter-spacing:-.003em}
.wm-body p{margin:0 0 1.5em}
.wm-body h2{margin:2.1em 0 .75em;padding-left:14px;font-size:23px;font-weight:900;
  letter-spacing:-.032em;line-height:1.4;color:var(--ink);border-left:5px solid var(--mg);scroll-margin-top:96px}
.wm-body h3{margin:1.8em 0 .6em;font-size:18.5px;font-weight:800;letter-spacing:-.026em}
.wm-body ul,.wm-body ol{margin:0 0 1.5em;padding-left:1.35em}
.wm-body li{margin-bottom:.55em;list-style:disc}
.wm-body ol li{list-style:decimal}
.wm-body strong{font-weight:800;color:var(--ink)}
.wm-body figure{margin:2.1em 0}
.wm-body figure img{width:100%;border-radius:14px}
.wm-body figcaption{margin-top:9px;font-size:12.5px;color:var(--mute);text-align:center;line-height:1.6}
.wm-body a{color:var(--mg);font-weight:700;text-decoration:underline;text-underline-offset:3px}
.wm-body a:hover{color:var(--mg-d)}

.wm-foot-by{display:flex;gap:15px;margin:34px 0 0;padding:20px 22px;background:var(--bg);
  border:1px solid var(--line);border-radius:16px}
.wm-foot-by .av{width:46px;height:46px;flex:0 0 46px;border-radius:13px;display:grid;place-items:center;
  font-size:14px;font-weight:900;color:#fff;background:var(--mg)}
.wm-foot-by b{display:block;font-size:14.5px;font-weight:800;margin-bottom:5px}
.wm-foot-by p{margin:0;font-size:13.5px;line-height:1.72;color:var(--sub)}

/* 이전·다음 */
.wm-nav{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:26px 0 0}
.wm-nav a{padding:14px 16px;border:1px solid var(--line2);border-radius:14px;background:#fff;
  transition:.18s var(--ease)}
.wm-nav a:hover{border-color:var(--mg);box-shadow:0 6px 18px rgba(219,39,119,.12);transform:translateY(-1px)}
.wm-nav a.is-next{text-align:right}
.wm-nav em{display:block;font-style:normal;font-size:11.5px;font-weight:800;color:var(--mg);margin-bottom:5px}
.wm-nav b{font-size:14.5px;font-weight:700;line-height:1.45;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}

/* 관련 콘텐츠 */
.wm-rel{margin:38px 0 0}
.wm-rel-h{display:flex;align-items:center;gap:9px;margin:0 0 15px;font-size:18px;font-weight:800;
  letter-spacing:-.024em}
.wm-rel-h::before{content:"";width:4px;height:17px;border-radius:2px;background:var(--mg)}
.wm-rel-grid{display:grid;grid-template-columns:1fr 1fr;gap:13px}
.wm-rel-c{display:flex;gap:13px;align-items:center;padding:11px;background:#fff;
  border:1px solid var(--line);border-radius:13px;transition:.18s var(--ease)}
.wm-rel-c:hover{border-color:var(--mg);box-shadow:0 4px 14px rgba(219,39,119,.13);transform:translateY(-1px)}
.wm-rel-c .th{flex:0 0 84px;width:84px;height:84px;border-radius:10px;overflow:hidden;background:var(--bg)}
.wm-rel-c .th img{width:100%;height:100%;object-fit:cover}
.wm-rel-c .tx{min-width:0}
.wm-rel-c b{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  font-size:14.5px;font-weight:700;line-height:1.46;letter-spacing:-.02em}
.wm-rel-c:hover b{color:var(--mg)}
.wm-rel-c em{display:block;margin-top:6px;font-style:normal;font-size:11.5px;color:var(--mute)}

/* 사이드 */
.wm-side{position:sticky;top:96px;display:flex;flex-direction:column;gap:14px}
.wm-side-box{padding:20px;border:1px solid var(--line);border-radius:16px;background:#fff}
.wm-side-box b{display:block;font-size:15px;font-weight:800;margin-bottom:7px}
.wm-side-box p{margin:0 0 13px;font-size:13.5px;line-height:1.7;color:var(--sub)}
.wm-side-cta{display:block;text-align:center;height:42px;line-height:42px;border-radius:999px;
  font-size:14px;font-weight:700;color:#fff;background:var(--mg);transition:.18s var(--ease)}
.wm-side-cta:hover{background:var(--mg-d)}
.wm-side-cta.is-line{color:var(--mg);background:#fff;border:1.5px solid var(--mg);line-height:39px}
.wm-side-cta.is-line:hover{background:var(--mg-soft)}
.wm-side-list li+li{border-top:1px solid var(--line)}
.wm-side-list a{display:block;padding:11px 0;font-size:14px;font-weight:700}
.wm-side-list a:hover{color:var(--mg)}
.wm-side-list em{display:block;margin-top:3px;font-style:normal;font-size:12px;font-weight:500;color:var(--mute)}

@media (max-width:1080px){
  .wm-artwrap{grid-template-columns:1fr;gap:34px}
  .wm-side{position:static;flex-direction:row;flex-wrap:wrap}
  .wm-side-box{flex:1 1 260px}
  .wm-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:720px){
  .wm-head h1{font-size:27px}
  .wm-h1{font-size:26px}
  .wm-dek{font-size:15.5px}
  .wm-body{font-size:16.5px;line-height:1.88}
  .wm-body h2{font-size:20px}
  .wm-feat{grid-template-columns:1fr;gap:16px}
  .wm-feat h2{font-size:21px}
  .wm-grid{grid-template-columns:1fr;gap:24px}
  .wm-rel-grid,.wm-nav{grid-template-columns:1fr}
}

/* ── 후기 게이트·관리(스팸 대응) ───────────────────────── */
.bo-rv-gate{margin-top:18px;padding:22px 24px;border:1px solid var(--line);border-radius:16px;
  background:var(--brand-soft)}
.bo-rv-gate b{display:block;font-size:16px;font-weight:800;margin-bottom:7px}
.bo-rv-gate p{margin:0 0 12px;font-size:14px;line-height:1.7;color:var(--ink2)}
.bo-rv-gate-act{display:flex;gap:10px;margin:0}
.bo-rv-bulk{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:14px 0 6px;
  padding:12px 14px;border:1px solid var(--line);border-radius:12px;background:var(--wash)}
.bo-rv-bulk label{font-size:13.5px;font-weight:700;display:flex;align-items:center;gap:6px}
.bo-rv-purge{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin:14px 0;
  padding:14px 16px;border:1px solid #FFD9D2;border-radius:12px;background:#FFF5F3}
.bo-rv-purge .bo-rv-hint{font-size:12.5px;color:var(--mut)}
.bo-rv-pick{margin-right:8px}
.bo-rv-flag{margin:6px 0 0;font-size:12.5px;font-weight:700;color:#C2410C}
.bo-btn-del{background:#EF4444;color:#fff}
.bo-btn-del:hover{background:#DC2626}

/* ★막대 중복 수정 (2026-08-05)
   `.bo-detail h2`(border-image 막대)와 `.bo-sec-hd h2::before`(가상요소 막대)가
   매장 상세 안 섹션 제목에서 겹쳐 **막대가 두 개**로 보였다 → 상세에서는 하나만 남긴다. */
.bo-detail .bo-sec-hd h2{border-left:0;border-image:none;padding-left:14px}


/* ══ 매장 상세 히어로 재설계 (2026-08-05) ══════════════
   ★이전: 640x480 썸네일을 폭 1080·높이 380 배경으로 늘려 깔아 **뭉개져 보였다**.
   지금: 밝은 면 + 좌측 텍스트, 우측에 사진을 원본 비율 카드로 둔다(확대 없음). */
.bo-hero-shop{position:relative;overflow:visible;isolation:auto;min-height:0;
  display:grid;grid-template-columns:minmax(0,1fr) 380px;gap:34px;align-items:center;
  width:100%;max-width:1128px;margin:0 auto 34px;padding:30px 24px 34px;
  border-radius:0;background:none}
.bo-hero-shop::before,.bo-hero-shop::after{display:none}
.bo-hero-shop-in{position:relative;width:auto;max-width:none;margin:0;padding:0;color:var(--ink)}
.bo-hero-shop-media{border-radius:var(--r-l);overflow:hidden;background:var(--wash);
  aspect-ratio:4/3;box-shadow:var(--sh-2)}
.bo-hero-shop-media .bo-th,.bo-hero-shop-media img,.bo-hero-shop-media svg{
  width:100%;height:100%;object-fit:cover;display:block}
.bo-hero-shop-area{background:var(--brand-soft);border:1px solid transparent;
  color:var(--brand-d);backdrop-filter:none}
.bo-hero-shop-in h1{color:var(--ink);text-shadow:none;font-size:34px}
.bo-hero-shop-tags a{background:var(--wash);border:1px solid var(--line);color:var(--ink2);
  backdrop-filter:none}
.bo-hero-shop-tags a:hover{background:var(--brand-soft);color:var(--brand-d);border-color:transparent}
.bo-hero-rating{color:var(--ink2)}
@media (max-width:900px){
  .bo-hero-shop{grid-template-columns:1fr;gap:18px;padding:18px 16px 24px;margin-bottom:22px}
  .bo-hero-shop-media{order:-1;aspect-ratio:16/9}
  .bo-hero-shop-in h1{font-size:25px}
}

/* ★히어로가 밝은 면으로 바뀌면서 .bo-btn-ghost(흰 글씨)가 보이지 않게 됐다 → 밝은 배경용 */
.bo-hero-shop .bo-btn-ghost{color:var(--ink2);background:#fff;
  border:1px solid var(--line2);backdrop-filter:none;box-shadow:var(--sh-1)}
.bo-hero-shop .bo-btn-ghost:hover{color:var(--brand-d);border-color:var(--brand);
  background:var(--brand-soft);box-shadow:none}

/* ══ 공지사항 (/post/) ═══════════════════════════════
   ★파라미터 주소를 쓰지 않는다. 목록·상세 모두 클린 URL. */
.nt{padding:32px 24px 60px}
.nt-head{padding:10px 0 22px;border-bottom:2px solid var(--ink)}
.nt-head h1{margin:0 0 8px;font-size:32px;font-weight:900;letter-spacing:-.038em}
.nt-head p{margin:0;font-size:14.5px;color:var(--mut);line-height:1.7;max-width:44rem}

.nt-list{margin-top:6px}
.nt-list li{border-bottom:1px solid var(--line)}
.nt-list a{display:block;padding:22px 4px;transition:.18s var(--ease)}
.nt-list a:hover{background:var(--wash);padding-left:12px;padding-right:12px;border-radius:14px}
.nt-list-top{display:flex;align-items:center;gap:10px;margin-bottom:9px}
.nt-badge{display:inline-block;padding:4px 11px;border-radius:999px;font-size:11.5px;
  font-weight:800;color:#fff;background:var(--brand)}
.is-new .nt-badge{background:var(--grad-brand)}
.nt-list-top time{font-size:12.5px;color:var(--mut)}
.nt-list strong{display:block;font-size:17.5px;font-weight:800;letter-spacing:-.028em;line-height:1.45}
.nt-list a:hover strong{color:var(--brand)}
.nt-list-dek{display:block;margin-top:7px;font-size:13.5px;line-height:1.7;color:var(--mut);
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.nt-empty{padding:70px 0;text-align:center;color:var(--mut)}

.nt-article{max-width:46rem;margin:0 auto}
.nt-bc{font-size:12.5px;color:var(--mut);margin:0 0 16px}
.nt-bc span{margin:0 7px;opacity:.55}
.nt-bc a:hover{color:var(--brand)}
.nt-kick{display:flex;align-items:center;gap:11px;margin:0 0 12px}
.nt-kick time{font-size:12.5px;color:var(--mut)}
.nt-h1{margin:0 0 14px;font-size:31px;font-weight:900;letter-spacing:-.04em;line-height:1.3}
.nt-dek{position:relative;margin:0 0 26px;padding:3px 2px 4px 18px;font-size:16px;line-height:1.75;color:var(--ink2)}
.nt-dek::before{content:"";position:absolute;left:0;top:5px;bottom:5px;width:4px;border-radius:2px;background:var(--brand)}
.nt-body{font-size:16.5px;line-height:1.9;color:var(--ink2);padding:24px 0 8px;
  border-top:1px solid var(--line)}
.nt-body p{margin:0 0 1.45em}
.nt-body h2{margin:2em 0 .7em;padding-left:13px;font-size:20px;font-weight:900;
  letter-spacing:-.03em;color:var(--ink);border-left:5px solid var(--brand)}
.nt-body ul,.nt-body ol{margin:0 0 1.45em;padding-left:1.3em}
.nt-body li{margin-bottom:.5em;list-style:disc}
.nt-body ol li{list-style:decimal}
.nt-body strong{font-weight:800;color:var(--ink)}
.nt-body table{width:100%;border-collapse:collapse;margin:0 0 1.5em;font-size:15px}
.nt-body th,.nt-body td{padding:11px 13px;border:1px solid var(--line2);text-align:left}
.nt-body th{background:var(--wash);font-weight:800}
.nt-body a{color:var(--brand);font-weight:700;text-decoration:underline;text-underline-offset:3px}
.nt-nav{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:30px 0 0}
.nt-nav a{padding:14px 16px;border:1px solid var(--line2);border-radius:14px;background:#fff;transition:.18s var(--ease)}
.nt-nav a:hover{border-color:var(--brand);box-shadow:var(--sh-1);transform:translateY(-1px)}
.nt-nav a.is-next{text-align:right}
.nt-nav em{display:block;font-style:normal;font-size:11.5px;font-weight:800;color:var(--brand);margin-bottom:5px}
.nt-nav b{font-size:14.5px;font-weight:700;line-height:1.45;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.nt-back{margin:26px 0 0;text-align:center}
@media (max-width:720px){
  .nt{padding:22px 16px 44px}
  .nt-head h1{font-size:25px}
  .nt-h1{font-size:24px}
  .nt-body{font-size:16px}
  .nt-nav{grid-template-columns:1fr}
}

/* ★본문 마지막 블록과 푸터가 붙어 보이던 것 */
#ms-main{padding-bottom:56px}
@media (max-width:720px){ #ms-main{padding-bottom:36px} }
/* 홈 새 소식 — 클린 URL 목록 */
.bo-latest-nt{margin-top:6px;border-top:1px solid var(--line)}
.bo-latest-nt li{border-bottom:1px solid var(--line)}
.bo-latest-nt a{display:flex;align-items:center;gap:12px;padding:15px 4px;transition:.16s var(--ease)}
.bo-latest-nt a:hover{padding-left:12px;background:var(--wash);border-radius:12px}
.bo-nt-new{flex:none;padding:3px 10px;border-radius:999px;font-size:11px;font-weight:800;color:#fff;background:var(--brand)}
.bo-latest-nt strong{flex:1;min-width:0;font-size:15px;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.bo-latest-nt a:hover strong{color:var(--brand)}
.bo-latest-nt time{flex:none;font-size:12.5px;color:var(--mut)}

/* 푸터 로고(인라인 SVG) + 지역·업종 바로가기 */
.bo-ft-logo-a{display:block;color:#8FE9D6;margin-bottom:12px}
.bo-ft-logo-a svg{height:26px;width:auto}
.bo-ft-policy{color:#9AA0C4}
.bo-ft-upd{font-size:11.5px;color:#8B90B4}
.bo-ft-links{margin-top:30px;padding-top:22px;border-top:1px solid rgba(255,255,255,.10)}
.bo-ft-links h3{font-size:11.5px;letter-spacing:.09em;color:#7FE3CD;margin-bottom:12px}
.bo-ft-links ul{display:flex;flex-wrap:wrap;gap:8px}
.bo-ft-links li{list-style:none}
.bo-ft-links a{display:inline-block;padding:6px 12px;border-radius:999px;font-size:12.5px;
  color:#C7D8D4;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.10);
  transition:.16s var(--ease)}
.bo-ft-links a:hover{color:#fff;background:rgba(255,255,255,.14);border-color:transparent}

/* ══ 입점·제휴 문의 (/partner/) ═════════════════════════ */
.pt{padding:32px 24px 60px}
.pt-head{padding:6px 0 24px;border-bottom:2px solid var(--ink)}
.pt-head h1{margin:0 0 9px;font-size:31px;font-weight:900;letter-spacing:-.038em}
.pt-head p{margin:0;max-width:44rem;font-size:14.5px;line-height:1.72;color:var(--mut)}
.pt-alert{margin:18px 0 0;padding:13px 16px;border-radius:12px;background:#FFF1EE;
  border:1px solid #FFD5CC;color:#B4341C;font-size:14px;font-weight:700}
.pt-tel{color:var(--brand-d);font-weight:800;text-decoration:underline}
.pt-mine{margin-top:22px;padding:18px 20px;border:1px solid var(--line);border-radius:16px;background:#fff}
.pt-mine b{display:block;font-size:15px;font-weight:800;margin-bottom:6px}
.pt-mine-row{display:flex;align-items:center;gap:12px;padding:12px 4px;border-bottom:1px solid var(--line);
  text-decoration:none;color:inherit}
.pt-mine-row:last-child{border-bottom:0}
.pt-mine-name{flex:1;font-size:14px;font-weight:700;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.pt-mine-date{flex:0 0 auto;font-size:12.5px;color:var(--mut)}
@media(max-width:640px){.pt-mine-row{flex-wrap:wrap}.pt-mine-date{order:3;width:100%;padding-left:calc(5px + 62px)}}

.pt-grid{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:40px;margin-top:28px;align-items:start}
.pt-form{min-width:0}
.pt-row{margin-bottom:18px}
.pt-row2{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.pt-row label{display:block;font-size:13.5px;font-weight:800;margin-bottom:7px;color:var(--ink2)}
.pt-row label b{color:var(--brand);margin-left:2px}
.pt-form input[type=text],.pt-form input[type=tel],.pt-form input[type=password],
.pt-form input[type=time],.pt-form select,.pt-form textarea{
  width:100%;height:48px;padding:0 15px;border:1.5px solid var(--line2);border-radius:13px;
  font-size:14.5px;background:#fff;color:var(--ink);transition:.16s var(--ease)}
.pt-form textarea{height:auto;padding:13px 15px;line-height:1.7;resize:vertical}
.pt-form input:focus,.pt-form select:focus,.pt-form textarea:focus{
  outline:0;border-color:var(--brand);box-shadow:0 0 0 4px rgba(219,39,119,.12)}
.pt-time{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.pt-time input[type=time]{max-width:150px}
.pt-chk{display:flex!important;align-items:center;gap:7px;font-weight:600!important;
  font-size:13.5px;margin:0!important;white-space:nowrap}
.pt-agree{margin:22px 0 20px;padding:16px 18px;border:1px solid var(--line);border-radius:14px;background:var(--wash)}
.pt-agree label{display:flex;align-items:flex-start;gap:9px;font-size:14px;font-weight:700;cursor:pointer}
.pt-agree p{margin:9px 0 0 25px;font-size:12.5px;line-height:1.7;color:var(--mut)}
.pt-submit{width:100%;justify-content:center}

.pt-side{display:flex;flex-direction:column;gap:14px;position:sticky;top:96px}
.pt-side-box{padding:20px;border:1px solid var(--line);border-radius:16px;background:#fff}
.pt-side-box b{display:block;font-size:15px;font-weight:800;margin-bottom:9px}
.pt-side-box p{margin:0;font-size:13.5px;line-height:1.72;color:var(--mut)}
.pt-side-box ol{margin:0;padding-left:18px}
.pt-side-box li{font-size:13.5px;line-height:1.8;color:var(--ink2);list-style:decimal}
.pt-side-box.is-note{background:var(--brand-soft);border-color:transparent}
.pt-lookup{display:flex;flex-direction:column;gap:9px;margin-top:12px}
.pt-lookup input{height:44px;padding:0 14px;border:1.5px solid var(--line2);border-radius:12px;font-size:14px}
.pt-lookup input:focus{outline:0;border-color:var(--brand)}
.pt-lookup .bo-btn{justify-content:center}

.pt-view{max-width:46rem;margin:0 auto}
.pt-bc{font-size:12.5px;color:var(--mut);margin:0 0 14px}
.pt-bc span{margin:0 7px;opacity:.55}
.pt-st{display:inline-block;padding:5px 13px;border-radius:999px;font-size:12px;font-weight:800}
.pt-st.is-wait{background:#FFF4E2;color:#A06A12}
.pt-st.is-done{background:var(--brand-soft);color:var(--brand-d)}
.pt-view h1{margin:12px 0 18px;font-size:27px;font-weight:900;letter-spacing:-.035em}
.pt-dl{display:grid;grid-template-columns:110px 1fr;border-top:1px solid var(--line)}
.pt-dl dt{padding:13px 0;font-size:13.5px;font-weight:800;color:var(--ink2);border-bottom:1px solid var(--line)}
.pt-dl dd{margin:0;padding:13px 0;font-size:14.5px;border-bottom:1px solid var(--line)}
.pt-box{margin-top:20px;padding:18px 20px;border:1px solid var(--line);border-radius:14px;background:var(--wash)}
.pt-box b{display:block;font-size:13.5px;font-weight:800;margin-bottom:8px;color:var(--brand-d)}
.pt-box p{margin:0;font-size:14.5px;line-height:1.8;color:var(--ink2)}
.pt-box em{display:block;margin-top:10px;font-style:normal;font-size:12px;color:var(--mut)}
.pt-box.is-reply{background:#fff;border-color:var(--brand);box-shadow:var(--sh-1)}
.pt-wait{margin-top:20px;padding:16px 18px;border-radius:14px;background:var(--wash);
  font-size:14px;color:var(--mut);line-height:1.7}
.pt-back{margin-top:24px;text-align:center}
@media (max-width:900px){
  .pt-grid{grid-template-columns:1fr;gap:26px}
  .pt-side{position:static}
}
@media (max-width:720px){
  .pt{padding:22px 16px 44px}
  .pt-head h1{font-size:25px}
  .pt-row2{grid-template-columns:1fr}
  .pt-dl{grid-template-columns:88px 1fr}
}

/* 로드샵 상단 CTA '제휴 준비중' — 눌리지 않는 상태 표기(2026-09-02) */
.bo-btn-soon{background:#eef1f5;color:#46525f;border:1px solid #dde3ea;cursor:default}
.bo-btn-soon:hover{transform:none;box-shadow:none}

/* ── 출장 연결 — 매장 전화와 확실히 구분한다(2026-09-02, 2차: 빨강+노랑으로 대비 상향) ──
   ★1차(노란 띠)는 **잘 안 보이고 글자가 잘렸다**(사용자 스크린샷). 두 가지를 고쳤다:
     ① 고지문을 하단바와 **한 컨테이너**로 묶어 높이 어긋남을 없앴다
     ② 경고색으로 바꿨다 — 빨강 바탕(#c62828) + 노랑 글자(#ffe082), 대비 5:1 이상 */
.bo-callwrap { position:fixed; left:0; right:0; bottom:0; z-index:60; }
.bo-callwrap .bo-callbar { position:static !important; }
.bo-outnote { margin:0; padding:9px 14px; text-align:center; font-size:15px; line-height:1.5;
  background:#c62828; color:#ffe082; font-weight:600; letter-spacing:-.02em; }
.bo-outnote b { color:#fff; font-weight:800; }
.bo-cb-out { display:flex; flex-direction:column; align-items:center; justify-content:center; line-height:1.25; }
.bo-cb-out b { font-size:15px; font-weight:800; }
.bo-cb-out i { font-style:normal; font-size:11.5px; opacity:.9; }
/* 바+고지문 높이만큼 본문 아래를 비워 둔다(마지막 줄이 가려지지 않게) */
body.has-callbar { padding-bottom:132px; }
@media (min-width:961px){
  .bo-callwrap { position:static; margin:16px 0 0; }
  .bo-outnote { border-radius:10px 10px 0 0; }
  body.has-callbar { padding-bottom:0; }
}


/* ── 출장 연결 확인 모달(2026-09-02 2차) — 기본 confirm 은 글자를 못 키운다 ── */
.oc-dlg { display:none; position:fixed; inset:0; z-index:9999; background:rgba(12,20,18,.62);
  align-items:center; justify-content:center; padding:22px; }
.oc-dlg.on { display:flex; }
.oc-box { background:#fff; border-radius:18px; padding:30px 24px 22px; width:100%; max-width:360px;
  text-align:center; box-shadow:0 24px 60px -20px rgba(0,0,0,.55); }
.oc-msg { margin:0 0 22px; font-size:22px; line-height:1.45; font-weight:700; color:#1d2a27; letter-spacing:-.03em; }
.oc-msg b { color:#c62828; font-weight:900; }
.oc-btns { display:flex; gap:10px; }
.oc-btns .oc-no, .oc-btns .oc-yes { flex:1; padding:15px 0; border-radius:12px; font-size:16px;
  font-weight:800; text-decoration:none; cursor:pointer; border:0; }
.oc-btns .oc-no { background:#eef1f5; color:#46525f; }
.oc-btns .oc-yes { background:#c62828; color:#fff; display:block; }


/* ── 출장 고지 띠 — 데스크톱 숨김 (사용자 지시 2026-09-03) ──────────────────
   "데스크탑 버전에는 빨간색 문구 안 나오게, 오직 모바일에서만."
   ★띠는 **전화를 거는 사람**에게 주는 경고다. 전화 버튼이 모바일에만 뜨므로
     데스크톱에서는 경고할 대상이 없고, 큰 빨간 띠만 남아 페이지를 해친다.
   ★버튼(.bo-callban / .bo-callbar)은 건드리지 않는다 — 요청은 '빨간 문구'였다. */
@media (min-width:761px) {
  .bo-outnote { display:none !important; }
}

/* 지역 소개글 — 2026-09-03. 목록만 있던 시군구 페이지에 고유 문단을 붙인다. */
.bo-region-intro{padding:18px 20px;margin:0 0 18px;line-height:1.75;color:var(--ink2);font-size:15px}
.bo-region-intro p{margin:0;max-width:76ch}


/* ── 마사지솔루션 고유 마감 (2026-09-03) ─────────────────────────────
   ★계보 클론이라 뼈대가 같다. 색·모서리만으로는 원본과 구분이 안 된다는 지적을 받아
     섹션 제목·카드 상단선처럼 **형태가 다른 요소**를 더한다. */
.bo-sec-hd h1,.bo-sec-hd h2{position:relative;padding-left:14px}
.bo-sec-hd h1::before,.bo-sec-hd h2::before{
  content:"";position:absolute;left:0;top:.18em;bottom:.18em;width:4px;
  background:var(--brand);border-radius:2px}
.bo-shop,.bo-card,.bo-cat-card{border-top:2px solid transparent;transition:border-color .18s var(--ease)}
.bo-shop:hover,.bo-cat-card:hover{border-top-color:var(--brand)}
.bo-th{border-radius:var(--r-s) var(--r-s) 0 0}

/* ═══ 모바일 하단 고정 탭바 (2026-09-04) ═══════════════════════════
   ★마캉스 UX 참고 — 실제 트래픽이 모바일이라 이 자리가 가장 많이 눌린다.
   ★로드샵 전화연결바(.oc-wrap)와 같은 자리를 다툰다.
     여기서 탭바 높이를 58px 로 고정하고, 콜바를 그 위(58px)로 올린다.
     안 맞추면 콜바가 탭바에 가려져 버튼이 안 보인다(뉴뉴에서 실제로 겪음). */
.bo-tabbar { display: none; }

@media (max-width: 960px) {
  .bo-tabbar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    height: 58px; background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 18px rgba(23,26,43,.08);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .bo-tabbar a {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 3px; text-decoration: none;
    color: var(--mut); font-size: 11px; font-weight: 700;
  }
  .bo-tabbar a i  { font-size: 18px; }
  .bo-tabbar a em { font-style: normal; letter-spacing: -.03em; }
  .bo-tabbar a.on { color: var(--brand); }

  /* 본문이 탭바에 가리지 않게 */
  body { padding-bottom: 58px; }

  /* ★로드샵 전화연결바를 탭바 위로 올린다 */
  .oc-wrap { bottom: 58px !important; z-index: 90 !important; }
  body.oc-on { padding-bottom: 146px; }

  /* 맨위로 버튼도 탭바를 피한다 */
  .bo-top { bottom: 74px !important; }
}


/* ══════════════════════════════════════════════════════════════
   홈 — 마캉스 배치 (2026-09-04 2차)
   ★웰니스나우24(tk) 계보의 큰 히어로·chevron 그리드를 걷어낸 자리.
   ★치수는 마캉스 실측을 기준으로 잡았다: 숏컷 4열 / 배너 328×100 / 카드 160폭.
   ★남의 CSS 를 가져오지 않는다 — 배치 값만 맞추고 규칙은 새로 쓴다.
   ══════════════════════════════════════════════════════════════ */
.mk-wrap { max-width: 1180px; margin: 0 auto; padding: 0 16px; }

/* ── ① 업종 숏컷 4열 그리드 ───────────────────────────── */
.mk-short { margin: 20px auto 34px; }   /* ★숏컷↔배너 간격 — 20px 는 붙어 보였다(2026-09-04) */
.mk-short ul {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px 4px; list-style: none; margin: 0; padding: 0;
}
.mk-short a {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none; padding: 4px 2px;
}
.mk-short-ic {
  width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 18px; transition: transform .15s;
}
.mk-short a:hover .mk-short-ic { transform: translateY(-3px); }
.mk-short-ic svg { width: 34px; height: 34px; }
.mk-short em {
  font-style: normal; font-size: 13px; font-weight: 600; color: #3A3F52;
  letter-spacing: -.4px; white-space: nowrap;
}
/* 업종마다 배경색을 달리한다 — 아이콘 실루엣만으로는 구분이 안 됐다 */
.mk-ic-swedish { background:#EAF0FF } .mk-ic-aroma   { background:#FFEFE6 }
.mk-ic-thai    { background:#E8F7EF } .mk-ic-dry     { background:#FFF3DC }
.mk-ic-sports  { background:#E6F4FA } .mk-ic-solo    { background:#F1ECFF }
.mk-ic-couple  { background:#FFE9F0 } .mk-ic-foot    { background:#EAF6E4 }
.mk-ic-waxing  { background:#FFECEC } .mk-ic-spa     { background:#E4F2F7 }
.mk-ic-lomi    { background:#FFF0DE }

/* ── ② 배너 3장 ────────────────────────────────────── */
.mk-bnr {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin: 0 auto 30px;
}
.mk-bnr-c {
  display: block; min-height: 100px; padding: 16px 18px; border-radius: 14px;
  text-decoration: none; transition: transform .15s;
}
.mk-bnr-c:hover { transform: translateY(-2px); }
.mk-bnr-t { display: block; font-size: 14px; font-weight: 600; color: #4A4F63; letter-spacing: -.4px; }
.mk-bnr-t b { display: block; font-size: 17px; font-weight: 800; color: #1D2233; margin-top: 2px; }
.mk-bnr-p { color: #7C8296; }
.mk-tone-a { background: #FFF4DE; } .mk-tone-b { background: #E4F3F0; } .mk-tone-c { background: #F0EAFE; }

/* ── ③ 섹션 헤더 + 카드 레일 ───────────────────────── */
.mk-sec { margin: 0 auto 30px; }
.mk-sec-hd { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.mk-sec-hd h2 { font-size: 19px; font-weight: 800; color: #1D2233; letter-spacing: -.6px; margin: 0; }
.mk-more {
  margin-left: auto; font-size: 13px; color: #7C8296; text-decoration: none;
  display: inline-flex; align-items: center; gap: 2px;
}
.mk-more svg { width: 14px; height: 14px; }
.mk-rail {
  display: flex; gap: 12px; list-style: none; margin: 0; padding: 2px 2px 10px;
  overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none;
}
.mk-rail::-webkit-scrollbar { display: none; }
.mk-rail > li { flex: 0 0 160px; min-width: 0; scroll-snap-align: start; }   /* ★min-width:0 필수 — flex 기본값 auto 면 긴 상호가 카드를 밀어 넓힌다 */

.mk-card { display: block; text-decoration: none; }
.mk-card-media {
  position: relative; display: block; border-radius: 12px; overflow: hidden;
  background: #EFF1F7; aspect-ratio: 4 / 3;
}
.mk-card-media img, .mk-card-media svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.mk-pick {
  position: absolute; left: 8px; top: 8px; font-style: normal;
  font-size: 10px; font-weight: 800; letter-spacing: .3px;
  color: #fff; background: #DB2777; padding: 3px 7px; border-radius: 6px;
}
.mk-card-t {
  display: block; margin-top: 9px; font-size: 14px; font-weight: 700; color: #1D2233;
  letter-spacing: -.4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mk-card-meta { display: block; margin-top: 3px; font-size: 12px; color: #8A90A3; }
.mk-card-meta i { font-style: normal; }
.mk-card-meta i + i::before { content: ' · '; }
.mk-card-price { display: block; margin-top: 5px; font-size: 14px; font-weight: 800; color: #16A34A; }
.mk-card-price em { font-style: normal; font-size: 11px; font-weight: 600; color: #8A90A3; margin-left: 2px; }

/* ── ④ 지역 좁히기 (맨 아래) ───────────────────────── */
.mk-zone-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.mk-zone-list a {
  display: inline-block; padding: 8px 14px; border-radius: 999px;
  background: #F3F5FA; color: #3A3F52; font-size: 13px; font-weight: 600; text-decoration: none;
}
.mk-zone-list a:hover { background: #E5E9F8; color: #DB2777; }

/* ── 모바일 ────────────────────────────────────────── */
@media (max-width: 760px) {
  .mk-short ul { gap: 12px 2px; }
  .mk-short-ic { width: 50px; height: 50px; border-radius: 16px; }
  .mk-short-ic svg { width: 30px; height: 30px; }
  .mk-short em { font-size: 12px; }
  /* 배너는 모바일에서 세로로 쌓지 않는다 — 아래 가로 스와이프 규칙으로 간다 */
  .mk-bnr-c { min-height: 0; }
  .mk-sec-hd h2 { font-size: 17px; }
  .mk-rail > li { flex: 0 0 142px; min-width: 0; }
}


/* ── 헤더 — 마캉스형 (2026-09-04) ───────────────────────────
   ★사용자 지적: "마캉스는 상단 메뉴가 없어."
     마캉스 헤더는 [로고 | 넓은 검색 | 벨] 뿐이다. 상단 네비 링크를 뺐다.
   ★대신 햄버거를 **데스크톱에서도 보이게** 한다 —
     메뉴를 지우고 햄버거까지 숨기면 내부 페이지에 내비게이션이 통째로 사라진다.
     서랍 안에 업종·지역·이용 링크가 모두 들어 있어 내부링크는 유지된다. */
.bo-hd-burger { display: flex !important; }
.bo-hd-search {
  flex: 1 1 auto !important; max-width: 680px !important;
  margin-left: 20px !important; margin-right: auto !important;
  height: 48px !important; background: #F3F5FA !important;
}
.bo-hd-search:focus-within { border-color: #DB2777 !important; background: #fff !important; }
.bo-hd-search input { font-size: 15px !important; }
.bo-hd-search button:hover { background: #DB2777 !important; }
@media (max-width: 1080px) {
  .bo-hd-search { max-width: none !important; margin-left: 10px !important; }
}

/* ══ 배너 일러스트 · 인기테마 TOP · 해외 (2026-09-04) ═══════════ */
.mk-bnr-c { display: flex; align-items: center; gap: 10px; overflow: hidden; }
.mk-bnr-tx { flex: 1 1 auto; min-width: 0; }
.mk-bnr-ill { flex: 0 0 62px; }
.mk-bnr-ill svg { width: 62px; height: 54px; display: block; }

/* ── 업종별 둘러보기 ─────────────────────────────────── */
.mk-sec-hd h2 span { color: #DB2777; }
.mk-wk-tabs { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 12px; scrollbar-width: none; }
.mk-wk-tabs::-webkit-scrollbar { display: none; }
.mk-wk-tab {
  flex: 0 0 auto; padding: 8px 15px; border-radius: 999px; border: 1px solid #E5E8F2;
  background: #fff; font-size: 13px; font-weight: 600; color: #5A6076; cursor: pointer;
  transition: .15s;
}
.mk-wk-tab.is-on { background: #2B3350; border-color: #2B3350; color: #fff; }
.mk-wk-list { display: none; grid-template-columns: 1fr 1fr; gap: 10px 26px; list-style: none; margin: 0; padding: 0; }
.mk-wk-list.is-on { display: grid; }
.mk-wk-list a { display: flex; gap: 12px; align-items: center; padding: 7px 0; text-decoration: none; }
.mk-wk-media { position: relative; flex: 0 0 96px; border-radius: 10px; overflow: hidden; background: #EFF1F7; aspect-ratio: 4/3; }
.mk-wk-media img, .mk-wk-media svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.mk-wk-no {
  position: absolute; left: 0; top: 0; font-style: normal; width: 22px; height: 22px;
  display: grid; place-items: center; font-size: 12px; font-weight: 800; color: #fff;
  background: rgba(24,28,45,.72); border-bottom-right-radius: 8px;
}
.mk-wk-body { min-width: 0; }
.mk-wk-body strong { display: block; font-size: 14.5px; font-weight: 700; color: #1D2233; letter-spacing: -.4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-wk-meta { display: block; margin-top: 2px; font-size: 12px; color: #8A90A3; }
.mk-wk-meta i { font-style: normal; }
.mk-wk-meta i + i::before { content: ' · '; }
.mk-wk-price { display: block; margin-top: 3px; font-size: 14px; font-weight: 800; color: #16A34A; }
.mk-wk-price em { font-style: normal; font-size: 11px; font-weight: 600; color: #8A90A3; margin-left: 2px; }

/* ── 해외 인기 마사지 ──────────────────────────────────── */
.mk-ovs-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; list-style: none; margin: 0; padding: 0; }
.mk-ovs-c {
  position: relative; display: block; height: 168px; border-radius: 14px;
  overflow: hidden; text-decoration: none; transition: transform .15s;
}
.mk-ovs-c:hover { transform: translateY(-2px); }
.mk-ovs-th { background: linear-gradient(160deg, #E8873B, #C2541E); }
.mk-ovs-vn { background: linear-gradient(160deg, #3EA7D8, #1F6FA8); }
.mk-ovs-ph { background: linear-gradient(160deg, #2FB6A4, #17786E); }
.mk-ovs-art { position: absolute; inset: 0; width: 100%; height: 100%; }
/* 실사 썸네일 — 글자가 사진 위에 얹히므로 아래쪽에 어두운 그라데이션을 깐다 */
.mk-ovs-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.mk-ovs-c.has-img::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,30,.05) 30%, rgba(10,14,30,.62) 100%); }
.mk-ovs-c .mk-ovs-tx { z-index: 2; }
.mk-ovs-c:hover .mk-ovs-img { transform: scale(1.03); }
.mk-ovs-img { transition: transform .3s var(--ease); }
.mk-ovs-tx { position: absolute; left: 16px; right: 16px; bottom: 14px; }
.mk-ovs-flag {
  display: inline-block; font-style: normal; font-size: 11px; font-weight: 800; color: #2B3350;
  background: #fff; padding: 3px 9px; border-radius: 6px; margin-bottom: 7px;
}
.mk-ovs-tx strong { display: block; font-size: 17px; font-weight: 800; color: #fff; letter-spacing: -.5px; text-shadow: 0 1px 6px rgba(0,0,0,.3); }
.mk-ovs-tx em { display: block; margin-top: 3px; font-style: normal; font-size: 12px; color: rgba(255,255,255,.9); text-shadow: 0 1px 5px rgba(0,0,0,.3); }

@media (max-width: 760px) {
  .mk-wk-list.is-on { grid-template-columns: 1fr; gap: 2px; }
  .mk-wk-media { flex-basis: 84px; }
  .mk-ovs-list { grid-template-columns: 1fr; }
  .mk-ovs-c { height: 132px; }
  .mk-bnr-ill { flex-basis: 54px; }
  .mk-bnr-ill svg { width: 54px; height: 48px; }
}

/* ── 숏컷 3D 이모지 (2026-09-04) ────────────────────────────
   소재: microsoft/fluentui-emoji (MIT). 손그림 SVG 는 실루엣이 비슷해 구분이 안 됐다. */
.mk-short-ic img { width: 42px; height: 42px; display: block; object-fit: contain; }
.mk-ic-overseas { background: #E9F1FF; }   /* ★빠져 있었다 — 해외만 배경이 흰색이었다 */

/* 해외 인기 마사지도 같은 문제였다 — 모바일에서 3장이 세로로 쌓였다.
   배너와 같은 스와이프 캐러셀로 통일한다. */
@media (max-width: 760px) {
  .mk-ovs-list {
    display: flex; grid-template-columns: none; gap: 10px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding: 0 16px; margin-left: -16px; margin-right: -16px;
    scroll-padding-left: 16px;
  }
  .mk-ovs-list::-webkit-scrollbar { display: none; }
  .mk-ovs-list > li { flex: 0 0 78%; scroll-snap-align: center; }
  .mk-ovs-c { height: 148px; }
  .mk-ovs-c:hover { transform: none; }
}

/* 가로 스크롤 영역 — 마우스로 끌 수 있다는 걸 커서로 알린다 */
@media (pointer: fine) {
  .mk-rail, .mk-bnr, .mk-ovs-list, .mk-wk-tabs { cursor: grab; }
  .mk-rail.is-dragging, .mk-bnr.is-dragging,
  .mk-ovs-list.is-dragging, .mk-wk-tabs.is-dragging { cursor: grabbing; scroll-behavior: auto; }
  .is-dragging a, .is-dragging img, .is-dragging svg { user-select: none; -webkit-user-drag: none; }
}


/* ══ 배너 — 마캉스 실측대로 고정폭 슬라이드 (2026-09-04) ═══════
   마캉스 CSS 실측:
     .home__banner-slide { width:32.8rem; height:10rem; flex-shrink:0 }
     .home__banner-slide:first-child { margin-left: calc((100% - 32.8rem)/2) }
   ⇒ 퍼센트가 아니라 **328×100px 고정**이다. 그래서 화면이 넓으면 여러 장이,
     좁으면 한 장 반이 보인다. 우리는 86% 로 잡아 화면이 넓어도 한 장만 나왔다.
   ★1080px 미만에서 이 방식으로 간다. 데스크톱은 배너가 3장뿐이라 3열 그리드가 낫다. */
@media (max-width: 1079px) {
  .mk-bnr {
    display: flex; grid-template-columns: none;
    gap: 12px; margin: 0 auto 26px;
    overflow-x: auto; scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding: 0 16px; margin-left: -16px; margin-right: -16px;
    scroll-padding-left: 16px;
  }
  .mk-bnr::-webkit-scrollbar { display: none; }
  .mk-bnr-c {
    flex: 0 0 min(328px, 86vw);      /* ★좁은 기기에서 화면을 넘지 않게 상한만 둔다 */
    height: 100px; min-height: 0;
    scroll-snap-align: start;
    padding: 14px 16px;
  }
  .mk-bnr-c:hover { transform: none; }
  .mk-bnr-t { font-size: 13px; }
  .mk-bnr-t b { font-size: 16px; }
  .mk-bnr-p { font-size: 11.5px; margin-top: 5px; }
  .mk-bnr-ill { flex-basis: 64px; }
  .mk-bnr-ill svg { width: 64px; height: 58px; }
  .mk-short { margin: 16px auto 26px; }
}

/* ★긴 상호가 카드를 밀어 넓히던 문제 (2026-09-04)
   flex 아이템의 기본 min-width 는 auto 라, 자식이 white-space:nowrap 이면
   **min-content 폭 아래로 못 줄어든다** → flex-basis(142px)를 무시하고 카드가 커진다.
   실측: '사랑의뜰안 대전지사2호점'(13자) 한 곳만 모바일에서 넓어졌다.
   ⇒ 줄바꿈 사슬 전체에 min-width:0 을 준다. 그래야 말줄임(…)이 작동한다.
   ★12자 이상 상호가 4,614곳이라 방치하면 계속 터진다. */
.mk-rail > li, .mk-card, .mk-card-t,
.mk-wk-list > li, .mk-wk-body, .mk-wk-body strong { min-width: 0; }
.mk-card { overflow: hidden; }

/* ══ 업소 상세 — 2단 히어로 (2026-09-04 재설계) ═══════════════════
   ★이전: 320×240 생성 SVG 를 1180px 폭 16:9 배너로 늘려 깔았다 → 추상 도형이 화면을
     가득 채워 값싸 보였다(사용자: "지금 너무 이상해").
   ★지금: 왼쪽 이미지(4:3) + 오른쪽 요약 패널. 첫 화면에 상호·주소·시간·가격·행동이 들어온다.
   ★평점·관리사·거리는 데이터가 없어 넣지 않는다(지어내지 않는다). */
.mk-sh-hero { background: linear-gradient(180deg,#FBFCFF 0%,#F5F7FD 100%);
  border-bottom: 1px solid var(--line); }
.mk-sh-hero-in { max-width: 1180px; margin: 0 auto; padding: 30px 24px 34px;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); gap: 34px; align-items: start; }

.mk-sh-media { position: relative; margin: 0; border-radius: 20px; overflow: hidden;
  background: #EEF1F8; box-shadow: 0 10px 30px rgba(23,26,43,.10), 0 2px 6px rgba(23,26,43,.06); }
.mk-sh-media::after { content: ""; position: absolute; inset: 0; border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(23,26,43,.07); pointer-events: none; }
.mk-sh-media img, .mk-sh-media svg {
  width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; display: block; }
.mk-sh-badge { position: absolute; left: 14px; top: 14px; z-index: 2;
  font-size: 12px; font-weight: 800; letter-spacing: -.01em; color: #fff;
  background: rgba(23,26,43,.62); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: 999px; }

.mk-sh-panel { padding-top: 4px; min-width: 0; }
.mk-sh-crumb { display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: 13px; color: var(--mut); margin-bottom: 10px; }
.mk-sh-crumb li + li::before { content: '›'; color: #C3C8D8; margin-right: 6px; }
.mk-sh-crumb a { color: var(--mut); }
.mk-sh-crumb a:hover { color: var(--brand); text-decoration: underline; }
.mk-sh-title { font-size: 30px; line-height: 1.25; font-weight: 800; color: var(--ink);
  letter-spacing: -.035em; word-break: keep-all; margin: 0 0 10px; }
.mk-sh-rate { display: flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--mut); margin-bottom: 10px; }
.mk-sh-rate b { color: var(--ink); font-size: 15px; }
.mk-sh-tags { display: flex; gap: 6px; flex-wrap: wrap; margin: 0 0 18px; }
.mk-sh-tags a { font-size: 12.5px; font-weight: 700; color: var(--ink2);
  background: #fff; border: 1px solid var(--line); padding: 5px 12px; border-radius: 999px; }
.mk-sh-tags a:hover { border-color: var(--brand); color: var(--brand); }

/* 핵심 정보 — 상자를 여러 개 쌓지 않고 한 장의 카드 안에서 실선 하나로 가른다 */
.mk-sh-key { margin: 0 0 18px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; box-shadow: 0 1px 2px rgba(23,26,43,.04); overflow: hidden; }
.mk-sh-key > div { display: grid; grid-template-columns: 132px minmax(0,1fr);
  gap: 12px; padding: 13px 18px; border-top: 1px solid var(--line); align-items: start; }
.mk-sh-key > div:first-child { border-top: 0; }
.mk-sh-key dt { display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: var(--mut); }
.mk-sh-key dt .bo-i { width: 16px; height: 16px; color: var(--brand); flex: 0 0 16px; }
.mk-sh-key dd { margin: 0; font-size: 14.5px; font-weight: 600; color: var(--ink);
  line-height: 1.5; word-break: keep-all; }
.mk-sh-price { font-weight: 800; color: var(--brand-d); font-size: 16px; }
.mk-sh-price i { font-style: normal; font-weight: 600; font-size: 13px; color: var(--mut); margin-left: 3px; }
.mk-sh-fac { display: flex; flex-wrap: wrap; gap: 5px; }
.mk-sh-fac i { font-style: normal; font-size: 12.5px; font-weight: 700; color: var(--ink2);
  background: var(--wash); border: 1px solid var(--line); padding: 3px 9px; border-radius: 7px; }

.mk-sh-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.mk-sh-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  flex: 1 1 0; min-width: 150px; height: 52px; padding: 0 18px; border-radius: 14px;
  font-size: 15px; font-weight: 800; letter-spacing: -.02em; transition: .16s var(--ease); }
.mk-sh-btn .bo-i { width: 18px; height: 18px; }
.mk-sh-btn-pri { background: var(--grad-brand); color: #fff; box-shadow: var(--sh-brand); }
.mk-sh-btn-pri:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(219,39,119,.34); }
.mk-sh-btn-line { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.mk-sh-btn-line:hover { border-color: var(--brand); color: var(--brand); }
.mk-sh-btn-off { background: #EEF0F6; color: #98A0B5; cursor: default; }
.mk-sh-note { margin: 9px 2px 0; font-size: 12.5px; color: var(--mut); }

/* 탭 — 스크롤해도 붙어 있게.
   ★헤더가 sticky(top:0 · z-index:60 · 높이 74/64/60px)라 top:0 으로 두면 헤더 밑으로 숨는다.
     헤더 높이만큼 내리고 z-index 는 그보다 낮게 둔다. */
.mk-sh-tabs { position: sticky; top: 74px; z-index: 40; display: flex;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); }
.mk-sh-tabs::before { content: ""; position: absolute; inset: 0; z-index: -1; background: #fff; opacity: .6; }
.mk-sh-tabs-in { display: flex; width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.mk-sh-tab { flex: 1 1 0; padding: 15px 6px; background: none; border: 0; cursor: pointer;
  font-size: 15px; font-weight: 700; color: var(--mut); border-bottom: 2.5px solid transparent;
  margin-bottom: -1px; transition: .15s; white-space: nowrap; }
.mk-sh-tab i { font-style: normal; font-size: 12px; font-weight: 800; margin-left: 4px;
  color: var(--brand); }
.mk-sh-tab.is-on { color: var(--ink); font-weight: 800; border-bottom-color: var(--brand); }
.mk-sh-tab:hover { color: var(--ink2); }
.mk-sh-pane { display: none; }
.mk-sh-pane.is-on { display: block; }

@media (max-width: 1080px) { .mk-sh-tabs { top: 64px; } }
@media (max-width: 979px) {
  .mk-sh-hero-in { grid-template-columns: 1fr; gap: 0; padding: 0 0 26px; }
  .mk-sh-media { border-radius: 0; box-shadow: none; }
  .mk-sh-media::after { border-radius: 0; box-shadow: none; }
  .mk-sh-media img, .mk-sh-media svg { aspect-ratio: 16/10; }
  /* 이미지 위로 패널을 살짝 걸쳐 올린다 — 첫 화면에 정보가 더 들어온다 */
  .mk-sh-panel { position: relative; margin: -22px 16px 0; padding: 20px 20px 4px;
    background: #fff; border-radius: 20px 20px 0 0; }
  .mk-sh-title { font-size: 23px; }
  .mk-sh-key > div { grid-template-columns: 104px minmax(0,1fr); padding: 12px 14px; gap: 10px; }
  .mk-sh-key dt { font-size: 12.5px; }
  .mk-sh-key dd { font-size: 14px; }
  .mk-sh-btn { height: 48px; font-size: 14.5px; min-width: 0; }
  .mk-sh-tab { font-size: 14px; padding: 13px 2px; }
}
@media (max-width: 760px) { .mk-sh-tabs { top: 60px; } }
@media (max-width: 420px) {
  .mk-sh-key > div { grid-template-columns: 1fr; gap: 3px; }
}

/* ── 탭 아래 본문 — 카드를 넓게 쓰고 여백을 키운다 ───────────────── */
.mk-sh-pane > section:first-child { margin-top: 28px; }
.mk-sh-pane .bo-card { padding: 30px 32px; border-radius: 18px;
  box-shadow: 0 1px 2px rgba(23,26,43,.04); }
.mk-sh-pane .bo-card > h2 { font-size: 20px; margin-bottom: 2px; }
.mk-sh-pane .bo-dt-intro p { font-size: 16px; line-height: 1.9; margin-top: 16px; }

/* 코스 — 가격표처럼 읽히게. 상자를 겹겹이 쌓지 않고 실선 하나로 가른다. */
.mk-sh-pane .bo-courses { gap: 0; margin-top: 18px; }
.mk-sh-pane .bo-courses li { background: transparent; border: 0;
  border-top: 1px solid var(--line); border-radius: 0; box-shadow: none;
  padding: 16px 4px; align-items: baseline; }
.mk-sh-pane .bo-courses li:first-child { border-top: 0; }
.mk-sh-pane .bo-c-n { font-size: 15.5px; font-weight: 700; color: var(--ink); }
.mk-sh-pane .bo-c-p { font-size: 17px; font-weight: 800; color: var(--ink);
  font-feature-settings: "tnum"; }
.mk-sh-pane .bo-courses li:first-child .bo-c-p { color: var(--brand-d); }
.mk-sh-more { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.mk-sh-golink { font-size: 14px; font-weight: 700; color: var(--brand);
  background: none; border: 0; cursor: pointer; padding: 0; }
.mk-sh-golink:hover { text-decoration: underline; }
.bo-pane-empty { margin-top: 16px; padding: 26px 4px; text-align: center;
  font-size: 14.5px; color: var(--mut); line-height: 1.8; }
.mk-sh-pane .bo-note { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--mut); }

@media (max-width: 760px) {
  .mk-sh-pane .bo-card { padding: 22px 18px; border-radius: 16px; }
  .mk-sh-pane .bo-dt-intro p { font-size: 15.5px; line-height: 1.85; }
  .mk-sh-pane .bo-c-n { font-size: 14.5px; }
  .mk-sh-pane .bo-c-p { font-size: 16px; }
}


/* 지역 → 매거진 되돌아오는 줄 ([[internal-link-web-blog-to-region]] 3층) */
.bo-maglinks{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:14px}
.bo-maglinks a{display:block;padding:16px 18px;background:#fff;border:1px solid var(--line);
  border-radius:14px;transition:.16s var(--ease)}
.bo-maglinks a:hover{border-color:var(--brand);transform:translateY(-2px);box-shadow:var(--sh-2)}
.bo-maglinks b{display:block;font-size:14.5px;font-weight:700;color:var(--ink);line-height:1.45;
  letter-spacing:-.02em;word-break:keep-all}
.bo-maglinks span{display:block;margin-top:6px;font-size:13px;color:var(--mut);line-height:1.6}
@media (max-width:760px){.bo-maglinks{grid-template-columns:1fr}}

/* ══ 출장 전용 홈 (2026-09-05 재설계) ═══════════════════════════════
   ★로드샵 사이트(마사지솔루션)의 업종 숏컷·카드 레일·업종 탭을 걷어내고
     출장의 실제 축(지역 → 코스·요금 → 상황 → 이용 순서)으로 다시 짰다. */
.bo-hsec{margin-bottom:44px}
.bo-hsub{margin:-4px 0 18px;font-size:14.5px;color:var(--mut);line-height:1.7}
.bo-sido{display:grid;grid-template-columns:repeat(6,1fr);gap:10px;list-style:none;margin:0;padding:0}
.bo-sido a{display:flex;align-items:center;justify-content:center;height:56px;border-radius:14px;
  background:#fff;border:1px solid var(--line);font-size:15px;font-weight:700;color:var(--ink);
  transition:.16s var(--ease)}
.bo-sido a:hover{border-color:var(--brand);color:var(--brand);transform:translateY(-2px);box-shadow:var(--sh-2)}

.bo-crs{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;list-style:none;margin:0;padding:0}
.bo-crs li{position:relative;padding:24px 22px 22px;border-radius:18px;background:#fff;
  border:1px solid var(--line);box-shadow:0 1px 2px rgba(23,26,43,.04)}
.bo-crs li:before{content:"";position:absolute;inset:0 0 auto;height:4px;border-radius:18px 18px 0 0}
.bo-crs-a:before{background:#DB2777}.bo-crs-b:before{background:#EC4899}.bo-crs-c:before{background:#16A34A}
.bo-crs-min{display:block;font-size:13px;font-weight:800;color:var(--mut)}
.bo-crs-min i{font-style:normal;margin-left:1px}
.bo-crs li strong{display:block;margin-top:4px;font-size:19px;font-weight:800;letter-spacing:-.03em}
.bo-crs-won{display:block;margin-top:10px;font-size:26px;font-weight:800;color:var(--brand-d);
  letter-spacing:-.04em;font-feature-settings:"tnum"}
.bo-crs-won i{font-style:normal;font-size:15px;font-weight:700;margin-left:2px}
.bo-crs li em{display:block;margin-top:10px;font-style:normal;font-size:13.5px;color:var(--ink2);line-height:1.65}
.bo-note{margin-top:14px;font-size:13px;color:var(--mut)}

.bo-occ{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;list-style:none;margin:0;padding:0}
.bo-occ li{padding:22px 20px;border-radius:16px;background:var(--wash);border:1px solid var(--line)}
.bo-occ-ic{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;
  background:#fff;border:1px solid var(--line);color:var(--brand);margin-bottom:12px}
.bo-occ-ic .bo-i{width:20px;height:20px}
.bo-occ li strong{display:block;font-size:15.5px;font-weight:800;letter-spacing:-.03em}
.bo-occ li p{margin-top:7px;font-size:13.5px;color:var(--ink2);line-height:1.7;word-break:keep-all}

.bo-step{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;list-style:none;margin:0;padding:0;counter-reset:s}
.bo-step li{position:relative;padding:22px 20px;border-radius:16px;background:#fff;border:1px solid var(--line)}
.bo-step-n{display:grid;place-items:center;width:30px;height:30px;border-radius:50%;
  background:var(--grad-brand);color:#fff;font-size:14px;font-weight:800;margin-bottom:12px}
.bo-step li strong{display:block;font-size:15.5px;font-weight:800;letter-spacing:-.03em}
.bo-step li p{margin-top:7px;font-size:13.5px;color:var(--ink2);line-height:1.7;word-break:keep-all}

@media (max-width:900px){
  .bo-sido{grid-template-columns:repeat(4,1fr)}
  .bo-crs,.bo-occ,.bo-step{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:560px){
  .bo-sido{grid-template-columns:repeat(3,1fr);gap:8px}
  .bo-crs,.bo-occ,.bo-step{grid-template-columns:1fr}
  .bo-hsec{margin-bottom:34px}
}

/* 롱테일 내부링크 — 동 단위 앵커 (2026-09-05) */
.bo-lt{display:flex;flex-wrap:wrap;gap:8px;list-style:none;margin:14px 0 0;padding:0}
.bo-lt a{display:inline-block;padding:8px 14px;border-radius:999px;background:#fff;
  border:1px solid var(--line);font-size:13.5px;font-weight:600;color:var(--ink2);
  transition:.15s var(--ease)}
.bo-lt a:hover{border-color:var(--brand);color:var(--brand);background:var(--brand-soft)}
@media (max-width:560px){.bo-lt a{font-size:13px;padding:7px 12px}}

/* 봄 홈 FAQ (AEO) · 보조 */
.bo-faq{margin:0;display:grid;gap:10px}
.bo-faq>div{background:#fff;border:1px solid var(--line);border-radius:14px;padding:18px 22px}
.bo-faq dt{font-size:15.5px;font-weight:800;letter-spacing:-.02em;color:var(--ink)}
.bo-faq dd{margin:8px 0 0;font-size:14.5px;line-height:1.75;color:var(--ink2);word-break:keep-all}
.bo-hsub{margin:-4px 0 14px;font-size:14px;color:var(--mut)}
.bo-hsec{margin-bottom:44px}

/* 모바일 고정 전화연결 — 탭바 위 */
.bo-callfix{display:none}
@media (max-width:960px){
  .bo-callfix{position:fixed;left:10px;right:10px;bottom:66px;z-index:95;
    display:flex;align-items:center;justify-content:center;gap:9px;height:50px;
    border-radius:14px;background:linear-gradient(135deg,#DB2777,#EC4899 60%,#16A34A);
    color:#fff;font-weight:800;box-shadow:0 8px 22px rgba(219,39,119,.4)}
  .bo-callfix b{font-size:16.5px}.bo-callfix span{font-size:11.5px;font-weight:700;opacity:.92}
  body{padding-bottom:126px !important}
}

/* 흘림 로고 — 붓글씨 PNG (2026-09-05). 글자가 세로로 길어 기존 높이보다 살짝 키운다 */
.bo-logo img.bo-logo-img{height:40px;width:auto}
@media (max-width:760px){.bo-logo img.bo-logo-img{height:34px}}
.bo-ft .bo-logo-img{height:44px;width:auto;opacity:.95}
