.cookie-consent {
  width: 300px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: rgba(66, 50, 93, 0.9);
  border-radius: 10px;
  padding: 10px 20px;
  z-index: 5000;
  display: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 500px) {
  .cookie-consent {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
}
.cookie-consent__text {
  line-height: 1.2;
  font-size: 14px;
  color: #fff;
  margin-bottom: 14px;
}
.cookie-consent__button {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 4px;
  padding: 8px;
  line-height: 1;
  font-size: 14px;
  background: rgba(255,255,255,0.8);
  margin-bottom: 5px;
  cursor: pointer;
  transition: background 0.2s;
  color: #362b4b;
}
.cookie-consent__button:hover {
  background: rgba(255,255,255,0.9);
  transition: background 0.2s;
}

.cookie-consent__link {
  width: 100%;
  margin: 0;
  text-align: center;
}
.cookie-consent__link a {
  font-size: 14px;
  line-height: 1;
  color: #fff;
  opacity: 0.7;
}
