

/* =========================================================
   UNVi - FULL – EAT (CLEAN + SAFE REORDER)
   ✔ zachovaný design
   ✔ opravené závorky + media bloky
   ✔ sjednocené duplicity bez změny vizuálu
========================================================= */

/* =========================
   0) RESET + ZÁKLAD
========================= */
*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-sans);
  background: transparent;
  color: var(--text-main);
}

/* =========================
   1) ROOT PROMĚNNÉ
========================= */
:root{
  /* ======================
     TEXTY + FONT
  ====================== */
  --text-main: #452a17;      /* EATA barva */
  --text-muted: #7a624f;     /* cappuccino */
  --font-sans: "Josefin Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ======================
     GLASS / PANELY
  ====================== */
  --glass-border: 1px solid rgba(255,255,255,.58);

/* ======================
   BUBLINY – HNĚDÝ AKCENT BEZ BÍLÉ
====================== */

--bubble-border: 2px solid #ffffff;

--bubble-shadow: 
  0 1px 2px rgba(0,0,0,0.08);

--bubble-shadow-inset:
  inset 0 0 0 1px rgba(255,255,255,0.65),  /* jemná vnitřní bílá hrana */
  inset 0 0 18px rgba(255,255,255,0.25);   /* lehké rozlití světla */

  /* ======================
     TLAČÍTKA G + CHAT
  ====================== */
--accent: #6fcf4f;
--accent-hover: #5bb63f;
--accent-light: #8fe36a;
            
  /* ======================
     CHAT BARVY
  ====================== */
  --chat-user-bg: rgba(56,189,248,0.65);
  --chat-user-text: #0f172a;

  --chat-eata-bg: rgba(255,255,255,0.05);
  --chat-eata-text: #3a2a1a;
}

/* =========================
   2) LAYOUT – APP WRAPPER
========================= */
.app {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 4px 4px;

  /* ❄️ PRAVÉ SKLO */
  background: rgba(255,255,255,0.28);

  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);

  border-radius: 12px;
  border: 4px solid #ffffff;

  box-shadow:
    0 18px 42px rgba(0,0,0,0.28),
    inset 0 1px 1px rgba(255,255,255,0.35);

  position: relative;
}

.app::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: calc(8px - 3px);
  background: rgba(255,255,255, 0.30);

  z-index: 0;
  pointer-events: none;
}

/* aby obsah nebyl pod overlayem app::after */
.app * {
  position: relative;
  z-index: 1;
}

/* odstranění bílé vrstvy stránky */
html, body, main, .app { background: transparent !important; }

/* =========================
   3) HEADER / HERO
========================= */
.app-header {
  position: relative; /* ukotvení počítadla */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  color: #ffffff;
  background: transparent !important;
}

.hero-text { max-width: 640px; }

.hero-title {
  margin: 0 0 4px;
  font-size: clamp(1.4rem, 1.8vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 16px !important;
color: var(--text-main) !important;
}

.hero-subtitle {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
}

/* posun textů */
.hero-text,
.hint { margin-left: 10px; }

/* čitelnost textů */
.hero-title,
.hero-subtitle,
.label,
.hint,
.output-title,
.output-placeholder {
  text-shadow: 0 1px 2px rgba(0,0,0,0.15) !important;
}

/* =========================
   4) JAZYK – SELECT
========================= */
.lang-select {
  border: 1px solid #4da535;
  border-radius: 10px;
  padding: 8px 18px;

  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;

  background: linear-gradient(
    180deg,
    #8fe36a 0%,
    #6fcf4f 60%,
    #58b43c 100%
  );

  color: #3b2a1e;
  cursor: pointer;

  box-shadow:
    0 4px 12px rgba(111,207,79,0.35),
    inset 0 1px 0 rgba(255,255,255,0.4);

  transition: all 0.25s ease;
}

.lang-select:hover {
  background: linear-gradient(
    180deg,
    #79db58 0%,
    #5bb63f 100%
  );
}

/* =========================
   5) PANEL + FORM
========================= */
.panel {
  background: transparent !important;
  border-radius: 8px;
  padding: 0 0 10px;
  box-shadow: none;
  border: none;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;

  /* generátor – stejný vzhled jako chat */
  background: rgba(255,255,255,0.35);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 4px;
  padding: 16px;

  box-shadow:
    0 6px 12px rgba(0,0,0,0.05),
    inset 0 1px 6px rgba(0,0,0,0.02);
}

.label {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-main) !important;
  padding-left: 12px;
  margin-top: 0;
  margin-bottom: 12px;
}

.hint {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-main) !important;
}

/* finální spacing + ztenčení */
.hero-subtitle,
.hint {
  font-size: 1.08rem !important;
  font-weight: 400 !important;
  line-height: 0.90 !important;
  margin-bottom: 6px !important;
  letter-spacing: 0 !important;
  color: #452a17 !important;
}

.label {
  line-height: 1.2 !important;
  margin-bottom: -8px !important;
  letter-spacing: 0 !important;
  color: #452a17 !important;
}

/* =========================
   6) TEXTAREA – SKLO + OSTRÝ TEXT
========================= */
.textarea {
  resize: none;
  width: 100%;
  min-height: 70px;
  margin-bottom: 10px;
  margin-top: 8px;

  padding: 14px 16px;
  font-size: 0.96rem;
  font-family: var(--font-sans);

  border-radius: 8px;
  border: var(--bubble-border);
  outline: none;

  background: transparent; /* důležité kvůli ::before */
  color: var(--text-main);
  text-shadow: none;

  box-shadow: var(--bubble-shadow),
                 var(--bubble-shadow-inset);

  position: relative;
  z-index: 5;
}

