/* =============================================================
   SYNCO-LUBE® CZ — Child theme styles
   Verze: 4.0 — Super-Lube paleta (modrá + žlutá, BEZ červené)
   ============================================================= */

:root {
  /* === Modrá rodina === */
  --synco-blue-dark:   #0E1E3E;   /* nejtmavší modrá - top bar */
  --synco-blue:        #1A2B5C;   /* gradient hero */
  --synco-blue-mid:    #406AB1;   /* footer, akcentní modrá */
  --synco-blue-light:  #8EAAD8;   /* světlá modrá - eyebrow text */
  --synco-blue-pale:   #DBE7F5;   /* nejsvětlejší modrá - text na modré */
  --synco-blue-bg:     #E6ECF7;   /* pozadí ikon kategorií */

  /* === Žlutá rodina (HLAVNÍ AKCENT) === */
  --synco-yellow:      #FFCD00;   /* hlavní žlutá - claim, primary button */
  --synco-yellow-dark: #E5B900;   /* tmavší žlutá - hover */
  --synco-yellow-bg:   #FFF8D6;   /* nejsvětlejší žlutá - jemný hover background */

  /* === Šedá / pozadí === */
  --synco-text-dark:   #0E1E3E;   /* hlavní text */
  --synco-text:        #2C2C2A;   /* obyčejný text */
  --synco-text-mute:   #5F5E5A;   /* sekundární text */
  --synco-bg:          #F1EFE8;   /* béžové pozadí stránky */
  --synco-bg-light:    #F7F6F2;   /* světle béžové - karty */
  --synco-border:      #D3D1C7;   /* světle béžová - rámečky */

  --synco-container:   1280px;
  --synco-font-display: 'Anton', 'Manrope', sans-serif;
}

/* === Globální === */
body.synco-custom-page {
  background: var(--synco-bg) !important;
  margin: 0;
  padding: 0;
}

.synco-page {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--synco-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: var(--synco-container);
  margin: 0 auto;
  background-color: var(--synco-bg);
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' seed='5' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.20 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 300px 300px;
  overflow: hidden;
}

.synco-page * { box-sizing: border-box; }

/* ============================================================
   TOP BAR
   ============================================================ */
.synco-topbar {
  background: var(--synco-blue-dark);
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
  color: var(--synco-blue-pale);
  flex-wrap: wrap;
  font-weight: 400;
}
.synco-topbar a {
  color: var(--synco-blue-pale);
  text-decoration: none;
  transition: color 0.15s ease;
}
.synco-topbar a:hover {
  color: var(--synco-yellow);
}

/* ============================================================
   HEADER
   ============================================================ */
.synco-header {
  background: #FFFFFF;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--synco-border);
  gap: 16px;
}
.synco-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.synco-logo img,
.synco-logo .custom-logo,
.synco-logo .custom-logo-link img {
  max-height: 56px;
  width: auto;
  display: block;
}
.synco-logo-text {
  font-weight: 700;
  font-size: 18px;
  color: var(--synco-text-dark);
  letter-spacing: 0.3px;
  text-decoration: none;
}

