/* =========================================================
   Unlimited Beauty – modernější sekce newsletteru (patička)
   Vlož do: Vzhled a obsah → Editor kódu → vlastní CSS.
   Pouze styl – strukturu ani třídy nemění.
   Barvy textu dědí z patičky (funguje na světlé i tmavé).
   ========================================================= */
.footer-newsletter { max-width: 620px; }

.footer-newsletter h2 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 14px;
  color: inherit;
}

/* honeypot a skryté prvky vždy schované */
.footer-newsletter .no-display { display: none !important; }

/* formulář: e-mail + tlačítko na jednom řádku, souhlas pod tím */
.footer-newsletter .subscribe-form fieldset {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border: 0;
  margin: 0;
  padding: 0;
}
.footer-newsletter .subscribe-form br { display: none; }

.footer-newsletter fieldset > .validator-msg-holder { order: 1; flex: 1 1 240px; min-width: 0; }
.footer-newsletter fieldset > button { order: 2; }
.footer-newsletter fieldset > div:not(.validator-msg-holder) { order: 3; flex: 0 0 100%; margin-top: 10px; }

.footer-newsletter .subscribe-form fieldset { align-items: stretch; }

.footer-newsletter .subscribe-form fieldset { align-items: center; }

.footer-newsletter .form-control {
  width: 100%;
  height: 52px !important;
  min-height: 0 !important;
  padding: 0 16px !important;
  font-size: 14px;
  color: #26211f;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .18);
  border-right: 0;
  border-radius: 0;
  box-sizing: border-box !important;
  outline: none;
  transition: border-color .2s ease;
}
.footer-newsletter .form-control:focus { border-color: #b76e79; }

.footer-newsletter .btn-arrow-right {
  order: 2;
  flex: 0 0 auto;
  height: 52px !important;
  min-height: 0 !important;
  padding: 0 22px !important;
  border: 0;
  border-radius: 0;
  box-sizing: border-box !important;
  cursor: pointer;
  background: #b76e79;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1 !important;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s ease;
}
.footer-newsletter .btn-arrow-right:hover { background: #9f5a66; }
/* zobraz text „Přihlásit se" korektně + jedna šipka za textem */
.footer-newsletter .btn-arrow-right::before { content: none; }
.footer-newsletter .btn-arrow-right::after { content: "\2192"; font-size: 16px; }
.footer-newsletter .btn-arrow-right .sr-only {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  clip: auto;
  overflow: visible;
  white-space: nowrap;
  font: inherit;
  color: inherit;
  border: 0;
}

.footer-newsletter .consents label {
  font-size: 12px;
  line-height: 1.45;
  color: inherit;
  opacity: .72;
}
.footer-newsletter .consents a { color: #b76e79; text-decoration: underline; }

@media (max-width: 560px) {
  .footer-newsletter h2 { font-size: 17px; }
  .footer-newsletter .form-control { height: 48px; }
  .footer-newsletter .btn-arrow-right { width: 52px; height: 48px; }
}