.textarea::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-r box-shadow: var(--bubble-shadow-inset); /* 👈 TADY */adius: inherit;

  z-index: -1;
  pointer-events: none;
}

.textarea::placeholder {
  color: var(--text-main) !important;
  opacity: 0.8;
}

.textarea:focus {
  border: var(--bubble-border);
  box-shadow: var(--bubble-shadow);
  outline: none;
  transform: none;
}


/* =========================
   7) TLAČÍTKA GENERÁTORU
========================= */
.buttons-row {
  display: flex;
align-items: stretch;
  gap: 8px;
}

.button {
  padding: 7px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;

  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;

  transition:
    background-color 150ms ease-out,
    transform 150ms ease-out,
    box-shadow 150ms ease-out,
    border-color 150ms ease-out,
    opacity 150ms ease-out;
}

.buttons-row .button {
  flex: 1;
  width: auto;
  padding: 10px 14px;
  font-size: 0.95rem;

  /* sjednocení výšky tlačítek */
  padding: 8px 18px;
  font-size: 0.9rem;
  line-height: 1.2;
  border-radius: 8px;
}

/* modré */
.button-primary {
  border: none;
  background: #0ea5e9;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(14, 165, 233, 0.35);
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(14, 165, 233, 0.2);
  background: #3293ed;
}

.button-primary[disabled] {
  opacity: 0.65;
  cursor: default;
  box-shadow: none;
  transform: none;
}

/* zelené */
.button-secondary {
  border: none;
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.2);
}

.button-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(14, 165, 233, 0.2);
  background: #16a34a;
}

.button-secondary[disabled] {
  opacity: 0.65;
  cursor: default;
  box-shadow: none;
  transform: none;
}

/* =========================
   8) STATUS
========================= */
.status {
  margin-top: 8px;
  font-size: 0.88rem;
  min-height: 1.2em;
  color: var(--text-main);
}

.status-error { color: #b91c1c; }

/* =========================
   9) OUTPUT – GENERÁTOR
========================= */
.output {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  padding: 30px 0px 24px;
  border-radius: 4px;

  background: rgba(255, 255, 255, 0.55) !important;
  border: 1px solid rgba(255,255,255,0.55);
  min-height: 200px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    0 6px 12px rgba(0,0,0,0.05),
    inset 0 1px 6px rgba(0,0,0,0.02);

  max-height: none;
  height: auto;
  overflow: visible;

  color: var(--text-main) !important;
  text-shadow: none !important;
}

.output-placeholder {
  margin: 0;
  color: var(--text-main);
  text-shadow: none !important;
  filter: none !important;
  font-weight: 500;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.output-title {
  font-weight: 600;
  margin: 0 0 6px;
}

.output h3 {
  margin-top: 16px;
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.output p { margin: 4px 0 6px; }

.output ul {
  margin: 4px 0 10px;
  padding-left: 22px;
}

.output-error { color: #b91c1c; }

.footer { display: none; }

/* =========================
   10) DEMO LOCK – ROZMAZÁNÍ RECEPTŮ
========================= */
.locked-recipe {
  position: relative !important;
  pointer-events: none;
}

.locked-blurred-content {
  filter: blur(5px);
  opacity: 0.55;
}

.locked-overlay {
  position: absolute;
  inset: 0;
  z-index: 99999;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);

  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);

  border-radius: 12px;
  pointer-events: none;
}

/* =========================
   11) RECIPE BLOCK – PAPÍR
========================= */
.recipe-block {
  background: #f8f5ef !important;
  border-radius: 5px !important;

  padding: 34px 36px !important;

  width: calc(100% + 40px) !important;
  margin-left: -20px !important;
  margin-right: -20px !important;

  box-shadow:
    0 1px 0 rgba(255,255,255,0.8),
    0 8px 14px rgba(0,0,0,0.12),
    0 2px 4px rgba(0,0,0,0.05);

  border: 1px solid rgba(0,0,0,0.08) !important;

  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.035), transparent 18%),
    linear-gradient(to top, rgba(0,0,0,0.06), transparent 22%);

  position: relative;
}

.recipe-block::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
  pointer-events: none;
}

.recipe-block h3 {
  font-size: 1.45rem !important;
  font-weight: 700 !important;
  margin-bottom: 14px !important;
  color: #452a17 !important;
  text-shadow: none !important;
}

.recipe-block p,
.recipe-block li {
  color: #4c3a24 !important;
  text-shadow: none !important;
  font-size: 1.03rem !important;
  line-height: 1.55 !important;
}

.recipe-block ul { padding-left: 22px !important; }

.recipe-block li { margin-bottom: 6px !important; }