.synco-nav-desktop { display: none; }
.synco-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.synco-nav-menu li { list-style: none; }
.synco-nav-menu a {
  position: relative;
  color: var(--synco-text-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.synco-nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--synco-yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.synco-nav-menu a:hover {
  color: var(--synco-text-dark);
}
.synco-nav-menu a:hover::after {
  transform: scaleX(1);
}
/* Aktivní položka menu (current-menu-item z WP) */
.synco-nav-menu .current-menu-item > a::after,
.synco-nav-menu .current_page_item > a::after {
  transform: scaleX(1);
}

/* Hamburger */
.synco-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.synco-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--synco-text-dark);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.synco-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.synco-hamburger.is-open span:nth-child(2) { opacity: 0; }
.synco-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.synco-nav-mobile {
  display: none;
  background: #FFFFFF;
  border-bottom: 1px solid var(--synco-border);
}
.synco-nav-mobile.is-open { display: block; }
.synco-nav-menu-mobile {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}
.synco-nav-menu-mobile li {
  list-style: none;
  border-bottom: 1px solid var(--synco-bg);
}
.synco-nav-menu-mobile li:last-child { border-bottom: none; }
.synco-nav-menu-mobile a {
  display: block;
  padding: 14px 16px;
  color: var(--synco-text-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.synco-nav-menu-mobile a:hover {
  background: var(--synco-yellow-bg);
  color: var(--synco-yellow-dark);
}

/* ============================================================
   HERO
   ============================================================ */
.synco-hero-wrap {
  padding: 16px;
  background: #FFFFFF;
}
.synco-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--synco-blue-dark);
  background-image:
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' seed='5' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.25 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.10 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
    linear-gradient(135deg, var(--synco-blue) 0%, var(--synco-blue-dark) 100%);
  background-size: 300px 300px, 300px 300px, 100% 100%;
  min-height: 420px;
}
.synco-hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

/* === Animace ozubených kol v hero === */
.synco-hero-gears {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  max-width: 50%;
  pointer-events: none;
  z-index: 1;
  display: none;  /* mobil: schované, na ≥640 px se zobrazí */
}

.synco-hero-content {
  position: relative;
  padding: 40px 24px;
  max-width: 640px;
  z-index: 2;
}
.synco-hero-eyebrow {
  font-size: 11px;
  color: var(--synco-blue-light);
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.synco-hero-title {
  font-family: var(--synco-font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--synco-yellow);
  letter-spacing: 0;
}
.synco-hero-subtitle {
  font-size: 15px;
  color: var(--synco-blue-pale);
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 400;
}
.synco-hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* === Tlačítka === */
.synco-btn-primary,
.synco-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 999px;     /* Super-Lube má kulatá tlačítka (pill) */
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
  border: 2px solid transparent;
}

/* Primary = žluté pozadí, tmavý text; hover = tmavé pozadí, žlutý text */
.synco-btn-primary {
  background: var(--synco-yellow);
  color: var(--synco-text-dark);
  border-color: var(--synco-yellow);
}
.synco-btn-primary:hover {
  background: var(--synco-text-dark);
  color: var(--synco-yellow);
  border-color: var(--synco-text-dark);
}

/* Secondary = bílý outline; hover = bílá výplň, modrý text */
.synco-btn-secondary {
  border-color: rgba(255,255,255,0.6);
  color: #FFFFFF;
  background: transparent;
}
.synco-btn-secondary:hover {
  background: #FFFFFF;
  color: var(--synco-blue-dark);
  border-color: #FFFFFF;
}

@media (max-width: 639px) {
  .synco-hero-bg-image { opacity: 0.35; }
}

/* ============================================================
   SEKCE
   ============================================================ */
.synco-section { padding: 40px 16px; }
.synco-section--white { background: #FFFFFF; }
.synco-section--cream {
  background-color: var(--synco-bg);
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' seed='5' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.20 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 300px 300px;
}

.synco-section-inner-narrow {
  max-width: 880px;
  margin: 0 auto;
}

.synco-section-head {
  text-align: center;
  margin-bottom: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.synco-section-eyebrow {
  font-size: 12px;
  color: var(--synco-yellow-dark);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.synco-section-title {
  font-family: var(--synco-font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--synco-text-dark);
  letter-spacing: 0;
  line-height: 1.25;
}

/* WP content */
.synco-content {
  font-size: 15px;
  line-height: 1.7;
  color: var(--synco-text);
  font-weight: 400;
}
.synco-content p { margin: 0 0 14px; }
.synco-content h2 {
  font-family: var(--synco-font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--synco-text-dark);
  margin: 28px 0 12px;
  letter-spacing: -0.01em;
}
.synco-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--synco-text-dark);
  margin: 24px 0 10px;
  letter-spacing: -0.01em;
}
.synco-content a {
  color: var(--synco-blue-mid);
  font-weight: 600;
}
.synco-content a:hover {
  color: var(--synco-yellow-dark);
}
.synco-content ul, .synco-content ol {
  margin: 0 0 14px 24px;
  padding: 0;
}

/* ============================================================
   KATEGORIE GRID
   ============================================================ */
.synco-cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.synco-cat-card {
  background: #FFFFFF;
  border: 1px solid var(--synco-border);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  display: block;
}
.synco-cat-card:hover {
  border-color: var(--synco-yellow);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14, 30, 62, 0.10);
}
.synco-cat-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  background: var(--synco-blue-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.synco-cat-card:hover .synco-cat-icon {
  background: var(--synco-yellow-bg);
}
.synco-cat-icon svg,
.synco-cat-icon img {
  width: 36px;
  height: 36px;
}
.synco-cat-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--synco-text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.synco-cat-desc {
  font-size: 13px;
  color: var(--synco-text-mute);
  line-height: 1.5;
  font-weight: 400;
}

/* ============================================================
   O NÁS
   ============================================================ */
.synco-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.synco-about-title {
  font-family: var(--synco-font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--synco-text-dark);
  margin: 10px 0 14px;
  line-height: 1.25;
  letter-spacing: 0;
}
.synco-about-text {
  font-size: 15px;
  color: #444441;
  line-height: 1.7;
  font-weight: 400;
}
.synco-about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--synco-blue-mid);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.synco-about-link:hover {
  color: var(--synco-yellow-dark);
}

.synco-about-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--synco-border);
}
.synco-about-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--synco-text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}
.synco-about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 13px;
  color: var(--synco-text-mute);
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
}
.synco-about-list li::before {
  content: "▸ ";
  color: var(--synco-yellow);
  font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */
.synco-footer {
  position: relative;
  z-index: 1;
  background-color: var(--synco-blue-mid);
  background-image:
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' seed='5' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.22 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.14 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 300px 300px, 300px 300px;
  padding: 40px 16px 24px;
  color: var(--synco-blue-pale);
  border-radius: 20px 20px 0 0;
}
.synco-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  font-size: 13px;
}
.synco-footer-col-title {
  font-family: var(--synco-font-display);
  color: #FFFFFF;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.synco-footer-col-content {
  line-height: 1.85;
  font-weight: 400;
  color: var(--synco-blue-pale);
}
.synco-footer-col-content a {
  color: var(--synco-blue-pale);
  text-decoration: none;
  transition: color 0.15s ease;
}
.synco-footer-col-content a:hover {
  color: var(--synco-yellow);
}
.synco-footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  color: rgba(219, 231, 245, 0.7);
  text-align: center;
  letter-spacing: 0.3px;
}

