/* fizjo-page-co-cie-boli.css — fizjointouch-child-v4 */
/* Auto-extracted from page-co-cie-boli.php */

/* ── DESIGN TOKENS ── */
:root {
  --blue:    #24abd6;
  --blue-dk: #1a8fb5;
  --blue-lt: #e8f7fc;
  --orange:  #fd9b32;
  --ink:     #1e2d3a;
  --ink60:   rgba(30,45,58,.6);
  --ink10:   rgba(30,45,58,.08);
  --white:   #ffffff;
  --bg:      #f5f8fa;
  --max:     1340px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── STRONA ── */
.ccb-main {
  min-height: calc(100vh - 80px);
  background: linear-gradient(160deg, #f0f8fb 0%, #f9fafb 60%);
}
.ccb-main__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 480px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── LEWA: TYTUŁ ── */
.ccb-main__copy { padding-top: 40px; }
.ccb-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 20px;
}
.ccb-eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: var(--blue); border-radius: 2px;
}
.ccb-main__copy h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2; color: var(--ink); margin-bottom: 20px;
}
.ccb-main__copy h1 em { font-style: italic; color: var(--blue); }
.ccb-main__copy > p {
  font-size: 1rem; line-height: 1.7; color: var(--ink60);
  max-width: 380px; margin-bottom: 32px;
}
.ccb-hint {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; color: var(--ink60);
  padding: 12px 16px; background: #fff;
  border-radius: 12px; border: 1px solid var(--ink10);
  box-shadow: 0 2px 8px rgba(30,45,58,.06);
  max-width: 340px;
}
.ccb-hint svg { color: var(--blue); flex-shrink: 0; }

/* ── ŚRODEK: FIGURKA ── */
.ccb-body-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: flex-start;
  padding-top: 20px;
}
.ccb-body-svg-wrap {
  position: relative; width: 100%; max-width: 300px; margin: 0 auto;
}
.ccb-body-svg-wrap svg { width: 100%; height: auto; display: block; }

/* Strefy klikalne */
.body-zone { cursor: pointer; transition: opacity .18s; }
.body-zone .zone-fill {
  fill: transparent;
  transition: fill .18s;
}
.body-zone:hover .zone-fill,
.body-zone.active .zone-fill { fill: rgba(36,171,214,.15); }
.body-zone .zone-outline {
  fill: none; stroke: var(--blue);
  stroke-width: 2; opacity: 0;
  transition: opacity .18s, stroke-width .18s;
}
.body-zone:hover .zone-outline,
.body-zone.active .zone-outline { opacity: 1; }

/* Tooltip */
.body-tooltip {
  position: absolute; background: var(--ink); color: #fff;
  font-size: .78rem; font-weight: 600; font-family: 'Inter', sans-serif;
  padding: 6px 12px; border-radius: 8px; white-space: nowrap;
  pointer-events: none; opacity: 0;
  transition: opacity .15s;
  transform: translateX(-50%);
  z-index: 10;
}
.body-tooltip::after {
  content: ''; position: absolute; bottom: -5px; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent; border-bottom: none;
  border-top-color: var(--ink);
}

/* ── PRAWA: LISTA OBSZARÓW ── */
.ccb-main__areas { padding-top: 40px; }
.ccb-areas-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink60);
  margin-bottom: 14px;
}
.ccb-area-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ccb-area-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: #fff;
  border-radius: 12px; border: 1px solid var(--ink10);
  cursor: pointer; text-decoration: none; color: var(--ink);
  font-size: .88rem; font-weight: 600;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.ccb-area-item:hover {
  border-color: var(--blue);
  transform: translateX(4px);
  box-shadow: 0 2px 12px rgba(36,171,214,.12);
  color: var(--blue);
}
.ccb-area-item.disabled {
  opacity: .45; cursor: default; pointer-events: none;
}
.ccb-area-item__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ink10); flex-shrink: 0;
  transition: background .15s;
}
.ccb-area-item:hover .ccb-area-item__dot { background: var(--blue); }
.ccb-area-item__count {
  margin-left: auto; font-size: .72rem;
  color: var(--ink60); font-weight: 400;
}
.ccb-area-item svg { color: var(--ink60); transition: color .15s; margin-left: 4px; }
.ccb-area-item:hover svg { color: var(--blue); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .ccb-main__inner { grid-template-columns: 1fr 360px 1fr; gap: 24px; }
}
@media (max-width: 860px) {
  .ccb-main__inner { grid-template-columns: 1fr; padding: 40px 24px 60px; }
  .ccb-main__copy { padding-top: 0; }
  .ccb-body-svg-wrap { max-width: 220px; }
  .ccb-main__areas { padding-top: 0; }
}
