.cookie-consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  padding: 18px 24px;
  color: #fff;
  background: #181818;
  border-top: 1px solid #333;
  box-shadow: 0 -8px 28px rgb(0 0 0 / 50%);
  font-family: 'DM Sans', sans-serif;
}

.cookie-consent__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 28px;
}

.cookie-consent__copy h2 {
  margin: 0 0 4px;
  color: #fff;
  font: 700 22px/1.2 'Barlow Condensed', sans-serif;
}

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

.cookie-consent__copy a {
  color: #fff;
  text-decoration: underline;
}

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

.cookie-consent__button {
  min-width: 120px;
  padding: 11px 18px;
  border: 1px solid #777;
  border-radius: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font: 700 15px/1 'DM Sans', sans-serif;
}

.cookie-consent__button--primary {
  border-color: #d91b38;
  background: #d91b38;
}

.cookie-consent__button:hover {
  border-color: #fff;
}

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

.cookie-consent__button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

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

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

  .cookie-consent__actions {
    width: 100%;
  }

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