.cookies-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 20px 0;
  z-index: 9999;
  display: none;
}

.cookies-popup__content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookies-popup a {
  color: var(--color-primary);
  text-decoration: underline;
}

@media (max-width: 700px) {
  .cookies-popup__content {
    flex-direction: column;
    text-align: center;
  }
}
