/* ==========================================================
   KUTILS.CZ – WORDPRESS TÉMA
   Autor: Kutils.cz
   Popis: Responzivní one-page WordPress šablona
   Verze: 2.0
   ========================================================== */


/* ==========================================================
   === RESET & ZÁKLADNÍ NASTAVENÍ ===
   ========================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
  font-size: 16px;
}


/* ==========================================================
   === TYPOGRAFIE ===
   ========================================================== */
h1, h2, h3 {
  color: #1E4C82;
  font-weight: 600;
  margin-bottom: 15px;
}

h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  margin-bottom: 15px;
}

a {
  color: #1E4C82;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #163b67;
}

/* --- Tlačítka --- */
a.button {
  display: inline-block;
  padding: 12px 28px;
  background: #1E4C82;
  color: #fff;
  border-radius: 8px;
  margin: 10px 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

a.button:hover {
  background: #163b67;
  transform: scale(1.03);
}


/* ==========================================================
   === STRUKTURA SEKCI ===
   ========================================================== */
header,
section,
footer {
  padding: 70px 20px;
  max-width: 1300px;
  margin: auto;
}


/* --- Header (Hero sekce s videem) --- */
header.hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0; /* staré paddingy už nebudou potřeba */
}

/* --- Video pozadí --- */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* --- Modrý filtr přes video --- */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 76, 130, 0.55); /* poloprůhledný modrý filtr */
  z-index: 1;
}

/* --- Obsah před filtrem --- */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

/* --- Text --- */
.hero-content h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  margin-bottom: 25px;
  color: #eaf1fb;
}

/* --- Tlačítka --- */
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-content .button {
  background: #fff;
  color: rgb(48, 81, 119);
  font-weight: 600;
}

.hero-content .button:hover {
  background: #163b67;
  color: #fff;
  transform: scale(1.03);
}



header h1 { margin-bottom: 10px; }

header p {
  max-width: 750px;
  margin: 0 auto 20px;
  color: #333;
}


/* ==========================================================
   === SEKCE ČIŠTĚNÍ SEDAČEK ===
   ========================================================== */
.cleaning-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.cleaning-intro h2 {
  color: #1E4C82;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.cleaning-intro h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #1E4C82;
  margin: 12px auto 0;
  border-radius: 2px;
}

.cleaning-intro p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 750px;
}

.cleaning-intro strong {
  color: #1E4C82;
}

#cisteni {
  background: #f7faff;
  border-top: 1px solid #e4eaf3;
  border-bottom: 1px solid #e4eaf3;
  border-radius: 12px;
}




/* ==========================================================
   === CTA SEKCE ===
   ========================================================== */
#kontaktni-cta {
  background: #f4f8ff;
  border-top: 1px solid #e0e6ef;
  text-align: center;
  border-radius: 8px;
}

#kontaktni-cta h2 {
  margin-bottom: 10px;
}


/* ==========================================================
   === CENÍK / SLUŽBY ===
   ========================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 35px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e5e9f0;
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 60px;
  height: auto;
  border-radius: 6px;
  margin-bottom: 12px;
}

.service-info { flex: 1; }

.service-info h4 {
  font-size: 1.05rem;
  color: #1E4C82;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
}

.service-info p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0;
}

.service-price {
  font-weight: 700;
  color: #1E4C82;
  font-size: 1.05rem;
  margin-top: 15px;
  align-self: flex-end;
}

/* --- Hover efekt na cenu --- */
.service-card:hover .service-price {
  color: #163b67;
  transform: scale(1.05);
  transition: 0.25s ease;
}

/* ==========================================================
   === POZNÁMKY A DODATEČNÉ INFORMACE ===
   ========================================================== */
.note {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-top: 35px;
  font-style: italic;
  line-height: 1.6;
}

.note em {
  color: #555;
}




/* ==========================================================
   === Video ===
   ========================================================== */

.promo-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  background: #000;
}

.promo-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pobídka “zapnout zvuk” */
.sound-prompt {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  padding: 14px 22px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 14px;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: opacity .3s;
  white-space: nowrap;
}

.sound-prompt.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Trvalé tlačítko mute/unmute */
.sound-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 10px 14px;
  font-size: 22px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: 0.25s;
}

.sound-toggle:hover {
  background: rgba(0,0,0,0.75);
}





/* ==========================================================
   MONTÁŽ NÁBYTKU – PODSTRÁNKA / SEKCE
   ========================================================== */

/* Obecně pro stránku montáže (pokud používáš .montaz-page na <main>) */
.montaz-page {
  background-color: #f4f7fc;
}

/* === HLAVNÍ SEKCE MONTÁŽE === */

#montaz {
  background:
    linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%),
    url('<?php echo get_template_directory_uri(); ?>/assets/images/bg-tools-pattern.png') no-repeat center top;
  background-size: cover;
  border-top: 1px solid #e5eaf2;
  border-bottom: 1px solid #e5eaf2;
  border-radius: 16px;
  padding: 70px 20px 60px;
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 40px auto;
}

/* --- Úvodní text / hero v rámci sekce --- */

.assembly-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.assembly-intro h2 {
  color: #1E4C82;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.assembly-intro h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #1E4C82, #2b6ec8);
  margin: 12px auto 0;
  border-radius: 999px;
}

.assembly-intro p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 750px;
}

.assembly-intro strong {
  color: #1E4C82;
}

/* --- Obrázky / ikony montáže --- */

.assembly-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 35px;
}

.assembly-item {
  text-align: center;
  flex: 1 1 220px;
  max-width: 260px;
}

.montaz-image {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 22px rgba(15, 35, 80, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.montaz-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 35, 80, 0.18);
}

.assembly-item p {
  font-size: 0.95rem;
  color: #333;
  margin-top: 10px;
  font-weight: 500;
}

/* === NADPIS CENÍKU === */

#montaz h3 {
  text-align: center;
  color: #1E4C82;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin: 60px 0 25px;
  font-weight: 600;
}

/* === TABULKA CENÍKU === */

.assembly-pricing-table.table-wrapper,
#montaz .table-wrapper {
  overflow-x: auto;
  margin: 0 auto 30px;
  max-width: 900px;
}

#montaz table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 35, 80, 0.06);
  border-radius: 14px;
  overflow: hidden;
}

#montaz thead {
  background: linear-gradient(90deg, #1E4C82, #2263b2);
  color: #fff;
}

#montaz th,
#montaz td {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.98rem;
}

#montaz th {
  font-weight: 600;
  letter-spacing: 0.3px;
}

#montaz tbody tr {
  border-bottom: 1px solid #e8ecf3;
  transition: background 0.18s ease, transform 0.18s ease;
}

#montaz tbody tr:last-child {
  border-bottom: none;
}

#montaz tbody tr:hover {
  background: #f3f7ff;
}

#montaz td[data-label="Cena"],
#montaz td:last-child {
  text-align: right;
}

/* zvýrazněná (střední) varianta – „nejčastější“ */

#montaz .row-highlight {
  background: #f7f9ff;
}

#montaz .row-highlight:hover {
  background: #edf3ff;
}

/* --- Pilulky s cenou a štítek --- */

.price-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #e8f1ff;
  color: #1E4C82;
  font-weight: 600;
  font-size: 0.95rem;
}

.price-pill-main {
  background: #1E4C82;
  color: #fff;
}

.price-tag {
  display: inline-block;
  margin-left: 8px;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffefc2;
  color: #8a5b00;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* === DVA BOXY POD CENÍKEM === */

.assembly-extra {
  max-width: 900px;
  margin: 10px auto 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.assembly-extra-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 6px 22px rgba(15, 35, 80, 0.06);
}

.assembly-extra-box h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #1E4C82;
  font-weight: 600;
}

