.cookie-consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  padding: 18px 24px;
  color: #fffaf1;
  background: #17362f;
  border-top: 1px solid rgba(185, 145, 85, 0.6);
  box-shadow: 0 -12px 36px rgba(29, 26, 23, 0.28);
  font-family: Arial, Helvetica, sans-serif;
}

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

.cookie-consent__copy h2 {
  margin: 0 0 6px;
  color: #fffaf1;
  font: 600 1.35rem/1.25 Georgia, "Times New Roman", serif;
}

.cookie-consent__copy p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
}

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

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

.cookie-consent__button {
  min-width: 118px;
  padding: 12px 18px;
  border: 1px solid #b99155;
  border-radius: 3px;
  color: #fffaf1;
  background: transparent;
  cursor: pointer;
  font: 700 0.88rem/1 Arial, Helvetica, sans-serif;
}

.cookie-consent__button--primary {
  color: #1d1a17;
  background: #d8b77c;
}

.cookie-consent__button:hover {
  background: rgba(216, 183, 124, 0.14);
}

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

.cookie-consent__button:focus-visible,
.cookie-consent__copy a:focus-visible {
  outline: 3px solid #fffaf1;
  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;
  }
}
