/* ==========================================================================
   NEWSLETTER - vlastní blok nad patičkou napojený na Ecomail
   Vkládá jej newsletter.js na všech stránkách před #footer.
   Nahrazuje nativní Shoptet newsletter (ten je skrytý níže).
   ========================================================================== */

/* Skrytí nativního Shoptet newsletteru (nahrazen tímto blokem) */
.footer-newsletter-full-width {
  display: none !important;
}

.tm-nl {
  position: relative;
  display: flex;
  align-items: stretch;
  background: #FBEEEC;
  overflow: visible;
}

/* Levý sloupec - fotka */
.tm-nl__media {
  flex: 1 1 50%;
  min-height: 460px;
  overflow: hidden;
}
.tm-nl__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Kulatý odznak s ikonou obálky (na švu mezi fotkou a obsahem) */
.tm-nl__badge {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(74, 44, 42, .15);
  z-index: 2;
}
.tm-nl__badge img {
  width: 46px;
  height: 46px;
}

/* Pravý sloupec - obsah */
.tm-nl__content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 6%;
  box-sizing: border-box;
}
.tm-nl__title {
  font-family: "Canela Web", serif;
  font-weight: 400;
  color: #4A2C2A;
  font-size: 40px;
  line-height: 1.12;
  margin: 0 0 24px;
}
.tm-nl__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.tm-nl__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #4A2C2A;
  font-size: 17px;
}
.tm-nl__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A5C50' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Formulář - bílá "pilulka" s inputem a tlačítkem */
.tm-nl__form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 7px 7px 7px 24px;
  max-width: 520px;
  box-shadow: 0 6px 20px rgba(74, 44, 42, .08);
}
.tm-nl__input {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #4A2C2A;
  padding: 12px 0;
}
.tm-nl__input::placeholder {
  color: #9A857C;
}
.tm-nl__btn {
  flex: 0 0 auto;
  border: none;
  cursor: pointer;
  background: #7A5C50;
  color: #fff;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.tm-nl__btn:hover,
.tm-nl__btn:focus {
  background: #EED8BD;
  color: #7A5C50;
}
.tm-nl__btn[disabled] {
  opacity: .6;
  cursor: default;
}

/* Souhlas */
.tm-nl__consent {
  margin: 16px 0 0;
  font-size: 13px;
  color: #9A857C;
}
.tm-nl__consent a {
  color: #7A5C50;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Poděkování po odeslání */
.tm-nl__done {
  margin: 8px 0 0;
  font-size: 17px;
  color: #2e7d5c;
  font-weight: 600;
}

/* ---- Mobil ---- */
@media (max-width: 900px) {
  .tm-nl {
    flex-direction: column;
  }
  .tm-nl__media {
    flex: none;
    width: 100%;
    min-height: 240px;
    border-radius: 0;
  }
  .tm-nl__content {
    flex: none;
    width: 100%;
    max-width: none;
    padding: 60px 24px 44px;
  }
  .tm-nl__badge {
    top: 188px;
  }
  .tm-nl__title {
    font-size: 30px;
  }
}