.recipe-block strong { color: #3b2817 !important; }

/* zákaz kopírování receptů */
.no-copy {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* =========================
   12) CHAT – KONTEJNER + ZPRÁVY
========================= */
.chat {
  padding: 16px;
  margin-top: 0px;

  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 6px;

  box-shadow:
    0 6px 12px rgba(0,0,0,0.05),
    inset 0 1px 6px rgba(0,0,0,0.02);
}

.chat-messages {
  max-height: auto;
  overflow-y: auto;
  margin-bottom: 14px;
}

.chat-message {
  max-width: 88%;
  padding: 10px 14px;
  margin-bottom: 10px;

  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.45;

  border: var(--bubble-border);
  box-shadow: var(--bubble-shadow),
                 var(--bubble-shadow-inset);
  background: rgba(255,255,255,0.05);

  position: relative;
}

/* eata */
.chat-message.eata {
  background: var(--chat-eata-bg);
  color: var(--chat-eata-text);
  margin-right: auto;
  border-top-left-radius: 6px;
}

/* user */
.chat-message.user {
  background: var(--chat-user-bg);
  color: var(--chat-user-text);
  margin-left: auto;
  border-top-right-radius: 6px;
}

/* =========================
   13) CHAT INPUT + BUTTONS
========================= */
.chat-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

#chat-input {
  flex: 1;
  padding: 12px 14px;

  border-radius: 8px;
  border: var(--bubble-border);
  outline: none;

  font-family: var(--font-sans);
  font-size: 0.95rem;

  background: rgba(255,255,255,0.05);
  box-shadow: var(--bubble-shadow),
                 var(--bubble-shadow-inset);
}

#chat-input:focus {
  border-color: rgba(255,255,255,0.05);
  box-shadow: var(--bubble-shadow);
}

.chat-btn {
  border: none;
  border-radius: 10px;
  padding: 7px 20px;

  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  color: #ffffff;
  white-space: nowrap;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition:
    background-color 150ms ease-out,
    transform 150ms ease-out,
    box-shadow 150ms ease-out,
    opacity 150ms ease-out;
}

.chat-btn-send {
  background: #0ea5e9;
  box-shadow: 0 4px 8px rgba(14, 165, 233, 0.35);
}

.chat-btn-send:hover {
  background: #3293ed;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(14, 165, 233, 0.2);
}

.chat-btn-clear {
  background: #22c55e;
  box-shadow: 0 4px 8px rgba(34, 197, 94, 0.35);
}

.chat-btn-clear:hover {
  background: #16a34a;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(34, 197, 94, 0.2);
}

.chat-btn:disabled {
  opacity: 0.65;
  cursor: default;
  box-shadow: none;
  transform: none;
}

/* =========================
   14) RECIPE CARD (klikací)
========================= */
.recipe-card {
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 16px;
  cursor: pointer;

  line-height: 1.55;
  font-size: 15px;
  color: #3a2a1a;

  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);

  transition:
    box-shadow 0.25s ease,
    transform 0.2s ease,
    border-color 0.25s ease,
    border 0.25s ease;
}

.recipe-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.recipe-card.recipe-selected {
  border: 2px solid rgba(56, 189, 248, 1);
  box-shadow:
    0 14px 36px rgba(56, 189, 248, 0.18),
    0 0 0 2px rgba(56, 189, 248, 0.12);
  background: #ffffff;
}

.recipe-card:active { transform: scale(0.995); }

.recipe-card p { margin: 10px 0; }

.recipe-card strong {
  display: block;
  margin-top: 14px;
  font-weight: 600;
}

.recipe-card::first-line { font-weight: 600; }

/* =========================
   15) TYPING INDICATOR (chat)
========================= */
.typing-indicator {
  display: flex;
  gap: 6px;
  margin: 8px 0 12px 6px;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background-color: #999;
  border-radius: 50%;
  opacity: 0.4;
  animation: typingWave 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1){ animation-delay: 0s; }
.typing-indicator span:nth-child(2){ animation-delay: 0.2s; }
.typing-indicator span:nth-child(3){ animation-delay: 0.4s; }

@keyframes typingWave {
  0% { opacity: 0.3; transform: translateY(0); }
  20% { opacity: 1; transform: translateY(-4px); }
  40% { opacity: 0.3; transform: translateY(0); }
  100% { opacity: 0.3; }
}

/* generátor – vlna jako chat */
.typing-dots::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  margin-left: 10px;
  animation: dotWave 1.4s infinite ease-in-out;
}

@keyframes dotWave {
  0% {
    box-shadow:
      6px 0 0 rgba(120,120,120,.4),
      20px 0 0 rgba(120,120,120,.4),
      34px 0 0 rgba(120,120,120,.4);
  }
  20% {
    box-shadow:
      6px -6px 0 rgba(120,120,120,1),
      20px 0 0 rgba(120,120,120,.4),
      34px 0 0 rgba(120,120,120,.4);
  }
  40% {
    box-shadow:
      6px 0 0 rgba(120,120,120,.4),
      20px -6px 0 rgba(120,120,120,1),
      34px 0 0 rgba(120,120,120,.4);
  }
  60% {
    box-shadow:
      6px 0 0 rgba(120,120,120,.4),
      20px 0 0 rgba(120,120,120,.4),
      34px -6px 0 rgba(120,120,120,1);
  }
  100% {
    box-shadow:
      6px 0 0 rgba(120,120,120,.4),
      20px 0 0 rgba(120,120,120,.4),
      34px 0 0 rgba(120,120,120,.4);
  }
}

.hidden { display: none; }

/* =========================
   16) DEMO COUNTER
========================= */
.demo-counter {
  position: absolute;
  top: 18px;
  right: 20px;

  font-size: 0.85rem;
  opacity: 0.75;
  text-align: right;
  z-index: 10;
}

/* =========================
   17) BOOK (KNIHA) – IMAGE
========================= */
.book-app {
  width: 100%;
  position: relative;
  text-align: center;
  margin-top: -170px;

  left: 0;
  transform: none;

  pointer-events: none;
  z-index: 99999;
}

