.ve-cookies[hidden] { display: none !important; }
.ve-cookies {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  background: rgba(15, 32, 40, .94);
  color: #f4efe6;
  border-top: 1px solid rgba(196, 165, 116, .45);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, .28);
}
.ve-cookies__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.ve-cookies p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.5;
}
.ve-cookies a {
  color: #c4a574;
  font-weight: 600;
}
.ve-cookies__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.ve-cookies__btn {
  border: 0;
  border-radius: 999px;
  background: #c4a574;
  color: #14242c;
  font-weight: 700;
  padding: .65rem 1.15rem;
  cursor: pointer;
  font-size: .95rem;
}
.ve-cookies__btn--ghost {
  background: transparent;
  color: #f4efe6;
  border: 1px solid rgba(244, 239, 230, .4);
}
.ve-cookies__btn:hover { filter: brightness(1.05); }
@media (max-width: 720px) {
  .ve-cookies__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .ve-cookies__actions { justify-content: flex-end; }
}
