cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #f0f0f0;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  font-family: Arial, Helvetica, sans-serif;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}

cookie-consent.show {
  transform: translateY(0);
}

cookie-consent.hiding {
  transform: translateY(100%);
  transition: transform 0.3s ease-in;
}

cookie-consent p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1;
}

cookie-consent button {
  background: #d63384;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}

cookie-consent button:hover {
  background: #b02a6b;
}