.cookie-banner {
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  padding: 1rem 0;
  background: #2e424e;
  border-top: 2px solid gold;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  max-width: 76rem;
  width: 100%;
  margin: 0 auto;
  gap: 1rem;
}

.cookie-banner__text {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

.cookie-banner__link {
  color: gold;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
}

@media (hover:hover) {
  .cookie-banner__link:hover {
    color: #fff;
  }
}

.cookie-banner__buttons {
  display: flex;
  gap: 0.5rem;
}

.cookie-banner__button {
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  color: #1c2526;
  background: linear-gradient(90deg, gold, #1e90ff);
  transition: all 0.3s ease-in-out;
}

@media (hover:hover) {
  .cookie-banner__button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  }
}

@media (max-width: 767.98px) {
  .cookie-banner {
    padding: 0.5rem;
  }
  .cookie-banner__text {
    font-size: 0.875rem;
  }
  .cookie-banner__button {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
  }
}
