/* Cookie consent banner - v1.0.10 */
.sef-cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2147483000;
  display: none;
  pointer-events: none;
}

.sef-cookie-consent.is-visible {
  display: block;
}

.sef-cookie-consent__inner {
  width: min(100%, 680px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  background: rgba(15, 6, 18, 0.94);
  color: #FFFFFF;
  box-shadow: 0 28px 90px rgba(0,0,0,0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
}

.sef-cookie-consent__title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.sef-cookie-consent__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}

.sef-cookie-consent__text a {
  color: #EC2DA0;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(236,45,160,0.45);
}

.sef-cookie-consent__text a:hover {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}

.sef-cookie-consent__button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 14px 28px;
  background: #EC2DA0;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(236,45,160,0.28);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.sef-cookie-consent__button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 18px 42px rgba(236,45,160,0.36);
}

.sef-cookie-consent__button:focus-visible,
.sef-cookie-consent__text a:focus-visible {
  outline: 3px solid rgba(255,255,255,0.75);
  outline-offset: 3px;
}

html.light-mode .sef-cookie-consent__inner {
  background: rgba(255,255,255,0.96);
  color: #121211;
  border-color: rgba(104,54,122,0.18);
  box-shadow: 0 24px 80px rgba(36,20,40,0.18);
}

html.light-mode .sef-cookie-consent__title {
  color: #121211;
}

html.light-mode .sef-cookie-consent__text {
  color: rgba(18,18,17,0.72);
}

html.light-mode .sef-cookie-consent__text a {
  color: #68367A;
  border-bottom-color: rgba(104,54,122,0.35);
}

html.light-mode .sef-cookie-consent__text a:hover {
  color: #EC2DA0;
  border-bottom-color: #EC2DA0;
}

@media (max-width: 760px) {
  .sef-cookie-consent {
    left: 14px;
    right: 14px;
    bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .sef-cookie-consent__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
  }

  .sef-cookie-consent__title {
    font-size: 17px;
  }

  .sef-cookie-consent__text {
    font-size: 13.5px;
  }

  .sef-cookie-consent__button {
    width: 100%;
    min-height: 48px;
  }
}