/* ============================================================
   PRODUKTOVÉ KARTY
   ============================================================ */
.synco-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.synco-product-card {
  background: #FFFFFF;
  border: 1px solid var(--synco-border);
  border-radius: 8px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}
.synco-product-card:hover {
  border-color: var(--synco-yellow);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14, 30, 62, 0.10);
}
.synco-product-image {
  background: var(--synco-bg);
  border-radius: 6px;
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.synco-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.synco-product-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--synco-text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.synco-product-desc {
  font-size: 13px;
  color: var(--synco-text-mute);
  line-height: 1.5;
  flex-grow: 1;
  font-weight: 400;
}

/* ============================================================
   SINGLE PRODUKT
   ============================================================ */
.synco-product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 32px 16px;
}
.synco-product-detail-image {
  background: var(--synco-bg);
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.synco-product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.synco-product-detail-title {
  font-family: var(--synco-font-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--synco-text-dark);
  margin-bottom: 16px;
  letter-spacing: 0;
  line-height: 1.25;
}
.synco-product-detail-short {
  font-size: 16px;
  color: var(--synco-text-mute);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 400;
}
.synco-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0;
}
.synco-feature-item {
  background: var(--synco-bg-light);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 13px;
  border-left: 3px solid var(--synco-yellow);
}
.synco-feature-name {
  color: var(--synco-text-mute);
  font-weight: 500;
}
.synco-feature-value {
  color: var(--synco-text-dark);
  font-weight: 700;
}
.synco-baleni-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.synco-baleni-table th,
.synco-baleni-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--synco-border);
  font-size: 14px;
}
.synco-baleni-table th {
  font-weight: 700;
  color: var(--synco-text-dark);
  background: var(--synco-bg-light);
  letter-spacing: 0.2px;
  border-bottom: 2px solid var(--synco-yellow);
}
.synco-baleni-table tbody tr {
  transition: background 0.15s ease;
}
.synco-baleni-table tbody tr:hover {
  background: var(--synco-yellow-bg);
}
.synco-pdf-downloads {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.synco-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--synco-blue-bg);
  border-radius: 6px;
  color: var(--synco-text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.synco-pdf-link:hover {
  background: var(--synco-yellow);
  color: var(--synco-text-dark);
}

/* ============================================================
   KONTAKTY
   ============================================================ */
.synco-contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 32px 0;
}
.synco-contact-info {
  background: var(--synco-bg-light);
  border-radius: 8px;
  padding: 28px;
  border: 1px solid var(--synco-border);
}
.synco-contact-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--synco-text-dark);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.synco-contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  font-size: 14px;
}
.synco-contact-label {
  color: var(--synco-text-mute);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.synco-contact-value {
  color: var(--synco-text-dark);
  font-weight: 500;
}
.synco-contact-value a {
  color: var(--synco-blue-mid);
  text-decoration: none;
  font-weight: 600;
}
.synco-contact-value a:hover {
  color: var(--synco-yellow-dark);
}

/* Kontaktní formulář (Contact Form 7) */
.synco-contact-form .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]) {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--synco-border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  margin-top: 4px;
  background: #FFFFFF;
  color: var(--synco-text);
  transition: border-color 0.15s ease;
}
.synco-contact-form .wpcf7-form-control:not([type="submit"]):focus {
  outline: none;
  border-color: var(--synco-yellow);
  box-shadow: 0 0 0 3px var(--synco-yellow-bg);
}
.synco-contact-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--synco-text-dark);
}
.synco-contact-form .wpcf7-submit {
  background: var(--synco-yellow);
  color: var(--synco-text-dark);
  border: 2px solid var(--synco-yellow);
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
}
.synco-contact-form .wpcf7-submit:hover {
  background: var(--synco-text-dark);
  color: var(--synco-yellow);
  border-color: var(--synco-text-dark);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.synco-breadcrumbs {
  font-size: 13px;
  color: var(--synco-yellow-dark);
  margin: 0;
  padding: 16px;
  background: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.synco-breadcrumbs a {
  color: var(--synco-blue-mid);
  text-decoration: none;
  font-weight: 600;
}
.synco-breadcrumbs a:hover {
  color: var(--synco-yellow-dark);
  text-decoration: underline;
}

/* ============================================================
   FLOATING "NAPIŠTE NÁM" BADGE
   ============================================================ */
.synco-floating-badge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background: var(--synco-yellow);
  color: var(--synco-text-dark);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}
.synco-floating-badge::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 18px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 0 solid transparent;
  border-top: 12px solid var(--synco-yellow);
  transition: all 0.2s ease;
}
.synco-floating-badge:hover {
  background: var(--synco-text-dark);
  color: var(--synco-yellow);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.synco-floating-badge:hover::after {
  border-top-color: var(--synco-text-dark);
}
.synco-floating-badge .synco-badge-icon {
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 639px) {
  .synco-floating-badge {
    bottom: 16px;
    right: 16px;
    padding: 12px 16px;
    font-size: 12px;
  }
}

/* ============================================================
   TABLET (≥640px)
   ============================================================ */
@media (min-width: 640px) {
  .synco-topbar {
    padding: 10px 24px;
    justify-content: flex-end;
    gap: 28px;
    font-size: 13px;
  }
  .synco-header { padding: 18px 24px; }
  .synco-hero-wrap { padding: 24px; }
  .synco-hero { min-height: 460px; border-radius: 24px; }
  .synco-hero-content { padding: 56px 40px; max-width: 60%; }
  .synco-hero-title { font-size: 48px; }
  .synco-hero-subtitle { font-size: 16px; }
  .synco-hero-gears { display: block; width: 320px; height: 320px; }

  .synco-section { padding: 56px 24px; }
  .synco-section-title { font-size: 32px; }
  .synco-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .synco-about-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .synco-about-title { font-size: 30px; }

  .synco-product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .synco-product-detail { grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 24px; }
  .synco-product-detail-title { font-size: 38px; }
  .synco-features { grid-template-columns: 1fr 1fr; }

  .synco-contacts { grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 0; }

  .synco-breadcrumbs { padding: 16px 24px; }

  .synco-footer { padding: 44px 24px 28px; }
  .synco-footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
}

/* ============================================================
   DESKTOP (≥1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .synco-page {
    margin-top: 16px;
    margin-bottom: 0;
    border-radius: 12px 12px 0 0;
  }
  .synco-topbar { padding: 10px 32px; }
  .synco-header { padding: 22px 32px; }

  .synco-hamburger { display: none; }
  .synco-nav-mobile { display: none !important; }
  .synco-nav-desktop { display: block; }
  .synco-nav-menu { gap: 36px; }

  .synco-hero-wrap { padding: 32px; }
  .synco-hero { min-height: 480px; border-radius: 24px; }
  .synco-hero-content { padding: 80px 56px; max-width: 55%; }
  .synco-hero-eyebrow { font-size: 12px; }
  .synco-hero-title { font-size: 64px; line-height: 1.25; }
  .synco-hero-subtitle { font-size: 17px; }
  .synco-btn-primary, .synco-btn-secondary { padding: 16px 32px; font-size: 14px; }
  .synco-hero-gears { width: 420px; height: 420px; right: 20px; }

  .synco-section { padding: 80px 32px; }
  .synco-section-eyebrow { font-size: 12px; }
  .synco-section-title { font-size: 42px; }

  .synco-cat-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .synco-cat-card { padding: 40px 20px; }
  .synco-cat-icon { width: 80px; height: 80px; }
  .synco-cat-icon svg, .synco-cat-icon img { width: 40px; height: 40px; }

  .synco-about-title { font-size: 38px; }
  .synco-about-card { padding: 32px; }

  .synco-product-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .synco-product-detail { padding: 56px 32px; }

  .synco-contacts { padding: 56px 0; }

  .synco-breadcrumbs { padding: 16px 32px; }

  .synco-footer { padding: 56px 32px 32px; }
}
