.cookie-consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  padding: 18px 24px;
  color: #f5efe2;
  background: #07111f;
  border-top: 1px solid rgb(201 169 110 / 45%);
  box-shadow: 0 -10px 32px rgb(0 0 0 / 50%);
  font-family: 'DM Sans', sans-serif;
}

.cookie-consent__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 100%);
  margin: 0 auto;
  gap: 28px;
}

.cookie-consent__copy h2 {
  margin: 0 0 5px;
  color: #f5efe2;
  font: 700 21px/1.25 'Libre Baskerville', serif;
}

.cookie-consent__copy p {
  margin: 0;
  color: #b6ad9d;
  font-size: 14px;
  line-height: 1.55;
}

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

.cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-consent__button {
  min-width: 120px;
  padding: 12px 19px;
  border: 1px solid #c9a96e;
  border-radius: 2px;
  color: #f5efe2;
  background: transparent;
  cursor: pointer;
  font: 600 14px/1 'DM Sans', sans-serif;
  letter-spacing: 0.04em;
}

.cookie-consent__button--primary {
  color: #07111f;
  background: #c9a96e;
}

.cookie-consent__button:hover {
  border-color: #e2c58e;
  background: rgb(201 169 110 / 14%);
}

.cookie-consent__button--primary:hover {
  background: #e2c58e;
}

.cookie-consent__button:focus-visible,
.cookie-consent__copy a:focus-visible {
  outline: 3px solid #f5efe2;
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .cookie-consent {
    padding: 16px;
  }

  .cookie-consent__content {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__button {
    flex: 1;
    min-width: 0;
  }
}
