#ph-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #000;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}
#ph-cookie-banner p {
  margin: 0;
  max-width: 720px;
}
#ph-cookie-banner a {
  color: #000;
  text-decoration: underline;
}
.ph-cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
#ph-cookie-banner button {
  font: inherit;
  cursor: pointer;
  padding: 10px 22px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  letter-spacing: 0.04em;
}
#ph-cookie-banner button#ph-cookie-accept {
  background: #000;
  color: #fff;
}
#ph-cookie-banner button:hover {
  opacity: 0.75;
}
@media (max-width: 600px) {
  #ph-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
