.cookie-notice {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 60;
  border: 0;
  color: #0f172a;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice-card {
  overflow: hidden;
  border: 1px solid #e7e5e4;
  border-radius: 1rem;
  background: #fbfaf7;
  color: #1c1917;
  box-shadow: 0 24px 60px -24px rgba(28, 25, 23, 0.38), 0 0 0 1px rgba(28, 25, 23, 0.05);
}

.cookie-notice-content {
  position: relative;
  padding: 1.25rem;
}

.cookie-notice-glow {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8rem;
  background: linear-gradient(to top, rgba(238, 242, 255, 0.8), transparent);
  pointer-events: none;
}

.cookie-notice-image {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  width: 3.5rem;
  height: auto;
  border: 0;
  transform: rotate(6deg);
  user-select: none;
  pointer-events: none;
}

.cookie-notice-copy {
  position: relative;
  z-index: 2;
}

.cookie-notice h2 {
  margin: 0;
  border: 0;
  padding-right: 3.5rem;
  color: #1c1917;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.cookie-notice p {
  margin: 0.5rem 0 0;
  border: 0;
  color: #57534e;
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.cookie-notice p a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: #d6d3d1;
  text-underline-offset: 0.25rem;
  transition: color 150ms ease;
}

.cookie-notice p a:hover {
  color: #1c1917;
}

.cookie-notice p a:focus-visible {
  outline: 2px solid #4f46e5;
  outline-offset: 2px;
}

.cookie-notice-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.cookie-notice-actions button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0 1rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cookie-notice-accept {
  border: 1px solid #4f46e5;
  background: #4f46e5;
  color: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.cookie-notice-accept:hover {
  border-color: #6366f1;
  background: #6366f1;
  box-shadow: 0 4px 8px rgba(79, 70, 229, 0.18);
}

.cookie-notice-decline {
  border: 1px solid #d6d3d1;
  background: #fafaf9;
  color: #1c1917;
}

.cookie-notice-decline:hover {
  border-color: #a8a29e;
  background: #f5f5f4;
}

.cookie-notice-actions button:active {
  transform: scale(0.98);
}

.cookie-notice-actions button:focus-visible {
  outline: 2px solid #4f46e5;
  outline-offset: 2px;
}

.cookie-notice[data-cookie-notice-state="entering"] {
  opacity: 0;
  transform: translate3d(0, 1.125rem, 0) scale(0.98);
}

.cookie-notice[data-cookie-notice-state="visible"] {
  animation: cookie-notice-enter 480ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes cookie-notice-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 1.125rem, 0) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (min-width: 640px) {
  .cookie-notice {
    right: 1.25rem;
    bottom: 1.25rem;
    left: auto;
    width: 27.5rem;
  }

  .cookie-notice-content {
    padding: 1.5rem;
  }

  .cookie-notice-image {
    top: 6rem;
    right: 1.25rem;
    width: 4rem;
  }

  .cookie-notice h2 {
    padding-right: 0;
    white-space: nowrap;
  }

  .cookie-notice p {
    padding-right: 4rem;
  }

  .cookie-notice-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-notice[data-cookie-notice-state] {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
