.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 1000;
  width: min(1180px, calc(100vw - 24px));
  transform: translateX(-50%);
  pointer-events: auto;
  transition: opacity .22s ease, transform .22s ease;
}

.cookies-consent-set .cookie-banner {
  display: none;
}

.cookie-banner__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  background: rgba(17, 20, 23, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.cookie-banner__eyebrow {
  margin: 0 0 8px;
  color: #c98a2e;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-banner__title {
  margin: 0;
  color: #f4f6f8;
  font-size: 18px;
  line-height: 1.2;
}

.cookie-banner__text {
  margin: 10px 0 0;
  color: #a5b0ba;
  font-size: 14px;
  line-height: 1.5;
  max-width: 72ch;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner__button,
.cookie-settings-link {
  appearance: none;
  border: 0;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}

.cookie-banner__button {
  padding: 12px 16px;
  background: #c98a2e;
  color: #111317;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

.cookie-banner__button:hover {
  background: #d89935;
  transform: translateY(-1px);
}

.cookie-banner__button--secondary {
  background: transparent;
  color: #f4f6f8;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cookie-banner__button--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.cookie-banner__link {
  color: #a5b0ba;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.cookie-banner__link:hover {
  color: #f4f6f8;
}

.cookie-settings-link {
  background: transparent;
  color: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-settings-link:hover {
  color: #c98a2e;
}

.cookie-launcher {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 999;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(17, 20, 23, 0.9);
  color: #f4f6f8;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.cookie-launcher:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 138, 46, 0.38);
  color: #c98a2e;
}

.cookie-launcher.is-hidden {
  display: none;
}

@media (max-width: 720px) {
  .cookie-banner {
    bottom: 12px;
    width: calc(100vw - 16px);
  }

  .cookie-banner__panel {
    grid-template-columns: 1fr;
    padding: 18px 16px;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__button,
  .cookie-banner__link {
    width: 100%;
    text-align: center;
  }

  .cookie-launcher {
    left: 12px;
    bottom: 12px;
  }
}
