.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid rgba(195, 176, 117, 0.72);
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.42);
  color: #d6d6da;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
}

.cookie-banner p {
  max-width: 860px;
  margin: 0;
  line-height: 1.65;
}

.cookie-banner strong {
  color: #fff;
}

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

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

.cookie-banner-actions button {
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid #c3b075;
  border-radius: 999px;
  font: 700 13px Poppins, Arial, sans-serif;
  cursor: pointer;
}

.cookie-decline {
  background: transparent;
  color: #fff;
}

.cookie-accept {
  background: linear-gradient(135deg, #ead892, #c3b075);
  color: #080808;
}

.cookie-banner-actions button:focus-visible,
.footer-cookie-settings:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.footer-cookie-settings {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

@media (max-width: 680px) {
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner-actions button {
    padding-inline: 12px;
  }
}