/* seznam „Co je v ceně montáže“ */

.assembly-included {
  list-style: none;
  padding: 0;
  margin: 0;
}

.assembly-included li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 0.94rem;
  color: #444;
}

.assembly-included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.9rem;
  color: #1E8A3E;
}

/* hodinovka + poznámka */

.assembly-hourly {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 6px;
}

.assembly-hourly strong {
  color: #1E4C82;
}

.assembly-note-small {
  font-size: 0.85rem;
  color: #666;
}

/* === CTA POD SEKCI MONTÁŽE (BUTTON) === */

.assembly-cta {
  max-width: 900px;
  margin: 20px auto 0;
  text-align: center;
}

.assembly-cta p {
  margin-bottom: 10px;
  font-size: 0.98rem;
  color: #333;
}

.assembly-cta-btn {
  margin-top: 4px;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600;
}

/* === POZNÁMKA POD CENÍKEM === */

#montaz .note {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 18px;
  font-style: italic;
}

/* ==========================================================
   RESPONSIVE – mobilní zobrazení
   ========================================================== */

@media (max-width: 992px) {
  #montaz {
    margin: 20px 10px;
    padding: 60px 15px 50px;
  }
}

@media (max-width: 768px) {
  .assembly-gallery {
    gap: 18px;
  }

  .assembly-extra {
    grid-template-columns: 1fr;
  }

  #montaz h3 {
    margin-top: 40px;
  }
}

/* responzivní tabulka – mobilní „karetní“ režim */

@media (max-width: 640px) {
  #montaz table,
  #montaz thead,
  #montaz tbody,
  #montaz th,
  #montaz td,
  #montaz tr {
    display: block;
  }

  #montaz thead {
    position: absolute;
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
  }

  #montaz tbody tr {
    border-bottom: 1px solid #e8ecf3;
    margin-bottom: 10px;
    padding: 8px 0;
  }

  #montaz td {
    padding: 8px 16px 8px 45%;
    text-align: left !important;
    position: relative;
    font-size: 0.92rem;
  }

  #montaz td::before {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    top: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    color: #777;
  }

  /* cena na mobilu vlevo pod labellem */
  #montaz td[data-label="Cena"] {
    text-align: left !important;
  }

  .price-tag {
    display: inline-block;
    margin-left: 0;
    margin-top: 6px;
  }
}



/* ==========================================================
   === SEKCE O NÁS (KUTILS.CZ) – SAMOSTATNÁ VERZE ===
   ========================================================== */
#onas_kutils {
  position: relative;
  width: 100%;
  padding: 110px 20px;
  text-align: center;
  color: #fff;

  /* 👉 Obrázek viditelný celý */
  background:
    linear-gradient(rgba(30, 76, 130, 0.7), rgba(20, 50, 90, 0.8)),
    url('/wp-content/themes/kutils_template/assets/images/karcher.png')
    center center / contain no-repeat;

  background-color: #1E4C82; /* fallback barva za obrázkem */
  background-attachment: fixed;

  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

/* --- Filtr / překryvný efekt --- */
#onas_kutils .onas_kutils-overlay {
  position: absolute;
  inset: 0;
  background: rgba(120, 160, 220, 0.35); /* světle modrý filtr */
  z-index: 1;
}

/* --- Obsah sekce – PRŮHLEDNÉ TMAVÉ OKNO --- */
#onas_kutils .onas_kutils-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeSlideUp 1.2s ease both;

  /* 📦 průhledné tmavé okno */
  background: rgba(0, 0, 0, 0.35);
  padding: 40px 30px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

#onas_kutils h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

#onas_kutils p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f3f6fb;
  margin-bottom: 18px;
}

#onas_kutils strong {
  color: #ffeb3b;
  font-weight: 600;
}

/* --- Dekorace nadpisu --- */
#onas_kutils h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ffeb3b;
  margin: 14px auto 0;
  border-radius: 3px;
}

/* --- ANIMACE --- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ==========================================================
   === Pojištění ===
   ========================================================== */

   #pojisteni_kutils {
  padding: 50px 20px;
  background: #f7f9fc;
  margin-top: 40px;
  border-top: 1px solid #e1e7ef;
}

.insurance-box {
  max-width: 850px;
  margin: auto;
  line-height: 1.7;
}

.insurance-box h2 {
  text-align: center;
  margin-bottom: 20px;
}

.insurance-box h3 {
  margin-top: 25px;
  color: #2a4d8f;
}




/* ==========================================================
   === RESPONSIVITA – SEKCE MONTÁŽE NÁBYTKU ===
   ========================================================== */

@media (max-width: 768px) {
  #montaz {
    padding: 60px 15px;
  }

  .assembly-intro {
    margin-bottom: 35px;
    padding: 0 10px;
  }

  .assembly-intro h2 {
    font-size: 1.4rem;
  }

  .assembly-intro p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .assembly-gallery {
    gap: 18px;
  }

  .montaz-image {
    max-width: 200px;
  }

  .assembly-item p {
    font-size: 0.9rem;
  }

  #montaz table {
    font-size: 0.9rem;
  }

  #montaz th,
  #montaz td {
    padding: 10px 14px;
  }
}

/* --- Menší mobily (do 480px) --- */
@media (max-width: 480px) {
  .assembly-gallery {
    flex-direction: column;
    align-items: center;
  }

  .assembly-item {
    max-width: 90%;
  }

  .montaz-image {
    max-width: 220px;
  }

  #montaz table,
  #montaz thead,
  #montaz tbody,
  #montaz th,
  #montaz td,
  #montaz tr {
    display: block;
    width: 100%;
  }

  #montaz thead {
    display: none;
  }

  #montaz tr {
    margin-bottom: 15px;
    background: #fff;
    border: 1px solid #e3e7ee;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 10px 15px;
  }

  #montaz td {
    border: none;
    position: relative;
    padding: 8px 0 8px 45%;
    text-align: left;
  }

  #montaz td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 40%;
    font-weight: 600;
    color: #1E4C82;
  }

  #montaz td[data-label="Cena"] {
    color: #1E4C82;
    font-weight: bold;
  }
}





/* ==========================================================
   === Sekce voucheru – designový blok ===
   ========================================================== */

#kutils_voucher {
    padding-top: 100px;   /* zvětší vzdálenost nahoře */
    padding-bottom: 60px;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Obal obrázku */
.voucher-wrapper {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

/* Obrázek voucheru */
.voucher-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

/* Hover efekt */
.voucher-image:hover {
    transform: scale(1.02);
}

/* Lepší odsazení na mobilech */
@media (max-width: 600px) {
    #kutils_voucher {
        padding: 30px 10px;
    }

    .voucher-image {
        border-radius: 8px;
    }
}

/* Výchozí skrytý stav */
.voucher-caption {
    margin-top: 18px;
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Aktivní stav – zobrazí se po doscrollování */
.voucher-caption.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobilní úprava */
@media (max-width: 600px) {
    .voucher-caption {
        font-size: 1rem;
        padding: 0 10px;
    }
}


/* ==========================================================
   === Whatsapp ===
   ========================================================== */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 100px; /* poloha výš nad back-to-top */
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  border-radius: 50%; /* pokud je ikonka kulatá, pěkně to sedne */
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}



/* ==========================================================
   === KONTAKT & OBJEDNÁVKA SLUŽEB (CTA + FORMULÁŘ) ===
   ========================================================== */

#kontaktni-cta {
  background: #f4f8ff;
  border-top: 1px solid #dfe6f2;
  border-radius: 14px;
  padding: 70px 20px;
}

.cta-wrapper {
  max-width: 950px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
}