.book-img {
  display: block;
  margin-left: calc(50% + 10px);
  transform: translateX(-50%);
  width: 940px;
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

/* =========================
   18) RESPONSIVE – DESKTOP
========================= */
@media (min-width: 720px) {
  .app { padding-top: 40px; }
}

/* =========================
   19) MOBILE – HLAVNÍ FIXY
========================= */
@media (max-width: 768px) {

  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  .app {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  /* generátor tlačítka na sloupec */
  .buttons-row {
    flex-direction: column;
    gap: 10px;
  }
  .buttons-row .button { width: 100%; }

  /* jazyk jako poslední – na celou šířku */
  .lang-switcher {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .lang-select {
    width: 100%;
    display: block;
    text-align-last: center;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* chat form na sloupec */
  .chat-form {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  #chat-input { width: 100%; }
  .chat-btn { width: 100%; justify-content: center; }

  /* kniha – mobil centrování */
  .book-app {
    width: 82% !important;
    margin-top: -160px !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-75%) !important;
    text-align: center !important;
  }
  .book-img {
    width: 125% !important;
    max-width: none !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    transform: translateX(0) !important;
  }

  /* sjednocení výšky prvků v generator-buttons */
  .generator-buttons > * {
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
  }
}

/* INFO BOX – sjednocení s glass panely */
.form > p,
.form .info,
.form .hint-box {
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 8px;
  padding: 14px 16px;

  box-shadow:
    0 6px 12px rgba(0,0,0,0.05),
    inset 0 1px 6px rgba(0,0,0,0.02);

  border: 1px solid rgba(255,255,255,0.95);
}


/* ultra malé telefony */
@media (max-width: 480px) {
  .book-img { width: 150% !important; }
}

/* =========================
   20) MOBILE OPTIMIZATION (max 540px)
   ⚠️ TADY BYLA ROZBITÁ ZÁVORKA – OPRAVENO
========================= */

@media (max-width: 540px) {
  .app {
    width: calc(100vw - 10px) !important;  /* 👈 12px z každé strany */
    max-width: calc(100vw - 10px) !important;
    margin: 0 auto !important;
    padding: 17px 14px 30px;
    border-radius: 8px !important; /* můžeš vrátit jemné zaoblení */
  }
}

  .hero-title { font-size: 1.9rem; }
  .hero-subtitle { font-size: 1rem; line-height: 1.45; }

  .lang-switcher { flex-direction: row; gap: 4px; }
  .lang-select { padding: 8px 14px; font-size: 0.85rem; }

  .textarea { min-height: 90px; padding: 10px 12px; font-size: 0.92rem; }

  .buttons-row .button { flex: 1 1 100%; width: 100%; }
  .button { padding: 12px 18px; font-size: 1rem; }

  .output {
    padding: 14px 14px 16px;
    font-size: 0.92rem;
    max-height: none;
    overflow: visible;
  }

  .output h3 { font-size: 1rem; }
}

/* =========================
   21) ŠÍŘKA OBSAHU (max 840px)
========================= */
@media (max-width: 840px) {
  .app-container,
  .content,
  .main-content {
    max-width: 100%;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* =========================================================
   EATA – HOTFIX: CHAT INPUTY (bílý blok) + focus border fix
   VLOŽ ÚPLNĚ NA KONEC CSS
========================================================= */

/* 1) Nadpis "Eata..." vždy tmavý */
.hero-title{
  color: var(--text-main) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.12) !important;
}

/* 2) Ten "bílý blok" = INPUTy v chatu (a případné textarea v chatu) */
.chat input[type="text"],
.chat input[type="search"],
.chat input[type="email"],
.chat input[type="tel"],
.chat input,
.chat textarea,
#chat-input{
  background: rgba(255,255,255,0.05) !important;   /* stejné jako ostatní panely */
  border: 4px solid rgba(255,255,255,1.89) !important;
  border-radius: 8px !important;

  color: var(--text-main) !important;
  box-shadow: var(--bubble-shadow) !important;

  outline: none !important;
  -webkit-appearance: none;
  appearance: none;
}

/* 3) FIX: aby linka (border) při kliknutí / focus NIKDY nezmizela */
.chat input:focus,
.chat input:focus-visible,
.chat textarea:focus,
.chat textarea:focus-visible,
#chat-input:focus,
#chat-input:focus-visible{
  background: rgba(255,255,255,0.28) !important;
  border: 4px solid rgba(255,255,255,1.89) !important; /* drží pořád */
  box-shadow: var(--bubble-shadow) !important;
  outline: none !important;
}

/* 4) Placeholder taky sladit (když byl moc šedý/bílý) */
.chat input::placeholder,
.chat textarea::placeholder,
#chat-input::placeholder{
  color: rgba(69,42,23,0.75) !important;
  opacity: 1 !important;
}

/* =========================================
   🔒 ZÁKAZ VÝBĚRU TEXTU – EATA UI
   (bez kolizí, bezpečné)
========================================= */

/* 1️⃣ Výchozí stav – VŠE NEVYBÍRATELNÉ */
body,
.app,
.app * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* 2️⃣ POVOLENÍ pro vstupní pole */
textarea,
input,
select,
option {
  user-select: text !important;
}

/* 3️⃣ POVOLENÍ KURZORU + COPY jen tam, kde se píše */
textarea,
input {
  cursor: text;
}

/* 4️⃣ Tlačítka zůstanou "klikací", ale neoznačitelná */
button {
  cursor: pointer;
}

/* 5️⃣ CHAT ZPRÁVY – NEVYBÍRAT (ochrana obsahu) */
.chat-message,
.recipe-card,
.output,
.output * {
  -webkit-user-select: none;
  user-select: none;
}

.eat-cta-wrap {
  margin-top: 16px;
  text-align: center;
}

.eat-cta-btn {
  display: inline-block;
  padding: 14px 22px;
  background: #22c55e;
  color: white;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.eat-cta-btn:hover {
  background: #16a34a;
}



/* =========================
   EATA – CHAT BUBBLE
========================= */

#eata-bubble{
  position: fixed;
  top: 54px;
  right: 430px;

  width: 94px;
  height: 68px;
  border-radius: 50%;

  background: #12A4E8; 
  color: rgba(255,255,255,1.35);
  font-size: 22px;

  /* 🔑 LINKA OKOLO BUBLINY */
  border: 4px solid rgba(255,255,255,1.35);

  cursor: pointer;

  /* jemný stín POD bublinou */
  box-shadow:
    0 6px 12px rgba(0,0,0,0.18);
  filter:
    drop-shadow(0 16px 30px rgba(0,0,0,0.32));

  z-index: 10000;

  user-select: none !important;
}

/* =========================================
   EATA – MICRO INTERACTION (CHAT BUBBLE)
========================================= */

#eata-bubble{
  transition:
    transform 220ms cubic-bezier(.22,.61,.36,1),
    box-shadow 220ms cubic-bezier(.22,.61,.36,1),
    background-color 180ms ease-out;
}

