/* Todaki — single listing detail (full-bleed hero, premium meta). */

body.todaki-listing { background: var(--bg); margin: 0; padding-bottom: 160px; }

.todaki-listing-shell {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--bg);
  font-family: var(--font-kr);
  position: relative;
  min-height: 100vh;
}

/* ─── Hero — full bleed 1:1 ─── */
.todaki-detail-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
}
.todaki-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.32) 100%);
  pointer-events: none;
}
.todaki-detail-hero__btn {
  position: absolute;
  top: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: background var(--t-fast), transform var(--t-fast);
  z-index: 2;
}
.todaki-detail-hero__btn:hover { background: var(--bg); transform: scale(1.05); }
.todaki-detail-hero__btn--back { left: 16px; }
.todaki-detail-hero__btns-right {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.todaki-detail-hero__btns-right .todaki-detail-hero__btn { position: static; }
.todaki-detail-hero__heart.is-on { color: var(--pink); }
.todaki-detail-hero__heart.is-on .todaki-icon svg { fill: var(--pink); }

.todaki-detail-hero__indicator {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(8px);
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-full);
  z-index: 2;
  font-family: var(--font-num);
}

/* ─── Title block ─── */
.todaki-detail-head { padding: 22px 16px 16px; }
.todaki-detail-head__row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.todaki-detail-head__neighborhood {
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 600;
}
.todaki-detail-head__name {
  font: var(--t-display);
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}
.todaki-detail-head__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 14px;
  font-family: var(--font-num);
}
.todaki-detail-head__rating strong { font-weight: 700; }
.todaki-detail-head__reviews { color: var(--ink-3); font-weight: 500; }
.todaki-detail-head__chips {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* ─── Quick info bar — clean grid, no background ─── */
.todaki-quickbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 16px 8px;
  border-top: 1px solid var(--line-softer);
  border-bottom: 1px solid var(--line-softer);
}
.todaki-quickbar__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  padding: 4px;
  border-radius: var(--r);
  transition: background var(--t-fast);
}
.todaki-quickbar__cell:hover { background: var(--bg-3); }
.todaki-quickbar__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.todaki-quickbar__label {
  font-size: 12px;
  font-weight: 700;
}
.todaki-quickbar__sub {
  font-size: 10.5px;
  color: var(--ink-3);
}

/* ─── Section blocks ─── */
.todaki-section { padding: 0 16px; }
.todaki-section--ribbon {
  background: var(--bg);
  border-top: 8px solid var(--bg-2);
  padding-top: 8px;
}
.todaki-section--prose {
  font: var(--t-body);
  color: var(--ink-2);
  padding-top: 8px;
  padding-bottom: 24px;
}
.todaki-section__head { padding: 24px 0 14px; }
.todaki-section__head--row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.todaki-section__count {
  color: var(--pink);
  margin-left: 6px;
  font-weight: 700;
  font-family: var(--font-num);
}
.todaki-section__sort {
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 600;
}

/* ─── Treatment menu ─── */
.todaki-menu { list-style: none; margin: 0; padding: 0; }
.todaki-menu__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-softer);
}
.todaki-menu__item:last-child { border-bottom: 0; padding-bottom: 24px; }
.todaki-menu__name { font-size: 15px; font-weight: 600; color: var(--ink); }
.todaki-menu__duration { font-size: 12px; color: var(--ink-3); margin-top: 3px; }
.todaki-menu__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-num);
}

/* ─── Hours & amenities ─── */
.todaki-hours { font-size: 14px; line-height: 1.85; color: var(--ink-2); padding-bottom: 12px; }
.todaki-amenities {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-bottom: 24px;
}

/* ─── Reviews block ─── */
.todaki-no-reviews { padding: 0 0 24px; }
.todaki-section__more-wrap { padding: 18px 16px 24px; }

/* ─── Sticky bottom CTA — 강남언니 식 high CTA ─── */
.todaki-detail-cta {
  position: fixed;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: var(--max-w);
  background: var(--bg);
  border-top: 1px solid var(--line-softer);
  padding: 14px 16px;
  display: flex;
  gap: 8px;
  z-index: 40;
  box-shadow: 0 -4px 20px rgba(17, 17, 17, 0.06);
}
.todaki-detail-cta__heart {
  width: 52px;
  height: 52px;
  border: 1px solid var(--ink-5);
  border-radius: var(--r-md);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  cursor: pointer;
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  flex-shrink: 0;
}
.todaki-detail-cta__heart:hover { color: var(--pink); border-color: var(--pink-300); }
.todaki-detail-cta__heart:active { transform: scale(0.95); }
.todaki-detail-cta__heart.is-on {
  color: var(--pink);
  background: var(--pink-50);
  border-color: var(--pink-100);
}
.todaki-detail-cta__heart.is-on .todaki-icon svg { fill: var(--pink); }

.todaki-detail-cta .todaki-btn {
  font-size: 15px;
  height: 52px;
  border-radius: var(--r-md);
}
.todaki-detail-cta .todaki-btn--coral { padding: 0 24px; }

@media (min-width: 768px) {
  body.todaki-listing { background: var(--bg-2); padding-bottom: 160px; }
  .todaki-listing-shell { box-shadow: 0 0 0 1px var(--line-softer); }
  .todaki-detail-cta { bottom: 0; }
}
