/* COOKIES */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--background-dark);
  color: var(--white);
  padding: 36px 30px;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.3);
  font-family: 'Inter', sans-serif;
  display: none;
  z-index: 9999;

  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
  color: var(--white);
  opacity: 0.9;
}

.cookie-banner p a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner p a:hover {
  color: var(--secondary);
}

.cookie-banner button {
  padding: 8px 20px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.1s ease;
  flex-shrink: 0;
}

.cookie-banner button:hover {
  background-color: var(--white);
  transform: scale(1.03);
  color: var(--primary);
}

/* Mobile */
@media (max-width: 580px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .cookie-banner button {
    width: 100%;
    text-align: center;
  }
}