/* GDPR sütinyilatkozat – alul rögzített sáv */
.tmf-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10002;
  display: none;
  padding: 16px 0;
  background: linear-gradient(90deg, #193124 0%, #1f4b33 100%);
  color: #f2f5ea;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
}

html.tmf-cookie-consent-needed .tmf-cookie-banner {
  display: block;
}

.tmf-cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.tmf-cookie-banner__text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 14px;
  line-height: 1.55;
  color: #f2f5ea;
}

.tmf-cookie-banner__link {
  color: #eebb07;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.tmf-cookie-banner__link:hover,
.tmf-cookie-banner__link:focus {
  color: #ffd54d;
}

.tmf-cookie-banner__btn {
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #193124;
  background: #eebb07;
  transition: background 0.15s ease, transform 0.1s ease;
}

.tmf-cookie-banner__btn:hover,
.tmf-cookie-banner__btn:focus {
  background: #ffd54d;
  outline: 2px solid #f2f5ea;
  outline-offset: 2px;
}

.tmf-cookie-banner__btn:active {
  transform: scale(0.98);
}

@media (max-width: 600px) {
  .tmf-cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .tmf-cookie-banner__btn {
    width: 100%;
  }
}
