.consent {
  position: relative;
  z-index: 1000;
}

.consent [hidden] {
  display: none !important;
}

.consent__banner {
  position: fixed;
  right: clamp(16px, 3vw, 40px);
  bottom: clamp(16px, 3vw, 40px);
  left: clamp(16px, 3vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 28px;
  color: #f5f1e8;
  background: #0d1830;
  border: 1px solid rgba(185, 150, 91, 0.55);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(3, 10, 24, 0.35);
}

.consent__copy {
  max-width: 720px;
}

.consent__eyebrow {
  margin: 0 0 6px;
  color: #caa86b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.consent__copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.2;
}

.consent__copy p:last-child {
  margin: 8px 0 0;
  color: #d2d8e4;
  font-size: 15px;
  line-height: 1.55;
}

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

.consent__button,
.consent__manage {
  min-height: 46px;
  padding: 10px 18px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  border-radius: 12px;
}

.consent__button--primary {
  color: #0d1830;
  background: #caa86b;
  border: 1px solid #caa86b;
}

.consent__button--secondary {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.consent__manage {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 999;
  min-height: 40px;
  padding: 8px 14px;
  color: #f5f1e8;
  background: #0d1830;
  border: 1px solid rgba(185, 150, 91, 0.65);
  box-shadow: 0 10px 30px rgba(3, 10, 24, 0.25);
}

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

@media (max-width: 720px) {
  .consent__banner {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
  }

  .consent__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .consent__button {
    width: 100%;
  }
}
