.cookie-banner {
  position: fixed;
  right: 270px;
  bottom: 20px;
  max-width: 380px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  padding: 16px;
  z-index: 10000;
  font-family: sans-serif;
  font-size: 14px;
}
.cookie-banner.accepted {
  display: none;
}
.cookie-banner p {
  margin: 0 0 12px;
  line-height: 1.4;
}
.cookie-banner a {
  color: var(--basic_text_black);
  text-decoration: unset;
  transition: color 0.3s ease;
}
.cookie-banner a:hover {
  color: #eebb63;
  text-decoration: underline;
}
.cookie-banner__buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner__buttons button {
  background-color: var(--basic_text_black);
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}
.cookie-banner__buttons button:hover {
  background-color: #2d2d2d;
  color: #fff;
}
.cookie-banner__buttons a {
  align-self: center;
  color: #999;
  font-size: 14px;
  transition: color 0.3s ease;
}
.cookie-banner__buttons a:hover {
  color: #eebb63;
}

@media (max-width: 768px) {
  .cookie-banner {
    right: 0;
    left: 0;
    bottom: 0;
    max-width: 100%;
    border-radius: 0;
  }
}

/*# sourceMappingURL=style.css.map */
