/* Cookie / consent banner (module ekotaschen_consent) — shop colours, square corners */
.eko-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483000; /* above the Trusted Shops badge */
  padding: 12px 16px;
  background: rgba(16, 87, 43, 0.12);
  font-family: "PT Sans", sans-serif;
}
.eko-consent[hidden] { display: none; }
.eko-consent__box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 22px;
  border-top: 4px solid #09973f;
  background: #fff;
  color: #324148;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
}
.eko-consent__title { margin: 0 0 6px; color: #10572b; font-size: 18px; font-weight: 700; }
.eko-consent__text { margin: 0; font-size: 14px; line-height: 1.5; }
.eko-consent__text a { color: #09973f; text-decoration: underline; }
.eko-consent__settings { margin-top: 12px; border-top: 1px solid #dfe6d6; }
.eko-consent__option { display: flex; align-items: flex-start; gap: 10px; margin: 0; padding: 10px 0; border-bottom: 1px solid #dfe6d6; font-size: 14px; cursor: pointer; }
.eko-consent__option input { margin-top: 4px; accent-color: #09973f; }
.eko-consent__option small { display: block; color: #5f6f64; font-size: 13px; }
.eko-consent__buttons { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 14px; }
.eko-consent__btn {
  min-width: 170px;
  padding: 10px 18px;
  border: 2px solid #09973f;
  border-radius: 0;
  background: #09973f;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.eko-consent__btn:hover { border-color: #10572b; background: #10572b; }
.eko-consent__btn--link { min-width: 0; border-color: transparent; background: none; color: #10572b; text-decoration: underline; }
.eko-consent__btn--link:hover { border-color: transparent; background: none; color: #09973f; }
.eko-consent__btn[hidden] { display: none; }
@media (max-width: 600px) {
  .eko-consent { padding: 0; }
  .eko-consent__box { padding: 14px 16px; }
  .eko-consent__btn { flex: 1 1 100%; }
}
