.retona-cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  display: none;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 18px;
  background: rgba(18, 24, 32, .72);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  color: #fff;
  font-family: Montserrat, Arial, sans-serif;
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}

.retona-cookie-banner.is-visible { display: block; }

.retona-cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.retona-cookie-banner__text {
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 1.55;
}

.retona-cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.retona-cookie-banner__button {
  flex: 0 0 auto;
  min-width: 145px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #121820;
  font: 700 14px/1 Montserrat, Arial, sans-serif;
  cursor: pointer;
}

.retona-email-hidden { display: none !important; }

@media (max-width: 768px) {
  .retona-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
    border-radius: 16px;
  }

  .retona-cookie-banner__inner { display: block; }

  .retona-cookie-banner__text { font-size: 13px; }

  .retona-cookie-banner__button {
    width: 100%;
    margin-top: 14px;
  }
}