/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */ /**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
Výborně! CSS se načítá! 🎉
Teď vymaž testovací #header { background: red !important; } a vlož finální kód. Otevři style.css a nahraď celý obsah tímto:
css/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* ── Google Font ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ── Celý header – font ──────────────────────────── */
#header,
#header a,
#header button,
#header nav {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* ── Header – bílé pozadí + shadow ──────────────── */
#header .header-main-row {
  background: #ffffff !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.07) !important;
  border-bottom: 1px solid #e8e8e8 !important;
}

/* ── Nav odkazy ──────────────────────────────────── */
[data-menu="type-2:center"] > ul > li > a.ct-menu-link {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #444444 !important;
  padding: 7px 16px !important;
  border-radius: 8px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transition: color .2s, background .2s !important;
}

/* ── Hover ───────────────────────────────────────── */
[data-menu="type-2:center"] > ul > li:hover > a.ct-menu-link {
  color: #1b2e4b !important;
  background: #f0f4f9 !important;
}

/* ── Aktivní položka ─────────────────────────────── */
[data-menu="type-2:center"] > ul > li.current-menu-item > a.ct-menu-link {
  color: #1b2e4b !important;
  font-weight: 600 !important;
  background: #eef2f8 !important;
}

/* ── Spodní zelená linka pryč ────────────────────── */
[data-menu="type-2:center"] > ul > li > a.ct-menu-link::after {
  display: none !important;
}

/* ── Zelená linka úplně pryč ─────────────────────── */
#header .ct-menu-link::after,
#header .ct-menu-link::before {
  display: none !important;
  height: 0 !important;
}

/* ── Home highlight – jemnější ───────────────────── */
[data-menu="type-2:center"] > ul > li.current-menu-item > a.ct-menu-link {
  background: transparent !important;
  color: #1b2e4b !important;
  font-weight: 600 !important;
}

/* ── Větší písmo ─────────────────────────────────── */
[data-menu="type-2:center"] > ul > li > a.ct-menu-link {
  font-size: 15px !important;
}

/* ── Compare Airlines tlačítko ───────────────────── */
#header .ct-header-menu-item a[href*="compare-airlines"] {
  background: #1b2e4b !important;
  color: #ffffff !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background .2s, transform .15s !important;
}

#header .ct-header-menu-item a[href*="compare-airlines"]:hover {
  background: #243d63 !important;
  transform: translateY(-1px) !important;
}