.cookie-consent {
  position: fixed;
  z-index: 9999;
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 36px);
  left: clamp(16px, 3vw, 36px);
  display: none;
  width: min(760px, calc(100% - clamp(32px, 6vw, 72px)));
  margin-left: auto;
  padding: clamp(22px, 3.5vw, 32px);
  border: 1px solid rgba(244, 241, 232, .24);
  border-radius: 4px;
  background: #14140f;
  box-shadow: 0 18px 60px rgba(20, 20, 15, .28);
  color: #f4f1e8;
  font-family: 'General Sans', system-ui, sans-serif;
}

.cookie-consent[data-visible="true"] { display: block; }

.cookie-consent__eyebrow {
  margin: 0 0 10px;
  color: #e07b1d;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.cookie-consent__title {
  margin: 0;
  color: #f4f1e8;
  font-family: 'Clash Display', 'General Sans', system-ui, sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.cookie-consent__copy {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(244, 241, 232, .76);
  font-size: 15px;
  line-height: 1.6;
}

.cookie-consent__copy a {
  color: inherit;
  text-decoration-color: #e07b1d;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cookie-consent__button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(244, 241, 232, .65);
  border-radius: 3px;
  background: transparent;
  color: #f4f1e8;
  cursor: pointer;
  font: 600 14px/1.2 'General Sans', system-ui, sans-serif;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  border-color: #e07b1d;
  background: #e07b1d;
  color: #14140f;
}

.cookie-consent__button[data-cookie-choice="accepted"] {
  border-color: #e07b1d;
  background: #e07b1d;
  color: #14140f;
}

.cookie-consent__button[data-cookie-choice="accepted"]:hover,
.cookie-consent__button[data-cookie-choice="accepted"]:focus-visible {
  border-color: #f08a2b;
  background: #f08a2b;
}

.cookie-consent__button:focus-visible,
.cookie-settings-link:focus-visible {
  outline: 2px solid #e07b1d;
  outline-offset: 3px;
}

.cookie-settings-link {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-decoration: none;
}

.cookie-settings-link:hover { color: #f4f1e8; }
.cookie-settings-link span { display: inline; }

@media (max-width: 560px) {
  .cookie-consent { width: auto; }
  .cookie-consent__actions { display: grid; grid-template-columns: 1fr; }
  .cookie-consent__button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent__button { transition: none; }
}
