.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 960px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  padding: 16px 20px;
  z-index: 9999;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  color: #374151;
}

.cookie-content a {
  color: #2563eb;
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

.cookie-btn.primary {
  background: #2563eb;
  color: #ffffff;
}

.cookie-btn.primary:hover {
  background: #1e40af;
}

.cookie-btn.secondary {
  background: #f3f4f6;
  color: #374151;
}

.cookie-btn.secondary:hover {
  background: #e5e7eb;
}

/* Mobile */
@media (max-width: 640px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
