/* ════════════════════════════════════════════════════════════════════════
   12-utilities.css — Globální utility třídy

   Container, eyebrow, section-head, breadcrumb, mezery, helpers.
   Třídy se přidávají Divi modulům přes Advanced → CSS Class.
   ════════════════════════════════════════════════════════════════════════ */

/* ── Container (override Divi row pokud potřeba) ────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Eyebrow (růžový uppercase text nad H2) ─────────────────────── */
.eyebrow {
  display: inline-block;
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

/* ── Section head (vycentrovaný blok s eyebrow + H2 + popis) ────── */
.section-head {
  text-align: center;
  margin-bottom: 38px;
}
.section-head h2 {
  line-height: 1.15;
}
.section-head h2 em {
  font-style: normal;
  color: var(--pink);
}
.section-head p {
  color: var(--muted);
  max-width: 580px;
  margin: 14px auto 0;
  font-size: 15.5px;
}

/* ── Sekce — modifikátory pozadí ─────────────────────────────────── */
.section-yellow {
  background: var(--bg-warm) !important;
}
.section-yellow-light {
  background: var(--bg-warm-light) !important;
}
.section-soft {
  background: var(--bg-soft) !important;
}
.section-pink-soft {
  background: var(--pink-50) !important;
}
.section-burgundy {
  background: var(--burgundy) !important;
  color: var(--burgundy-text);
}
.section-burgundy h1,
.section-burgundy h2,
.section-burgundy h3,
.section-burgundy h4 {
  color: #fff;
}

/* ── Sekce padding modifikátory ─────────────────────────────────── */
.section-compact { padding: 32px 0 !important; }
.section-medium  { padding: 48px 0 !important; }
.section-large   { padding: 64px 0 !important; }
.section-xl      { padding: 80px 0 !important; }

/* ── Breadcrumb ──────────────────────────────────────────────────── */
.breadcrumb,
.et_pb_breadcrumb_module {
  background: #fff;
  padding: 18px 0 8px;
  font-size: var(--fs-small);
  color: var(--muted);
}
.breadcrumb .container,
.et_pb_breadcrumb_module > div {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a,
.et_pb_breadcrumb_module a {
  color: var(--muted);
}
.breadcrumb a:hover,
.et_pb_breadcrumb_module a:hover {
  color: var(--pink);
}
.breadcrumb .sep,
.et_pb_breadcrumb_module .et_pb_breadcrumb_separator {
  color: #c8c8c8;
}
.breadcrumb .current {
  color: var(--ink);
  font-weight: 600;
}

/* ── Hvězdičky (recenze) ────────────────────────────────────────── */
.stars {
  color: var(--star);
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-flex;
  gap: 1px;
}

/* ── Tag / chip (univerzální) ────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--bg-warm);
  border: 1px solid var(--yellow-cta);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  transition: all var(--t-fast);
}
.chip:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}
.chip.chip-pink {
  background: var(--pink-50);
  border-color: var(--pink-100);
  color: var(--pink-dark);
}
.chip.chip-green {
  background: var(--success-soft);
  border-color: var(--success-border);
  color: var(--success);
}

/* ── Helper: zobrazení / skrytí ─────────────────────────────────── */
.hide               { display: none !important; }
.hide-mobile        { @media (max-width: 640px) { display: none !important; } }
.show-mobile-only   { display: none !important; }
@media (max-width: 640px) {
  .show-mobile-only { display: block !important; }
  .hide-mobile      { display: none !important; }
}

/* ── Helper: text align ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-left   { text-align: left; }
.text-muted  { color: var(--muted); }
.text-pink   { color: var(--pink); }

/* ── Helper: rychlé spacingy (mimořádně, raději přes section-*) ── */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
