.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  background: rgba(13, 15, 12, .96);
  border: 1px solid rgba(201, 169, 110, .45);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
  color: #f9f4ee;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 169, 110, .5);
  color: #c9a96e;
  font-size: 1.35rem;
}

.cookie-consent__content strong {
  display: block;
  margin-bottom: 6px;
  color: #c9a96e;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
}

.cookie-consent__content p {
  margin: 0;
  color: rgba(249, 244, 238, .78);
  font-size: .9rem;
  line-height: 1.55;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-consent__button {
  border: 1px solid rgba(201, 169, 110, .65);
  background: transparent;
  color: #f9f4ee;
  cursor: pointer;
  padding: 12px 16px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.cookie-consent__button--accept {
  background: #c9a96e;
  border-color: #c9a96e;
  color: #0d0f0c;
}

.cookie-consent__button:hover {
  background: #c9a96e;
  border-color: #c9a96e;
  color: #0d0f0c;
}

@media (max-width: 760px) {
  .cookie-consent {
    grid-template-columns: 1fr;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px;
  }

  .cookie-consent__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__button {
    width: 100%;
  }
}
