.cookie-consent {
  position: fixed;
  z-index: 2147483000;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: min(440px, calc(100vw - 32px));
  gap: 18px;
  padding: 20px;
  border: 1px solid #d8d8d3;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.13);
  color: #18181b;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

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

.cookie-consent-copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.98rem;
  letter-spacing: -0.015em;
}

.cookie-consent-copy p {
  margin: 0;
  color: #626269;
  font-size: 0.86rem;
}

.cookie-consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-consent-actions button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #d8d8d3;
  border-radius: 8px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 650;
  cursor: pointer;
}

.cookie-consent-secondary { background: #fff; color: #27272a; }
.cookie-consent-primary { border-color: #18181b !important; background: #18181b; color: #fff; }
.cookie-consent-actions button:hover { filter: brightness(0.96); }
.cookie-consent-actions button:focus-visible,
.cookie-settings-button:focus-visible { outline: 2px solid #18181b; outline-offset: 2px; }

.cookie-settings-button {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  padding: 0 6px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted, #71717a);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.cookie-settings-button::before {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  background-color: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.6' d='M3.25 9.25A5.75 5.75 0 0 1 9 3.5h2a5.75 5.75 0 0 1 0 11.5H8l-3.75 2 .8-3.2a5.73 5.73 0 0 1-1.8-4.55Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.6' d='M3.25 9.25A5.75 5.75 0 0 1 9 3.5h2a5.75 5.75 0 0 1 0 11.5H8l-3.75 2 .8-3.2a5.73 5.73 0 0 1-1.8-4.55Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cookie-settings-button:hover { background: rgba(24, 24, 27, 0.045); color: var(--text-strong, #18181b); }

@media (max-width: 560px) {
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    padding: 17px;
  }

  .cookie-consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent * { transition: none !important; }
}
