/* ============================================================
   PROMO BANNER — plovoucí karta (vpravo dole)
   Zobrazí se po 5 s, zavření platí 7 dní (localStorage).
   Z-index: 150 — nad sticky navem (100), pod headerem/drawerem (200+)
   ============================================================ */

.promo-banner {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 340px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .14), 0 2px 10px rgba(0, 0, 0, .07);
  z-index: 150;
  padding: 26px 22px 22px;
  border-top: 4px solid #ea4366;
  /* výchozí stav — skrytý */
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .38s ease, transform .38s ease;
}

.promo-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---- Zavírací tlačítko ---- */
.promo-banner-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px;
  color: #6b6b6b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .18s, color .18s;
  line-height: 1;
}
.promo-banner-close:hover {
  background: #f4f4f4;
  color: #1a1a1a;
}

/* ---- Badge / štítek ---- */
.promo-banner-badge {
  display: inline-block;
  background: #fff3f6;
  color: #ea4366;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---- Ikona / emoji ---- */
.promo-banner-icon {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

/* ---- Nadpis ---- */
.promo-banner-title {
  font-family: var(--font-main, 'Plus Jakarta Sans', system-ui, sans-serif);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 8px;
  line-height: 1.28;
  padding: 0; /* kill Divi heading padding */
}

/* ---- Text ---- */
.promo-banner-text {
  font-size: 13.5px;
  color: #6b6b6b;
  line-height: 1.6;
  margin: 0 0 18px;
}

/* ---- CTA tlačítko ---- */
.promo-banner-cta {
  display: block;
  background: #ea4366;
  color: #fff !important;
  text-align: center;
  font-family: var(--font-main, 'Plus Jakarta Sans', system-ui, sans-serif);
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none !important;
  transition: background .2s, transform .15s;
}
.promo-banner-cta:hover {
  background: #c8334f;
  transform: translateY(-1px);
}
.promo-banner-cta:active {
  transform: translateY(0);
}

/* ---- Mobile — pruhem přes celou šířku dole ---- */
@media (max-width: 480px) {
  .promo-banner {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    border-top-width: 3px;
    padding: 22px 18px 28px; /* extra spodní padding (safe-area / home bar) */
  }
}