/* --- CTA Header --- */
.cta-header {
  text-align: center;
  margin-bottom: 40px;
}

.cta-header h2 {
  color: #1E4C82;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-header p {
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.cta-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-buttons .button {
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 8px;
  transition: 0.25s ease;
}

.cta-call { background: rgb(59, 93, 133); color: #fff !important; }
.cta-mail { background: #2a6fcf; color: #fff !important; }

.cta-call:hover,
.cta-mail:hover {
  opacity: .9;
  transform: scale(1.04);
}

/* ==========================================================
   === FORMULÁŘ – OBSAH & STYLING ===
   ========================================================== */

.kutils-form {
  margin-top: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;     /* DOPLNĚNO – platí všude, i na mobilu */
}


.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-weight: 600;
  color: #1E4C82;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-group span {
  color: #d9534f;
}

/* Políčka formuláře */
.kutils-form input,
.kutils-form select,
.kutils-form textarea {
  padding: 12px 14px;
  border: 1px solid #d9e1ee;
  border-radius: 8px;
  font-size: 1rem;
  background: #fdfdff;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.kutils-form select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}


.kutils-form input:focus,
.kutils-form textarea:focus,
.kutils-form select:focus {
  border-color: #1E4C82;
  box-shadow: 0 0 5px rgba(30, 76, 130, 0.25);
  outline: none;
}

/* GDPR */
.gdpr {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0 15px;
  font-size: 0.95rem;
  color: #444;
}

.gdpr a {
  color: #1E4C82;
  text-decoration: underline;
}

/* Submit tlačítko */
.submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 14px 30px;
  font-size: 1.1rem;
  background: #1E4C82;
  color: #fff;
  border-radius: 10px;
  transition: 0.25s ease;
  cursor: pointer;
}

.submit-btn:hover {
  background: #163b67;
  transform: translateY(-2px);
}

/* ==========================================================
   === EMOJI CAPTCHA – RESPONSIVE & BETTER UI ===
   ========================================================== */

.emoji-captcha {
  margin: 20px 0 10px;
  padding: 18px;
  background: #f4f8ff;
  border: 1px solid #d9e1ee;
  border-radius: 12px;
}

.emoji-captcha p {
  font-weight: 600;
  margin-bottom: 14px;
  color: #1E4C82;
  text-align: center;
  font-size: 1rem;
}

/* Emoji wrapper */
.emoji-options {
  display: flex;
  flex-wrap: wrap;            /* ⭐ umožní zalomení na mobilu */
  justify-content: center;     /* ⭐ vycentrování */
  gap: 14px;
  padding-top: 5px;
}

/* Jednotlivé emoji */
.emoji-option {
  padding: 14px;
  min-width: 60px;             /* ⭐ lepší klikací oblast */
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 36px;
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}

/* Hover efekt (PC) */
.emoji-option:hover {
  border-color: #1E4C82;
  transform: scale(1.08);
}

/* Vybraná možnost */
.emoji-selected {
  border-color: #2a6fcf !important;
  background: #eaf1ff !important;
  transform: scale(1.12);
}


/* ==========================================================
   === KUTILS – MĚSÍČNÍ KALENDÁŘ VOLNÝCH TERMÍNŮ ===
   ========================================================== */

/* ====== BOX ====== */
.kutils-calendar {
  background: #ffffff;
  border: 1px solid #d7e0ef;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 35px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* ====== HEADER (měsíce) ====== */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.calendar-header h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1E4C82;
  text-transform: capitalize;
}

.calendar-header button {
  background: #f4f8ff;
  border: 1px solid #cdd8ea;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  padding: 6px 12px;
  color: #1E4C82;
  transition: 0.2s ease;
}

.calendar-header button:hover {
  background: #e9f1ff;
  transform: scale(1.05);
}

/* ====== GRID – 7 sloupců ====== */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 10px;
}

/* Nadpisy dnů v týdnu */
.calendar-weekday {
  text-align: center;
  font-weight: 600;
  color: #1E4C82;
  padding-bottom: 6px;
  font-size: 0.9rem;
}

/* ====== DAY CELLS ====== */
.calendar-day {
  padding: 12px 0;
  text-align: center;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.15s ease;
  border: 1px solid transparent;
}

/* dny mimo aktuální měsíc */
.calendar-day.inactive {
  opacity: 0.25;
  cursor: not-allowed;
}

/* dnes */
/* dnes – přidáme elegantní vrchní rámeček */
.calendar-day.today {
  position: relative; /* nutné, aby ::before fungovalo správně */
  color: #007bff;     /* zvýraznění textu, volitelně */
}

.calendar-day.today::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid #1E4C82;
  border-radius: 12px;
  pointer-events: none;
  z-index: 5; /* navrchu nad barvami */
}


/* celý den volný */
.calendar-day.free {
  background: #d8f7d8;
  border: 1px solid #8cd98c;
  color: #155724;
}

/* částečně volno */
.calendar-day.partial {
  background: #fff6d1;
  border: 1px solid #ffd67a;
  color: #7a5a00;
}

/* plně obsazeno */
.calendar-day.busy {
  background: #ffd0d0;
  border: 1px solid #e88b8b;
  color: #7c1818;
}

/* hover efekt */
.calendar-day:hover:not(.inactive) {
  transform: scale(1.05);
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
}

/* Po kliknutí na den se zobrazí sloty */
.calendar-slots {
  margin-top: 22px;
  padding: 15px;
  border-radius: 12px;
  background: #f4f8ff;
  border: 1px solid #d9e1ee;
}

.calendar-slots h4 {
  margin-top: 0;
  color: #1E4C82;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.calendar-slots ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.calendar-slots li {
  padding: 10px 12px;
  background: white;
  border-radius: 8px;
  border: 1px solid #d7e0ef;
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
}


/* Loader – spinner */
#kutils-loader {
  width: 40px;
  height: 40px;
  border: 4px solid #ddd;
  border-top-color: #1E4C82;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Loader wrapper pro centrování */
.loader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}






/* ==========================================================
   RESPONSIVITA KALENDÁŘE
   - úpravy rozložení a velikostí prvků pro mobilní zařízení
   ========================================================== */

/* 📱 Tablety a malé notebooky (šířka do 768px) */
@media (max-width: 768px) {
  .calendar-header h3 {
    font-size: 1.2rem;      /* menší nadpis měsíce */
  }
  .calendar-day {
    padding: 10px 0;        /* menší výška políček */
    font-size: 0.9rem;      /* menší čísla dnů */
  }
}

/* 📱 Mobily (šířka do 480px) */
@media (max-width: 480px) {
  .calendar-grid {
    gap: 4px;               /* zmenšené mezery mezi dny */
  }
  .calendar-day {
    padding: 8px 0;         /* kompaktnější buňky */
    border-radius: 8px;     /* jemnější zaoblení */
    font-size: 0.8rem;      /* menší čísla dnů */
  }
}





/* ==========================================================
   RESPONSIVITA FORMULÁŘE A CTA SEKCE
   - úpravy rozložení prvků pro tablety a mobilní zařízení
   ========================================================== */

/* 📱 Tablety (max-width: 768px) */
@media (max-width: 768px) {

  .form-grid {
    grid-template-columns: 1fr;      /* formulář se skládá pod sebe */
  }

  .form-group.full {
    grid-column: 1;                  /* plná šířka i na malých displejích */
  }

  .cta-wrapper {
    padding: 25px 20px;              /* zmenšené vnitřní odsazení */
  }

  .cta-buttons {
    flex-direction: column;          /* tlačítka pod sebou */
    gap: 12px;                       /* menší mezera mezi tlačítky */
  }
}


