model-viewer {
  width: 100%;
  height: 350px;
}
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1rem;
  display: none;
  z-index: 9999;
  justify-content: space-between;
}
.cookie-consent.active {
  display: flex;
  flex-direction: column;
}
.cookie-consent p {
  margin: 0;
  padding-right: 1rem;
}
.cookie-consent .buttons {
  display: flex;
  gap: 1rem;
}
.cookie-consent button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-consent .accept {
  background: #38474f;
  color: white;
}
.cookie-consent .accept:hover {
  background: #38474f;
}
.cookie-consent .decline {
  background: #e2211e;
  color: white;
}
.cookie-consent .decline:hover {
  background: #e2211e;
}