.cto-cookie-notice {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
  width: min(560px, calc(100vw - 32px));
  z-index: 2147482500;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #172033;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.16);
  border-radius: 20px;
  padding: 16px 16px 16px 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
}
.cto-cookie-notice.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cto-cookie-notice__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}
.cto-cookie-notice__title {
  display: block;
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.25;
  color: #0f172a;
}
.cto-cookie-notice__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #475569;
}
.cto-cookie-notice__text a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.cto-cookie-notice__text a:hover {
  text-decoration: underline;
}
.cto-cookie-notice__button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  padding: 12px 18px;
  min-height: 42px;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.cto-cookie-notice__button:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.28);
}
.cto-cookie-notice__button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 3px;
}
@media (max-width: 560px) {
  .cto-cookie-notice {
    left: 12px;
    right: 12px;
    bottom: calc(72px + env(safe-area-inset-bottom));
    width: auto;
    padding: 14px;
    border-radius: 18px;
  }
  .cto-cookie-notice__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cto-cookie-notice__button {
    width: 100%;
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cto-cookie-notice,
  .cto-cookie-notice__button {
    transition: none;
  }
}