/* 📱 Telefony (max-width: 600px) */
@media (max-width: 600px) {

  /* Zarovnání datumu a času na mobilních zařízeních */
  #kontaktni-cta .form-group input[type="date"],
  #kontaktni-cta .form-group input[type="time"],
  #kontaktni-cta .form-group label[for="date"] {
    text-align: center;
  }

  /* Vycentrování skupiny jako celku */
  #kontaktni-cta .form-group {
    align-items: center;
  }

  /* Emoji výběr – mobilní zmenšení */
  .emoji-option {
    font-size: 30px;
    padding: 12px;
    min-width: 54px;
    min-height: 54px;
  }

  .emoji-options {
    gap: 12px;                       /* menší mezera mezi emoji */
  }

  /* GDPR text – lepší čitelnost na malých telefonech */
  .gdpr {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* ===== GDPR text – menší font na mobilech ===== */
@media (max-width: 480px) {
  .gdpr {
    font-size: 0.78rem !important;
    line-height: 1.35;
  }

  .gdpr input[type="checkbox"] {
    transform: scale(1.2);   /* větší checkbox na mobilech */
    margin-top: 2px;
  }
}



/* ==========================================================
   === RESPONSIVITA – HERO VIDEO SEKCE (mobil & tablet) ===
   ========================================================== */
@media (max-width: 768px) {
  header.hero {
    height: 65vh;
    padding: 40px 15px;
  }

  .hero-content {
    max-width: 90%;
    padding: 10px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-content .button {
    width: 80%;
    padding: 10px 0;
    font-size: 1rem;
  }
}

/* --- Menší mobily (do 480px) --- */
@media (max-width: 480px) {
  header.hero {
    height: 55vh;
  }

  .hero-content h1 {
    font-size: 1.4rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-content .button {
    width: 100%;
    font-size: 0.95rem;
  }
}

/* ==========================================================
   === RESPONSIVITA – SEKCE ČIŠTĚNÍ SEDAČEK ===
   ========================================================== */
@media (max-width: 768px) {
  .cleaning-intro {
    margin-bottom: 35px;
    padding: 0 10px;
  }

  .cleaning-intro h2 {
    font-size: 1.4rem;
  }

  .cleaning-intro p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* ==========================================================
   === RESPONSIVITA – POZNÁMKY / DODATEČNÉ INFORMACE ===
   ========================================================== */
@media (max-width: 600px) {
  .note {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}


/* ==========================================================
   === RESPONSIVITA – CENÍK ===
   ========================================================== */
/* 📱 Mobilní telefony (max 768px) */
@media (max-width: 768px) {
  .service-grid { gap: 18px; }
  .service-card {
    padding: 18px;
    border-radius: 10px;
  }
  .service-card img { width: 55px; margin-bottom: 10px; }
  .service-info h4 { font-size: 1rem; }
  .service-info p { font-size: 0.9rem; }
  .service-price {
    font-size: 1rem;
    margin-top: 10px;
    align-self: flex-start;
  }
}

/* 📱 Menší mobily (max 480px) */
@media (max-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card { padding: 16px; }
  .service-card img { width: 50px; }
  .service-info h4 { font-size: 0.95rem; }
  .service-info p { font-size: 0.85rem; }
  .service-price {
    font-size: 0.95rem;
    margin-top: 8px;
  }
}


/* ==========================================================
   === RESPONSIVITA – SEKCE O NÁS (KUTILS.CZ) ===
   ========================================================== */

@media (max-width: 768px) {
  #onas_kutils {
    padding: 80px 15px;
    background-attachment: scroll;
    background-size: contain; /* obrazek se pekne vejde */
  }

  #onas_kutils .onas_kutils-content {
    padding: 25px 20px;
  }

  #onas_kutils h2 {
    font-size: 1.6rem;
  }

  #onas_kutils p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  #onas_kutils h2::after {
    width: 60px;
    height: 2px;
  }
}


/* ==========================================================
   === RESPONSIVITA TABULEK ===
   ========================================================== */
@media (max-width: 600px) {
  .table-wrapper {
    border: none;
    border-radius: 0;
    overflow-x: visible;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  table, thead, tbody, th, td, tr {
    display: block;
    width: 100%;
  }

  table thead { display: none; }

  table tr {
    background: #fff;
    margin-bottom: 15px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 12px 15px;
    transition: 0.25s ease;
  }

  table td {
    border: none;
    position: relative;
    padding: 8px 0 8px 45%;
    text-align: left;
    min-height: 28px;
    display: flex;
    align-items: center;
  }

  table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 40%;
    font-weight: 600;
    color: #1E4C82;
    text-align: left;
  }

  table td:last-child {
    color: #1E4C82;
    font-weight: bold;
    font-size: 1rem;
  }

  table tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }
}


/* ================================
   FOOTER – MODERNÍ VERZE
================================ */
.site-footer {
    background: #f4f4f4;
    padding: 60px 20px;
    margin-top: 60px;
    border-top: none; /* odstranění původní tvrdé čáry */

    /* krásný přechod – fade in/out */
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        to right,
        rgba(30,76,130,0) 0%,
        rgba(30,76,130,0.6) 35%,
        rgba(30,76,130,1) 50%,
        rgba(30,76,130,0.6) 65%,
        rgba(30,76,130,0) 100%
    );
}

.footer-inner {
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* LEVÁ STRANA */
.footer-left {
    flex: 1;
}

.footer-left h2 {
    color: #1E4C82;
    margin-bottom: 15px;
}

.footer-left p {
    margin-bottom: 12px;
    color: #444;
}

.footer-left a {
    color: #1E4C82;
    font-weight: 600;
}

.footer-social img {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin-right: 6px;
}


.footer-copy {
    margin-top: 40px;
    color: #555;
    font-size: 0.9rem;
}

.webklik {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #666;
}

.webklik a {
    color: #1E4C82;
    font-weight: 600;
}

/* PRAVÁ STRANA S OBRÁZKEM */
.footer-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-image-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 14px;
    overflow: hidden;
}

.footer-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}


/* SPODNÍ PÁSEK – KERCHER barva */
.footer-image-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 20px;
    background: #d4b01f;
    text-align: left;
}

.footer-image-bar span {
    color: #000;
    font-size: 1.4rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        order: -1;
    }

    .footer-image-bar {
        text-align: center;
    }

    /* ========== KRATŠÍ TEČKOVANÉ SEPARÁTORY ========== */
    .footer-left p {
        position: relative;
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .footer-left p::after {
        content: "";
        display: block;
        width: 50%;
        margin: 15px auto 0;
        border-bottom: 1px dotted #bbb;
    }

    /* odstranit separator u posledních textů */
    .footer-left p.footer-copy::after,
    .footer-left p.webklik::after {
        display: none;
    }

    /* zajistit správné zobrazení "Web vytvořil tým..." */
    .footer-left p.webklik {
        margin-top: 20px;
        padding-bottom: 0;
        margin-bottom: 0;
        display: block;
    }
}




/* Šipka Zpět nahoru */
#back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    background: #1E4C82;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 9999;
}

#back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

#back-to-top:hover {
    background: #163a63;
    transform: translateY(-3px);
}





/* ==========================================================
   === COOKIE LIŠTA ===
   ========================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1E4C82;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  z-index: 999;
}

.cookie-banner a {
  color: #fff;
  text-decoration: underline;
}

.cookie-button {
  background: #fff;
  color: #1E4C82;
  border: none;
  border-radius: 4px;
  margin-top: 10px;
  padding: 8px 16px;
  cursor: pointer;
}


/* ==========================================================
   === RESPONSIVE DESIGN CELÉHO WEBU ===
   ========================================================== */
