/* Cookie Banner Styling */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2e424e;
  padding: 1rem;
  z-index: 1000;
  border-top: 2px solid #ffd700;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

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

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

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

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

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

@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;
  }
}