/* 🖱️ NAJETÍ MYŠÍ – lehké nadzvednutí */
#eata-bubble:hover{
  transform: translateY(-3px) scale(1.03);

  box-shadow:
    0 14px 32px rgba(0,0,0,0.22),
    0 4px 8px rgba(0,0,0,0.10);
}

/* 🖱️ KLIK – jemné „zamáčknutí“ */
#eata-bubble:active{
  transform: translateY(-1px) scale(0.98);

  box-shadow:
    0 6px 14px rgba(0,0,0,0.18),
    0 2px 4px rgba(0,0,0,0.08);
}

.eata-chat-overlay{
  position: fixed;
  inset: 0;
  background: transparent;   /* ❗ žádné stmívání */
  z-index: 9998;

  pointer-events: auto;
}

.eata-chat-window{
  position: fixed;
  padding: 4px;

  top: 130px;          /* ručně ladíš */
  right: 64px;         /* přesně pod bublinou */

  width: 360px;
  height: 700px;       
  max-height: 900px;   /* pojistka pro velké monitory */ 

  background: rgba(255, 255, 255, 0.15); /* průhledná bílá */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 16px;

  box-shadow: 0 16px 40px rgba(0,0,0,0.35);

 /* ✅ BÍLÁ LINKA 4px */
  border: 4px solid #ffffff;

  /* aby to vizuálně sedělo s hlavním panelem */
  box-shadow:
    0 18px 42px rgba(0,0,0,0.28),
    inset 0 1px 1px rgba(255,255,255,0.35);

  display: flex;
  flex-direction: column;

  z-index: 9999;
}

.chat-messages{
  flex: 1;
  overflow-y: auto;
  padding: 12px;
}

.chat-form{
  flex-shrink: 0;
}

.chat{
  display: flex;
  flex-direction: column;
  flex: 1;              /* 🔑 vyplní celé okno */
  overflow: hidden;     /* 🔑 zabrání úniku obsahu */
}

.chat-messages{
  flex: 1;              /* 🔑 zabere zbytek prostoru */
  overflow-y: auto;
  margin-bottom: 12;     /* ❗ zruší vytlačování */
}

.chat-form{
  display: flex;
  flex-direction: column;   /* 🔑 místo row */
  gap: 8px;
}

.chat-form .chat-btn{
  width: 100%;
}

#chat-input{
  width: 100%;
  height: 34px;            /* místo min-height */
  padding: 6px 12px;       /* zmenšit padding */
  font-size: 0.95rem;
  line-height: 1.2;
  border-radius: 12px;
  resize: none;
  border-radius: 12px;
}

.hidden{ display:none; }
.book-app,
.book-img{
  display: none !important;
}

/* =========================================
   EATA – UI LOCK (bez označování)
========================================= */

* {
  -webkit-tap-highlight-color: transparent;
}

body,
#eata-bubble,
.eata-chat-window,
.eata-chat-window *,
button,
.chat-btn,
.chat-message,
.typing-indicator,
h1, h2, h3, p, span {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* ❌ žádné focus rámečky */
button,
button:focus,
button:active,
#eata-bubble,
#eata-bubble:focus,
#eata-bubble:active,
.chat-btn,
.chat-btn:focus,
.chat-btn:active {
  outline: none !important;
  box-shadow: none !important;
}

/* ❌ žádný vizuální výběr */
::selection {
  background: transparent;
}
::-moz-selection {
  background: transparent;
}

.textarea,
#chat-input {
  caret-color: #452a17 !important;  /* Eata hnědá */
  user-select: text !important;
}

/* =========================================
   ✅ POVOLENÍ PSANÍ – JEN INPUT
========================================= */

#chat-input {
  user-select: text !important;
  -webkit-user-select: text !important;
  -ms-user-select: text !important;

  caret-color: auto !important;
}


