/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  border-top: 1px solid var(--gray-200);
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}

.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .cookie-banner__content {
    flex-direction: row;
  }
}

.cookie-banner__text {
  color: var(--gray-700);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.cookie-banner__link {
  color: var(--primary-600);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-banner__link:hover {
  color: var(--primary-700);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .cookie-banner__actions {
    width: 100%;
  }
  
  .cookie-banner__actions .btn {
    flex: 1;
  }
}

