/*
 * Cookie consent banner.
 * Compiled from css/cookie-consent.scss — edit the SCSS source and recompile,
 * or keep this file in sync by hand. Brand values mirror
 * src/sass/theme/_child_theme_variables.scss and _defaults.scss.
 */
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 1180px;
  font-family: "Onest", "Inter", sans-serif;
  transform: translate(-50%, calc(100% + 32px));
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
  will-change: transform, opacity;
}
.cookie-consent.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.cookie-consent.is-hiding {
  transform: translate(-50%, calc(100% + 32px));
  opacity: 0;
}
.cookie-consent__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 32px;
  background: #fff;
  border: 1px solid rgba(0, 203, 191, 0.25);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(32, 32, 32, 0.14);
}
.cookie-consent__text {
  margin: 0;
  flex: 1 1 auto;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: #20202099;
}
.cookie-consent__link {
  color: #2f6cc9;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}
.cookie-consent__link:hover, .cookie-consent__link:focus {
  color: #00cbbf;
}
.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}
.cookie-consent__btn {
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 13px 34px;
  border-radius: 52px;
  cursor: pointer;
  white-space: nowrap;
  transition: all ease 0.3s;
  outline: 0;
}
.cookie-consent__btn--accept {
  color: #fff;
  border: 1px solid transparent;
  background: linear-gradient(to right bottom, rgb(0, 203, 191), #2f6cc9);
}
.cookie-consent__btn--accept:hover, .cookie-consent__btn--accept:focus-visible {
  background: #202020;
}
.cookie-consent__btn--ghost {
  color: #202020;
  background: transparent;
  border: 1px solid rgba(32, 32, 32, 0.25);
}
.cookie-consent__btn--ghost:hover, .cookie-consent__btn--ghost:focus-visible {
  color: #fff;
  background: #202020;
  border-color: #202020;
}
.cookie-consent__btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 203, 191, 0.35);
}

@media (max-width: 991px) {
  .cookie-consent__inner {
    gap: 18px;
    padding: 20px 24px;
  }
}
@media (max-width: 767px) {
  .cookie-consent {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    transform: translate(0, calc(100% + 32px));
  }
  .cookie-consent.is-visible {
    transform: translate(0, 0);
  }
  .cookie-consent.is-hiding {
    transform: translate(0, calc(100% + 32px));
  }
  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 22px 20px calc(22px + env(safe-area-inset-bottom, 0px));
    border-radius: 20px 20px 0 0;
  }
  .cookie-consent__text {
    font-size: 14px;
    text-align: center;
  }
  .cookie-consent__actions {
    width: 100%;
  }
  .cookie-consent__btn {
    flex: 1 1 0;
    padding: 14px 16px;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-consent {
    transition: opacity 0.2s ease;
  }
}