/* =========================
   EATA – FARMÁŘSKÉ POZADÍ
========================= */

body::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image: url("TVŮJ_OBRÁZEK_KUCHYNĚ");
  background-size: cover;
  background-position: center;

  /* 🔧 KLÍČOVÉ ZMĚNY */
  filter: blur(10px) saturate(1.05);
  opacity: 0.55;

  z-index: -2;
}

/* =========================
   EATA – FARMÁŘSKÉ POZADÍ
========================= */

body::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image: url("https://47057a08b6.clvaw-cdnwnd.com/c4aa89400a1745afb47e5c18480b8d81/200000581-3beff3bf00/kuchyneeat.webp");
  background-size: cover;
  background-position: center;

  /* 🔥 ČITELNÁ KUCHYNĚ */
  filter: blur(2px) saturate(1.05);
  opacity: 0.6;

  z-index: -2;
}

/* =========================================
   EATA – POSUN GENERÁTORU NÍŽ (GLOBAL)
   VLOŽ ÚPLNĚ NA KONEC CSS
========================================= */
body.full{
  padding-top: 40px;          /* prostor nad app */
}

main.app{
  margin-top: 40px !important; /* posune celý generátor dolů */
}

/* mobil – trochu menší odsazení */
@media (max-width: 768px){
  body.full{ padding-top: 18px; }
  main.app{ margin-top: 18px !important; }
}

@media (max-width: 768px){

  #eata-bubble{
    top: 14px;        /* 🔑 nahoře */
    right: 14px;

    bottom: auto;
    left: auto;

    width: 56px;
    height: 56px;
    font-size: 20px;


  }

  .eata-chat-window{
    top: 78px;        /* 🔑 pod bublinou */
    right: 12px;
    left: 12px;       /* 🔑 responzivní šířka */

    bottom: auto;

    width: auto;      /* ❗ místo 360px */
    height: 80vh;     /* rozumná výška */

    border-radius: 14px;
  }
}

/* =========================================
   🌾 EATA – IDLE STAV (STABILNÍ VERZE)
========================================= */

.output-idle{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;   /* ⬅ opravdové centrování */
  text-align: center;
  z-index: 3;
  pointer-events: none;
}

/* TEXT */
.idle-text{
  font-size: 1.05rem;
  font-weight: 500;
  color: #2b2b2b;
  margin: 0;
  animation: idleFloat 4s ease-in-out infinite;
}

/* MLHA TEXT */
.idle-text{
  position:relative;
  z-index:3;
  font-weight:500;
}

.idle-text::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:140%;
  height:170%;
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.75) 0%,
    rgba(255,255,255,0.55) 40%,
    rgba(255,255,255,0.25) 70%,
    transparent 100%
  );
  filter: blur(10px);
  z-index:-1;
}

/* TEČKY */
.idle-dots{
  display: flex;
  gap: 8px;
  margin-top: 14px;
  transform: translateX(-20px);
}

.idle-dots span{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(60,60,60,0.7);
  animation: idleBounce 1.6s infinite ease-in-out;
}

/* postupně za sebou */
.idle-dots span:nth-child(1){ animation-delay: 0s; }
.idle-dots span:nth-child(2){ animation-delay: 0.25s; }
.idle-dots span:nth-child(3){ animation-delay: 0.5s; }

@keyframes idleBounce{
  0%   { transform: translateY(0); opacity: 0.3; }
  30%  { transform: translateY(-6px); opacity: 1; }
  60%  { transform: translateY(0); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 0.3; }
}

/* =========================================
   🌾 TEXTUROVANÉ SUROVINY (FARM VIBE)
========================================= */

.idle-silhouettes{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
  overflow:hidden;
}

.food{
  position:absolute;
  width:200px;
  height:200px;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  opacity:0.65;

  animation: floatFood 24s ease-in-out infinite;
}

/* Rozmístění + různé rychlosti */

.f1{
  top:25%;
  left:6%;
  animation-duration:26s;
  background-image:url("https://47057a08b6.clvaw-cdnwnd.com/c4aa89400a1745afb47e5c18480b8d81/200000587-0a09c0a09e/ChatGPT%20Image%2011.%202.%202026%2012_21_39_upscayl_5x_upscayl-standard-4x-8.webp");
}

.f2{
  bottom:18%;
  right:12%;
  animation-duration:30s;
  background-image:url("https://47057a08b6.clvaw-cdnwnd.com/c4aa89400a1745afb47e5c18480b8d81/200000599-26fe526fe6/ChatGPT%20Image%2011.%202.%202026%2019_38_27_upscayl_5x_upscayl-standard-4x.webp");
}

.f3{
  top:25%;
  left:70%;
  animation-duration:22s;
  background-image:url("https://47057a08b6.clvaw-cdnwnd.com/c4aa89400a1745afb47e5c18480b8d81/200000595-a5de4a5de5/ChatGPT%20Image%2011.%202.%202026%2012_49_14_upscayl_5x_upscayl-standard-4x.webp");
}

.f4{
  top:5%;
  right:41%;
  animation-duration:28s;
  background-image:url("https://47057a08b6.clvaw-cdnwnd.com/c4aa89400a1745afb47e5c18480b8d81/200000593-7278272785/ChatGPT%20Image%2011.%202.%202026%2012_43_53_upscayl_5x_upscayl-standard-4x.webp");
}

