.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  width: min(420px, calc(100vw - 28px));
  padding: 18px;
  border-radius: 20px;
  background: rgba(23, 49, 77, 0.96);
  color: #f7f0e7;
  box-shadow: 0 24px 60px rgba(15, 18, 28, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.cookie-banner-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 240, 231, 0.78);
}

.cookie-banner p {
  margin: 0 0 14px;
  color: rgba(247, 240, 231, 0.92);
  line-height: 1.6;
  font-size: 14px;
}

.cookie-banner a {
  color: #fff7f1;
  text-decoration: underline;
}

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

.cookie-banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff7f1;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-banner-button.primary {
  background: linear-gradient(135deg, #17314d, #2a746d);
  border-color: transparent;
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }
}