/* 📱 Mobily (do 600px) */
@media (max-width: 600px) {
  header {
    padding: 60px 15px;
  }
  header h1 { font-size: 1.8rem; }
  a.button {
    width: 100%;
    display: block;
    margin: 8px 0;
  }
  section { padding: 50px 15px; }
  footer {
    font-size: 0.85rem;
    padding: 40px 15px;
  }
}

/* 💻 Tablety (601–992px) */
@media (min-width: 601px) and (max-width: 992px) {
  header { padding: 80px 40px; }
  section { padding: 60px 30px; }
  table th, table td {
    font-size: 0.9rem;
    padding: 10px;
  }
  a.button { padding: 10px 20px; }
}

/* 🖥️ Velké displeje (nad 1400px) */
@media (min-width: 1400px) {
  body { font-size: 17px; }
  header {
    background: linear-gradient(135deg, #f2f7fc, #ffffff);
  }
  section { max-width: 1300px; }
}


/* ==========================================================
   === KUTILS LINKS / LINKTREE ===
   ========================================================== */
.linktree {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f4f8ff, #ffffff);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}

.linktree .logo {
  width: 90px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 12px;
}

.linktree h2 {
  color: #1E4C82;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.linktree p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 30px;
}

.links-list {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.links-list .btn {
  display: block;
  padding: 14px 20px;
  background: #1E4C82;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.links-list .btn:hover {
  background: #163b67;
  transform: scale(1.03);
}

.link-item {
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 10px;
  padding: 18px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.link-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.link-item h3 a {
  color: #1E4C82;
  text-decoration: none;
  font-size: 1.1rem;
}

.link-item p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 5px;
}

/* 📱 Mobile responsive */
@media (max-width: 600px) {
  .linktree {
    padding: 60px 15px;
  }
  .linktree h2 { font-size: 1.5rem; }
  .links-list { width: 100%; }
  .links-list .btn { font-size: 1rem; }
}




/* ============================================
   ZÁKLAD – PODSTRÁNKA KOBERCŮ
=============================================== */

.koberce-page {
  background: #f5f7fb;
}

/* sjednocení kontejneru – případně máš už ve theme */
.koberce-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================
   HERO SEKCE
=============================================== */

.koberce-hero {
  padding: 60px 0 50px;
  background: radial-gradient(circle at top left, #edf2ff 0, #f5f7fb 40%, #f5f7fb 100%);
}

.koberce-hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.koberce-hero-text {
  flex: 1 1 320px;
}

.koberce-hero-text h1 {
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.koberce-hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.koberce-hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 0.98rem;
}

.koberce-hero-benefits li {
  margin-bottom: 4px;
}

.koberce-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

/* pokud už máš .button v tématu, tohle jen lehce doladí */
.koberce-hero-cta .button {
  padding: 10px 18px;
  font-size: 0.98rem;
}

.button.button-ghost {
  background: transparent;
  border: 1px solid #1f2933;
  color: #1f2933;
}

.button.button-ghost:hover {
  background: #1f2933;
  color: #fff;
}

.koberce-badge {
  font-size: 0.85rem;
  color: #4b5563;
  background: #ffffffd9;
  border-radius: 999px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  margin-top: 4px;
}

.koberce-hero-image {
  flex: 1 1 280px;
  display: flex;
  justify-content: center;
}

.koberce-hero-image img {
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.22);
  object-fit: cover;
}

/* ============================================
   PROČ SI NÁS VYBRAT
=============================================== */

.koberce-why {
  padding: 50px 0 40px;
  background: #ffffff;
}

.koberce-why h2 {
  text-align: center;
  margin-bottom: 24px;
}

.koberce-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.koberce-why-item {
  background: #f7f9ff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.koberce-why-item h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.koberce-why-item p {
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ============================================
   JAK PROBÍHÁ ČIŠTĚNÍ – KROKY
=============================================== */

.koberce-process {
  padding: 50px 0 40px;
  background: #f5f7fb;
}

.koberce-process h2 {
  text-align: center;
  margin-bottom: 26px;
}

.koberce-process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.koberce-step {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 15px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  position: relative;
}

.koberce-step-number {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.koberce-step h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.koberce-step p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   CENÍK KOBERCŮ
=============================================== */

.koberce-pricing {
  padding: 50px 0 40px;
  background: #ffffff;
}

.koberce-pricing h2 {
  text-align: center;
  margin-bottom: 10px;
}

.koberce-pricing-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 24px;
  font-size: 0.98rem;
}

.koberce-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.koberce-pricing-card {
  background: #f7f9ff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.koberce-pricing-card h3 {
  margin-bottom: 2px;
}

.koberce-method-note {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 8px;
}

.koberce-pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.96rem;
}

.koberce-pricing-card li {
  margin-bottom: 4px;
}

.koberce-pricing-note {
  margin-top: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.koberce-pricing-note p {
  margin: 0 0 4px;
}

.koberce-fair-badge {
  margin-top: 10px;
  font-size: 0.9rem;
  padding: 8px 10px;
  background: #eef2ff;
  border-radius: 8px;
  display: inline-block;
}

/* ============================================
   GALERIE PŘED A PO
=============================================== */

.koberce-gallery {
  padding: 50px 0 40px;
  background: #f5f7fb;
}

.koberce-gallery h2 {
  text-align: center;
  margin-bottom: 10px;
}

.koberce-gallery-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 22px;
  font-size: 0.98rem;
}

/* pluginová galerie [predapo_gallery] už má svůj CSS,
   tady jen jemný odskok */
.koberce-gallery .predapo-section {
  padding: 0;
  background: transparent;
}

/* ============================================
   FAQ – ČASTÉ DOTAZY
=============================================== */

.koberce-faq {
  padding: 50px 0 40px;
  background: #ffffff;
}

.koberce-faq h2 {
  text-align: center;
  margin-bottom: 20px;
}

.koberce-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.koberce-faq-item {
  background: #f7f9ff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.koberce-faq-item h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.koberce-faq-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   CTA – VÝZVA K AKCI
=============================================== */

.koberce-cta {
  padding: 45px 0 60px;
  background: linear-gradient(180deg, #fafafa 0%, #f1f3f5 100%);
  color: #1b1f23;
}


.koberce-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.koberce-cta-text h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.koberce-cta-text p {
  font-size: 1rem;
  margin-bottom: 16px;
}

.koberce-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.koberce-cta-buttons .button {
  padding: 10px 18px;
}

.koberce-cta-buttons .cta-back {
  background: #e5e7eb;
  color: #111;
}

.koberce-cta-buttons .cta-back:hover {
  background: #d1d5db;
}


/* ============================================
   RESPONSIVITA
=============================================== */

@media (max-width: 900px) {
  .koberce-hero-inner {
    flex-direction: column;
  }

  .koberce-why-grid {
    grid-template-columns: 1fr;
  }

  .koberce-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .koberce-pricing-grid {
    grid-template-columns: 1fr;
  }

  .koberce-faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .koberce-hero {
    padding: 40px 0 30px;
  }

  .koberce-hero-text h1 {
    font-size: 1.8rem;
  }

  .koberce-process-steps {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   PODSTRÁNKA – ČIŠTĚNÍ A ÚDRŽBA PODLAH
=============================================== */

.podlahy-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HERO */

.podlahy-hero {
  padding: 60px 0 50px;
  background: radial-gradient(circle at top left, #edf2ff 0, #f5f7fb 40%, #f5f7fb 100%);
}

.podlahy-hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.podlahy-hero-text {
  flex: 1 1 320px;
}

.podlahy-hero-text h1 {
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.podlahy-hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.podlahy-hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 0.98rem;
}

.podlahy-hero-benefits li {
  margin-bottom: 4px;
}

.podlahy-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.podlahy-hero-cta .button {
  padding: 10px 18px;
  font-size: 0.98rem;
}

.button.button-ghost {
  background: transparent;
  border: 1px solid #1f2933;
  color: #1f2933;
}

.button.button-ghost:hover {
  background: #1f2933;
  color: #fff;
}

.podlahy-badge {
  font-size: 0.85rem;
  color: #4b5563;
  background: #ffffffd9;
  border-radius: 999px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.podlahy-hero-image {
  flex: 1 1 280px;
  display: flex;
  justify-content: center;
}

.podlahy-hero-image img {
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.22);
  object-fit: cover;
}

/* PROČ NÁS ZVOLIT */

.podlahy-why {
  padding: 50px 0 40px;
  background: #ffffff;
}

.podlahy-why h2 {
  text-align: center;
  margin-bottom: 24px;
}

.podlahy-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.podlahy-why-item {
  background: #f7f9ff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.podlahy-why-item h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.podlahy-why-item p {
  font-size: 0.96rem;
  line-height: 1.6;
}

/* CENÍK */

.podlahy-cenik {
  padding: 50px 0 40px;
  background: #f5f7fb;
}

.podlahy-cenik h2 {
  text-align: center;
  margin-bottom: 10px;
}

.podlahy-cenik-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: 0.98rem;
}

.podlahy-table {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.podlahy-table .row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 8px;
  padding: 10px 14px;
  font-size: 0.96rem;
  border-bottom: 1px solid #e5e7eb;
}

.podlahy-table .row:nth-child(odd) {
  background: #f9fafb;
}

.podlahy-table .row:last-child {
  border-bottom: none;
}

.podlahy-cenik-note {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.podlahy-fair-badge {
  margin-top: 8px;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e0e7ff;
  font-size: 0.88rem;
}

/* KALKULACE */

.podlahy-kalkulace {
  padding: 50px 0 40px;
  background: #ffffff;
}

.podlahy-kalkulace h2 {
  margin-bottom: 10px;
}

.podlahy-kalkulace p {
  font-size: 0.98rem;
  margin-bottom: 10px;
}

.podlahy-kalkulace-list {
  padding-left: 18px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.podlahy-kalkulace-example {
  background: #f5f7ff;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.podlahy-kalkulace-example h3 {
  margin-bottom: 6px;
}

.podlahy-kalkulace-example ul {
  padding-left: 18px;
  margin: 6px 0 8px;
}

/* FAQ */

.podlahy-faq {
  padding: 50px 0 40px;
  background: #ffffff;
}

.podlahy-faq h2 {
  text-align: center;
  margin-bottom: 20px;
}

.podlahy-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.podlahy-faq-item {
  background: #f7f9ff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.podlahy-faq-item h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.podlahy-faq-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA */

.podlahy-cta {
  padding: 45px 0 60px;
  background: radial-gradient(circle at top, #ffffff 0%, #f3f4f6 60%, #e5e7eb 100%);
  color: #111827;
}

.podlahy-cta-inner {
  text-align: center;
}

.podlahy-cta-text h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.podlahy-cta-text p {
  font-size: 1rem;
  margin-bottom: 16px;
}

.podlahy-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.podlahy-cta-buttons .button {
  padding: 10px 18px;
}

/* speciální tlačítko zpět */

.podlahy-cta-buttons .cta-back {
  background: #e5e7eb;
  color: #111827;
}

.podlahy-cta-buttons .cta-back:hover {
  background: #d1d5db;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .podlahy-hero-inner {
    flex-direction: column;
  }

  .podlahy-why-grid {
    grid-template-columns: 1fr;
  }

  .podlahy-faq-list {
    grid-template-columns: 1fr;
  }

  .podlahy-table .row {
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
  }

  .podlahy-table .row > div:nth-child(3) {
    grid-column: 1 / -1;
    color: #6b7280;
  }
}

.podlahy-info-note {
  background: #f7f7f7;
  padding: 18px 0;
  border-left: 4px solid #0077cc;
  margin-bottom: 40px;
}

.podlahy-info-note p {
  margin: 0;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
}

.podlahy-info-note strong {
  color: #000;
}


@media (max-width: 640px) {
  .podlahy-hero {
    padding: 40px 0 30px;
  }

  .podlahy-hero-text h1 {
    font-size: 1.9rem;
  }
}

/* ============================================
   PRAVIDELNÉ ÚKLIDY – PODSTRÁNKA
=============================================== */

.pravidelne-uklidy-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HERO */
.pravidelne-hero {
  position: relative;
  margin-bottom: 36px;
}

.pravidelne-hero-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
}

.pravidelne-hero-inner {
  max-width: 760px;
  margin: -60px auto 0;
  background: #ffffff;
  padding: 24px 20px 20px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.pravidelne-hero-inner h1 {
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.pravidelne-hero-inner p {
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.pravidelne-hero-badge {
  display: inline-flex;
  gap: 6px;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1e293b;
}

/* INFO BOX */
.pravidelne-info {
  margin-top: 20px;
  margin-bottom: 10px;
}

.pravidelne-info .info-box {
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: #f3f4f6;
  border-left: 4px solid #2563eb;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* PRO KOHO */
.pravidelne-prokoho {
  padding: 35px 0 30px;
}

.pravidelne-prokoho h2 {
  text-align: center;
  margin-bottom: 20px;
}

.pravidelne-koho-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.koho-item {
  background: #f9fafb;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.koho-item h3 {
  margin-bottom: 6px;
}

/* OBSAH ÚKLIDU */
.pravidelne-obsah {
  padding: 35px 0 32px;
  background: #ffffff;
}

.pravidelne-obsah h2 {
  margin-bottom: 6px;
}

.pravidelne-obsah p {
  font-size: 0.98rem;
  margin-bottom: 14px;
}

.obsah-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.obsah-item {
  background: #f9fafb;
  border-radius: 10px;
  padding: 14px 14px;
  font-size: 0.94rem;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.05);
}

.obsah-item h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.obsah-item.highlight {
  background: #eef2ff;
  border-left: 4px solid #2563eb;
}

/* BALÍČKY – DOMÁCNOSTI */
.balicky-domacnosti {
  padding: 40px 0 35px;
  background: #f5f7fb;
}

.balicky-domacnosti h2 {
  text-align: center;
  margin-bottom: 6px;
}

.balicky-domacnosti .intro {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.balicky-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.balicek {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  position: relative;
  font-size: 0.95rem;
}

.balicek h3 {
  margin-bottom: 4px;
}

.balicek-desc {
  margin-bottom: 8px;
  color: #4b5563;
}

.balicek-body {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}

.balicek-body li {
  margin-bottom: 3px;
}

.balicek-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.balicek-table td {
  padding: 4px 0;
  border-top: 1px solid #e5e7eb;
}

.balicek-popular {
  border: 2px solid #2563eb;
}

.balicek-popular .balicek-label {
  position: absolute;
  top: -10px;
  right: 10px;
  background: #2563eb;
  color: #fff;
  padding: 2px 8px;
  font-size: 0.78rem;
  border-radius: 999px;
}

.balicek-premium {
  border: 2px solid #f59e0b;
}

/* FIRMY */
.balicky-firmy {
  padding: 38px 0 35px;
  background: #ffffff;
}

.balicky-firmy h2 {
  text-align: center;
  margin-bottom: 6px;
}

.balicky-firmy .intro {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.firmy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.firmy-item {
  background: #f9fafb;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 5px 16px rgba(15, 23, 42, 0.08);
  font-size: 0.95rem;
}

.firmy-item h3 {
  margin-bottom: 4px;
}

.firmy-note {
  margin-bottom: 8px;
  color: #4b5563;
}

.firmy-item table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.firmy-item table td {
  padding: 4px 0;
  border-top: 1px solid #e5e7eb;
}

.firmy-special {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* SVJ */
.balicky-svj {
  padding: 38px 0 35px;
  background: #f5f7fb;
}

.balicky-svj h2 {
  text-align: center;
  margin-bottom: 6px;
}

.balicky-svj .intro {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.svj-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.svj-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 14px;
  box-shadow: 0 5px 16px rgba(15, 23, 42, 0.08);
  font-size: 0.95rem;
}

.svj-item h3 {
  margin-bottom: 4px;
}

.svj-price {
  font-weight: 600;
  margin-top: 4px;
}

.svj-special {
  background: #eef2ff;
}

.svj-note {
  font-size: 0.93rem;
  margin-top: 10px;
}

/* CTA */
.pravidelne-cta {
  padding: 40px 0 50px;
  background: #ffffff;
}

.pravidelne-cta-inner {
  text-align: center;
}

.pravidelne-cta-inner h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.pravidelne-cta-inner p {
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.pravidelne-cta .cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pravidelne-cta .cta-back {
  background: #e5e7eb;
  color: #111827;
}

.pravidelne-cta .cta-back:hover {
  background: #d1d5db;
}

/* Základní tlačítka pro kutils */
.kutils-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease-in-out;
  gap: 0.4rem;
  white-space: nowrap;
}

.kutils-btn-primary {
  background: var(--kutils-brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.kutils-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.kutils-btn-outline {
  background: #fff;
  color: var(--kutils-brand);
  border-color: rgba(0, 0, 0, 0.06);
}
.kutils-btn-outline:hover {
  border-color: var(--kutils-brand);
  background: rgba(103, 58, 183, 0.06); /* klidně přebarvi podle brandu */
}

/* Submit tlačítko ve formuláři */
.kutils-submit-btn {
  margin-top: 0.75rem;
}
.kutils-submit-btn.kutils-btn-primary {
  width: 100%;
  justify-content: center;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .pravidelne-hero-inner {
    margin-top: -40px;
  }

  .pravidelne-koho-grid,
  .balicky-grid,
  .firmy-grid {
    grid-template-columns: 1fr;
  }

  .obsah-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svj-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pravidelne-hero-inner h1 {
    font-size: 1.7rem;
  }

  .obsah-grid,
  .svj-grid {
    grid-template-columns: 1fr;
  }
}



/* =============================
   Globální / základní nastavení
   ============================= */

/* Brand barva – přepiš na svou hlavní */
:root {
  --kutils-brand: #204d86; /* TVOJE BARVA SEM */
}

/* Jednorázové úklidy – konfigurátor kutils.cz */
.kutils-jednoraz {
  background: #f5f7fb;
  font-family: inherit;
}

/* =============================
   TLAČÍTKA
   ============================= */

.kutils-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.7rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease-in-out;
  gap: 0.4rem;
  white-space: nowrap;
}

.kutils-btn-primary {
  background: var(--kutils-brand);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.kutils-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.kutils-btn-outline {
  background: #fff;
  color: var(--kutils-brand);
  border-color: rgba(0, 0, 0, 0.08);
}
.kutils-btn-outline:hover {
  border-color: var(--kutils-brand);
  background: rgba(32, 77, 134, 0.06);
}

/* Submit tlačítko ve formuláři */
.kutils-submit-btn {
  margin-top: .75rem;
}
.kutils-submit-btn.kutils-btn-primary {
  width: 100%;
  justify-content: center;
}

/* Zpět na hlavní */
.kutils-form-back {
  margin-top: 0.6rem;
  text-align: center;
}
.kutils-form-back .kutils-btn {
  font-size: 0.9rem;
  padding-inline: 1.3rem;
}

/* =============================
   HERO – split layout
   ============================= */

.kutils-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #f3f6fb 0%, #ffffff 55%, #eef3ff 100%);
}

/* podporujeme jak .kutils-hero-layout tak starší .kutils-hero-inner */
.kutils-hero-layout,
.kutils-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 960px) {
  .kutils-hero-layout,
  .kutils-hero-inner {
    grid-template-columns: 1fr;
  }
}

.kutils-hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  color: #49618a;
}

.kutils-hero-text h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
  color: #1d3f6c;
}
@media (max-width: 640px) {
  .kutils-hero-text h1 {
    font-size: 2rem;
  }
}

.kutils-hero-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #3f4760;
  max-width: 34rem;
}

.kutils-hero-benefits {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.3rem;
  font-size: 0.9rem;
  color: #2f3550;
}
.kutils-hero-benefits li::before {
  content: "✔";
  margin-right: 0.4rem;
  color: var(--kutils-brand);
}

.kutils-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Karta vpravo v hero */
.kutils-hero-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.8rem 1.9rem;
  box-shadow: 0 18px 40px rgba(9, 20, 50, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.kutils-hero-card h2 {
  font-size: 1.05rem;
  margin: 0 0 0.9rem;
  color: #1f3560;
}

.kutils-hero-price {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.kutils-hero-price span {
  display: block;
  font-size: 0.85rem;
  color: #6a7088;
}
.kutils-hero-price strong {
  display: block;
  font-size: 1.3rem;
  color: var(--kutils-brand);
}

.kutils-hero-card-list {
  margin: 0.4rem 0 0.9rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #444a64;
}
.kutils-hero-small {
  font-size: 0.78rem;
  color: #7d8297;
}

/* =============================
   KONFIGURÁTOR
   ============================= */

.kutils-config-section {
  padding: 2.5rem 0 3.2rem;
}

/* NOVÁ HLAVIČKA KONFIGURÁTORU */
.kutils-config-header {
  max-width: 840px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.kutils-config-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #49618a;
  margin-bottom: 0.7rem;
}

.kutils-config-header h2 {
  font-size: 2rem;
  margin-bottom: 0.45rem;
  color: #1d3f6c;
}

/* přepsaná verze intro textu */
.kutils-config-intro {
  max-width: 640px;
  margin: 0.3rem auto 1.4rem;
  text-align: center;
  font-size: 1rem;
  color: #4a4f66;
}

/* =============================
   Kroky pod nadpisem – NOVÝ DESIGN
   ============================= */

.kutils-config-meta {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.kutils-config-meta div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.55rem 1.1rem;
  box-shadow: 0 6px 20px rgba(15, 35, 95, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.kutils-config-meta strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--kutils-brand);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.kutils-config-meta span {
  font-size: 0.92rem;
  font-weight: 500;
  color: #37405c;
}

/* =============================
   Zbytek sekce – beze změn
   ============================= */

.kutils-config-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

@media (max-width: 960px) {
  .kutils-config-grid {
    grid-template-columns: 1fr;
  }
}

.kutils-config-left,
.kutils-config-summary .kutils-summary-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 35, 95, 0.08);
}


/* Toggles */
.kutils-toggle-group {
  margin-bottom: 1.25rem;
}
.kutils-label {
  display: block;
  font-weight: 600;
  margin-bottom: .4rem;
}
.kutils-toggle {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: #f1f2f8;
}
.kutils-toggle-btn {
  border: none;
  border-radius: 999px;
  padding: .4rem 1.3rem;
  cursor: pointer;
  background: transparent;
  font-size: .95rem;
}
.kutils-toggle-btn.is-active {
  background: var(--kutils-brand);
  color: #fff;
}

/* Counters */
.kutils-counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.kutils-counter-controls {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.kutils-counter-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #e5e6f3;
}
.kutils-counter-controls input {
  width: 60px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #dadceb;
  padding: .2rem .4rem;
}

/* Addons */
.kutils-addons {
  margin-bottom: 1.5rem;
}
.kutils-checkbox {
  display: block;
  font-size: .92rem;
  margin-bottom: .3rem;
}
.kutils-checkbox input {
  margin-right: .5rem;
}

/* Form */
.kutils-form {
  margin-top: 1.5rem;
  border-top: 1px solid #edf0f7;
  padding-top: 1.5rem;
}
.kutils-form h3 {
  margin-bottom: .3rem;
}
.kutils-form-note {
  font-size: .9rem;
  margin-bottom: 1rem;
  color: #666b86;
}
.kutils-form-row {
  margin-bottom: .8rem;
}
.kutils-form-row label {
  display: block;
  font-size: .9rem;
}
.kutils-form-row input,
.kutils-form-row textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #dadceb;
  padding: .45rem .6rem;
  margin-top: .25rem;
  font-size: .95rem;
}

.kutils-form-message {
  margin-top: .7rem;
  font-size: .9rem;
}
.kutils-form-message.is-success {
  color: #1b8a3d;
}
.kutils-form-message.is-error {
  color: #c62828;
}

/* Anti-spam */
.kutils-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  overflow: hidden;
}
.kutils-anti-spam input {
  max-width: 140px;
}

/* Souhrn */
.kutils-summary-card h3 {
  margin-bottom: 1rem;
}
.kutils-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: .35rem;
  font-size: .95rem;
}
.kutils-summary-addons-title {
  display: block;
  margin-top: .8rem;
  font-weight: 600;
}
#summary-addons-list {
  margin: .35rem 0 .7rem;
  padding-left: 1.1rem;
  font-size: .9rem;
}
.kutils-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: .6rem;
  font-size: 1rem;
}
.kutils-summary-total strong {
  font-size: 1.4rem;
}
.kutils-summary-time {
  margin-top: .3rem;
  font-size: .9rem;
  color: #666b86;
}
.kutils-summary-note {
  margin-top: .6rem;
  font-size: .85rem;
  color: #7a7f96;
}

/* =============================
   DETAIL SLUŽBY
   ============================= */

.kutils-detail {
  padding: 2.5rem 0 3.2rem;
}

.kutils-detail-header {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}
.kutils-detail-header h2 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  color: #1d3f6c;
}
.kutils-detail-header p {
  font-size: 0.98rem;
  color: #4a4f66;
}

/* Grid pro dvě karty */
.kutils-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.8rem;
  margin-bottom: 1.8rem;
}

/* Karta balíčku */
.kutils-detail-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.5rem 1.3rem;
  box-shadow: 0 10px 30px rgba(15, 35, 95, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.kutils-detail-card-accent {
  border-color: rgba(32, 77, 134, 0.25);
  box-shadow: 0 14px 36px rgba(15, 35, 95, 0.09);
}

/* Hlavička karty */
.kutils-detail-card-header {
  margin-bottom: 0.7rem;
}
.kutils-detail-card-header h3 {
  margin: 0.3rem 0 0.25rem;
  font-size: 1.2rem;
  color: #1f3560;
}
.kutils-detail-card-header p {
  margin: 0;
  font-size: 0.9rem;
  color: #5a6075;
}

/* „chip“/pill štítky */
.kutils-detail-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.17rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.kutils-detail-pill-basic {
  background: #eef2f9;
  color: #304060;
}
.kutils-detail-pill-premium {
  background: rgba(32, 77, 134, 0.08);
  color: #204d86;
}

/* List bodů */
.kutils-detail-list {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #3b4055;
}
.kutils-detail-list li {
  margin-bottom: 0.25rem;
}

/* Malý tip pod druhou kartou */
.kutils-detail-hint {
  margin-top: 0.6rem;
  font-size: 0.86rem;
  color: #555b75;
}

/* „Neumýváme / nestěhujeme“ – lišta */
.kutils-no {
  font-size: 0.9rem;
}

.kutils-no-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  align-items: center;
  background: #ffffff;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  box-shadow: 0 8px 24px rgba(15, 35, 95, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.kutils-no-bar > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.kutils-no-bar strong {
  white-space: nowrap;
  color: #1f3560;
}
.kutils-no-bar span {
  color: #4c526b;
}

@media (max-width: 640px) {
  .kutils-no-bar {
    border-radius: 16px;
    align-items: flex-start;
  }
}

/* =============================
   CTA SEKCE
   ============================= */

.kutils-cta {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(135deg, #f3f7ff 0%, #ffffff 45%, #eaf0ff 100%);
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.kutils-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.kutils-cta-icon {
  font-size: 3rem;
  margin-bottom: 0.6rem;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

.kutils-cta h2 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
  color: #1d3f6c;
}

.kutils-cta p {
  font-size: 1rem;
  color: #4a5066;
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.kutils-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.kutils-cta-btn {
  min-width: 180px;
}

@media (max-width: 600px) {
  .kutils-cta-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* =============================
   Rezervační záloha – info box
   ============================= */

.kutils-deposit-info {
  margin: 1.5rem auto 0;
  padding: 1rem 1.3rem;
  max-width: 720px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(15, 35, 95, 0.06);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.kutils-deposit-icon {
  font-size: 1.85rem;
  line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

.kutils-deposit-text {
  font-size: 0.95rem;
  color: #3e4662;
}

.kutils-deposit-text strong {
  color: #1f3560;
  margin-right: 0.35rem;
}

/* =============================
   NAVIGACE SLUŽEB / PODSTRÁNEK
   ============================= */

.kutils-subnav {
  padding: 2.5rem 0 2.5rem;
  background: #f5f7fb;
}

.kutils-subnav-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.kutils-subnav-inner h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.4rem;
  color: #1d3f6c;
}

.kutils-subnav-intro {
  max-width: 640px;
  margin: 0 auto 1.8rem;
  text-align: center;
  font-size: 0.98rem;
  color: #4a4f66;
}

/* Grid karet */
.kutils-subnav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

/* Karta podstránky */
.kutils-subnav-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.3rem 1.4rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(15, 35, 95, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.kutils-subnav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 35, 95, 0.12);
  border-color: rgba(32, 77, 134, 0.35);
}

.kutils-subnav-card h3 {
  font-size: 1.15rem;
  margin: 0.35rem 0 0.3rem;
  color: #1f3560;
}

.kutils-subnav-card p {
  font-size: 0.9rem;
  color: #4a4f66;
  margin: 0 0 0.7rem;
}

/* malý štítek nahoře */
.kutils-subnav-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  background: #eef2f9;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #304060;
}

/* text odkazu dole */
.kutils-subnav-link {
  margin-top: auto;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--kutils-brand);
}

/* Kontejner pro mytí oken */
.kutils-addon-windows-group {
  margin-bottom: 1rem;
}

/* Skrytý obsah – zobrazí se po zaškrtnutí */
.kutils-windows-fields {
  display: none;
  background: #f8f9fc;
  border-left: 3px solid var(--kutils-brand);
  padding: 0.9rem 1rem;
  border-radius: 10px;
  margin-top: 0.5rem;
  animation: fadeIn 0.25s ease-out;
}

/* Mini popisek */
.kutils-note-small {
  font-size: 0.82rem;
  color: #667;
  margin-top: 0.4rem;
}

/* Animace */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.onas_kutils-cta-wrapper {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .onas_kutils-cta-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.onas_kutils-cta-block {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.onas_kutils-cta-text h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.onas_kutils-btn {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
}


.kpd-field-note{
  margin: 6px 0 10px;
  font-size: 14px;
  line-height: 1.35;
  opacity: .9;
}

.kpd-field-note .kpd-link{
  font-weight: 600;
  text-decoration: underline;
}