.f5{
  top:-4%;
  left:-5%;
  animation-duration:18s;
  background-image:url("https://47057a08b6.clvaw-cdnwnd.com/c4aa89400a1745afb47e5c18480b8d81/200000589-1308d1308f/ChatGPT%20Image%2011.%202.%202026%2012_31_50_upscayl_5x_upscayl-standard-4x.webp");
}


/* Jemný farm pohyb */

@keyframes floatFood{
  0%   { transform: translate(0,0) rotate(0deg); }
  25%  { transform: translate(14px,-12px) rotate(3deg); }
  50%  { transform: translate(-10px,10px) rotate(-3deg); }
  75%  { transform: translate(8px,-6px) rotate(2deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}


/* =========================================
   🌿 UNVi – SPRING GRASS BUTTON STYLE
   (text stejný jako nadpis Eat)
========================================= */

/* GENERÁTOR */
.button-primary,
.button-secondary,

/* CHAT PANEL tlačítka */
.chat-btn-send,
.chat-btn-clear,

/* CTA */
.eat-cta-btn {

  background: linear-gradient(
    180deg,
    var(--accent-light) 0%,
    var(--accent) 60%,
    #58b43c 100%
  ) !important;

  border: 1px solid #4da535 !important;
  color: var(--eat-heading-color) !important;

  box-shadow:
    0 4px 12px rgba(111,207,79,0.35),
    inset 0 1px 0 rgba(255,255,255,0.4);

  transition: all 0.25s ease;
}

/* =========================
   🌿 LANGUAGE BUTTON – CLEAN STYLE
========================= */

.lang-select{
  height: 40px;              /* pevná výška */
  line-height: 40px;         /* stejná jako výška */

  padding: 0 40px 0 18px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background: rgba(255,255,255,0.65) !important;
  border: 2px solid #4da535 !important;

  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;

  color: #3b2a1e !important;

  box-shadow:
    0 4px 12px rgba(111,207,79,0.18),
    inset 0 1px 0 rgba(255,255,255,0.5);

  border-radius: 10px;
}

.lang-switcher{
  position: relative;
}

.lang-switcher::after{
  content: "▾";
  position: absolute;

  right: 14px;
  top: 50%;
  transform: translateY(-50%);

  font-size: 14px;
  font-weight: 700;

  color: #3b2a1e;

  pointer-events: none;
}

/* HOVER – žádná změna barvy */
.lang-select:hover{
  background: rgba(255,255,255,0.65) !important;
  border: 2px solid #4da535 !important;

  transform: translateY(-1px);

  box-shadow:
    0 6px 18px rgba(111,207,79,0.28);
}

/* sjednocení tloušťky textu tlačítek */
.button-primary,
.button-secondary,
.chat-btn-send,
.chat-btn-clear,
.eat-cta-btn {
  font-weight: 600 !important;
}

.idle-text{
  position: relative;
  z-index: 3;
}

.idle-text::after{
  content:"";
  position:absolute;
  inset:-8px -14px;
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.75) 0%,
    rgba(255,255,255,0.4) 60%,
    transparent 100%
  );
  filter: blur(8px);
  z-index:-1;
  border-radius:12px;
}

/* =========================
   EATA – GENERATING STATE CENTER
========================= */

.output.generating {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.output.generating p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}
/* =========================
   🔥 LOADING CENTER STYLE
========================= */
.loading-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;   /* zpět na center */
  height: 100%;              /* důležité */
  gap: 6px;
  text-align: center;
}


.loading-text {
  font-size: 18px;
  font-weight: 600;
  color: #3b2a1d;
  margin: 0;      /* odstraníme 16px */
  text-shadow: 0 3px 10px rgba(0,0,0,0.18);
}



/* =========================
   🍳 EATA – REAL PAN (4 vrstvy)
   ========================= */

.pan-wrapper{
  position: relative;
  width: 160px;
  height: 120px;
  margin: 0 auto 20px;
  transform: scale(0.8);   /* 0.8 = zmenší o 20 % */
  transform-origin: center;
}

.pan{
  position: relative;
  width: 140px;
  height: 80px;
  margin: 0 auto;
}

/* 1️⃣ ČERNÝ OKRAJ PÁNVE */
.pan{
  background: #000;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

/* 2️⃣ ŠEDÉ DNO (HLUBKA) */
.pan-base{
  position: absolute;
  width: 110px;
  height: 55px;
  left: 15px;
  bottom: 10px;
  background: #7d7d7d;
  border-radius: 50%;
  z-index: 1;
}

/* 3️⃣ UCHO */
.handle{
  position: absolute;
  width: 70px;
  height: 16px;
  right: -55px;
  top: 30px;
  background: linear-gradient(to right, #111, #444);
  border-radius: 8px;
  z-index: 0;
}

/* 4️⃣ PALAČINKA */
.pancake{
  position: absolute;
  width: 90px;
  height: 40px;
  left: 25px;
  bottom: 35px;
  background: radial-gradient(circle at 40% 40%, #f6c77a, #e0a23e);
  border-radius: 50%;
  z-index: 2;
  animation: pancake-bounce 1.6s ease-in-out infinite;
}

/* Jemné vyskočení nad pánev */
@keyframes pancake-bounce{
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-25px); }
}

/* =========================
   🍳 ANIMACE PÁNVE + PÁRA
========================= */

/* Pohyb celé pánve */
.pan{
  animation: pan-move 1.6s ease-in-out infinite;
  transform-origin: center bottom;
}

/* Jemné naklopení */
@keyframes pan-move{
  0%,100% { transform: rotate(0deg) translateY(0); }
  25%     { transform: rotate(-4deg) translateY(-2px); }
  50%     { transform: rotate(0deg) translateY(0); }
  75%     { transform: rotate(3deg) translateY(-1px); }
}

/* =========================
   🌫 PÁRA NAD PÁNVÍ
========================= */

.pan-wrapper{
  position: relative;
  overflow: visible;
}

/* 3 samostatné "obláčky" */
.pan-wrapper .steam{
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(255,255,255,0.7), rgba(255,255,255,0));
  border-radius: 50%;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(6px);
  animation: steam-rise 3s ease-in-out infinite;
  pointer-events: none;
}

