/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface-elevated);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: var(--space-lg);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.cookie-text {
  flex: 1;
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

.cookie-text strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-base);
}

.cookie-text p {
  margin: 0;
  line-height: 1.5;
}

.cookie-actions {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
  
  .cookie-actions {
    width: 100%;
  }
  
  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
