/* ==========================================================================
   Cookie consent (ported from obchod)
   ========================================================================== */

.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  background: rgba(20, 19, 17, .55);
  backdrop-filter: blur(3px);
}

.consent-modal {
  width: min(100%, 34rem);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2rem);
}
.consent-modal h2 { font-size: var(--fs-h3); text-transform: none; }
.consent-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-end;
  margin-top: 1.25rem;
}

/* Stops the page scrolling behind the modal while a choice is pending. */
body.consent-locked { overflow: hidden; }