.pan-wrapper .steam:nth-child(2){
  left: 40%;
  animation-delay: 1s;
}

.pan-wrapper .steam:nth-child(3){
  left: 60%;
  animation-delay: 2s;
}

@keyframes steam-rise{
  0%   { opacity: 0; transform: translate(-50%, 0) scale(0.6); }
  40%  { opacity: 0.6; }
  100% { opacity: 0; transform: translate(-50%, -50px) scale(1.4); }
}

/* =========================
   🍳 STEAM – SILNĚJŠÍ, VIDITELNÁ
========================= */

.steam{
  position: absolute;
  width: 22px;
  height: 22px;
  background: radial-gradient(circle,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.6) 40%,
    rgba(255,255,255,0.15) 70%,
    transparent 100%
  );
  border-radius: 50%;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(4px);
  opacity: 0;
  z-index: 10;
  animation: steam-rise 2.4s ease-in-out infinite;
}

.steam:nth-child(1){
  margin-left: -28px;
  animation-delay: 0s;
}

.steam:nth-child(2){
  margin-left: 0px;
  animation-delay: 0.6s;
}

.steam:nth-child(3){
  margin-left: 28px;
  animation-delay: 1.2s;
}

@keyframes steam-rise{
  0%{
    opacity: 0;
    transform: translate(-50%, 0) scale(0.7);
  }
  30%{
    opacity: 0.9;
  }
  60%{
    opacity: 0.6;
  }
  100%{
    opacity: 0;
    transform: translate(-50%, -55px) scale(1.6);
  }
}

/* =========================
   🔒 DEMO LOCK CENTERED
========================= */

.eat-lock{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:10px;
  padding:30px 20px;
  max-width:560px;
  margin:0 auto;
}

.eat-lock p{
  margin:0;
  font-size:17px;
  font-weight:600;
  line-height:1.4;
  color:#3b2a1d;
}

.eat-lock .eat-cta-wrap{
  margin-top:18px;
}

/* =========================
   🔒 TLAČÍTKA-RÁMEČEK DEAKTIVACE
========================= */

button:focus,
select:focus {
  outline: none;
  box-shadow: none;
}

/* =========================
   EATA – přihlášení o slovo
========================= */

@keyframes bubbleRaiseHand {
  0%   { transform: translateY(0) rotate(0deg); }
  10%  { transform: translateY(-8px) rotate(-2deg); }
  20%  { transform: translateY(-6px) rotate(2deg); }
  30%  { transform: translateY(-4px) rotate(0deg); }
  40%  { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.bubble-raise {
  animation: bubbleRaiseHand 1.4s ease-in-out;
}

/* ✅ CHAT INPUT MUSÍ BÝT POUŽITELNÝ */
#chat-input,
#chat-input * {
  user-select: text !important;
  -webkit-user-select: text !important;
  -ms-user-select: text !important;

  pointer-events: auto !important;
  caret-color: auto !important;
}

@media (max-width: 768px){

  #eata-bubble{
    width: 56px;
    height: 56px;

    font-size: 13px;        /* 👈 zmenšení textu */
    display: flex;          /* 👈 přesné centrování */
    align-items: center;
    justify-content: center;

    line-height: 1;         /* 👈 zabrání přetoku */
  }

/* =========================================
   🌾 EATA – MOBILE FARM FIX
========================================= */

@media (max-width: 768px){

 .food{
  position:absolute;
  width: clamp(90px, 22vw, 200px);
  height: clamp(90px, 22vw, 200px);
}

  /* rozumnější rozložení pro úzký displej */

  .f1{ top:50%; left:2%; }   /* rajče */
  .f2{ bottom:10%; right:6%; } /* špagety */
  .f3{ top:10%; right:4%; }   /* květák */
  .f4{ top:25%; left:40%; }   /* česnek */
  .f5{ top:10%; left:5%; }   /* mrkev */

}

.food-inner{
  width:100%;
  height:100%;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  animation: floatFood 24s ease-in-out infinite;
}

/* =========================================
   EATA – MOBILE WIDTH ALIGN FIX
========================================= */

@media (max-width: 768px){

  .lang-switcher{
    display: block !important;   /* ❗ zruší flex centrování */
    width: 100% !important;
  }

  .lang-select{
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
  }

}

/* =========================================
   EATA – LANGUAGE BUTTON STRONG STYLE
========================================= */

.lang-select{
  font-weight: 700 !important;      /* silnější než 600 */
  font-size: 0.95rem !important;    /* sjednotit s tlačítky */
  letter-spacing: 0.02em;           /* lehce přidá “sílu” */
  line-height: 1.2 !important;

  display: flex !important;
  align-items: center;
  justify-content: center;
}