.bh-cookie {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 460px;
  margin: 0 auto;
  background: #1A1108;
  color: #F5EFE3;
  border: 1px solid rgba(245, 239, 227, 0.1);
  border-radius: 10px;
  padding: 18px 22px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  z-index: 9998;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.bh-cookie.bh-cookie-show { transform: translateY(0); }

.bh-cookie p {
  margin: 0 0 14px;
  color: rgba(245, 239, 227, 0.85);
}
.bh-cookie a {
  color: #E8A487;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bh-cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bh-cookie button {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}
.bh-cookie-accept {
  background: #C4542E;
  color: #fff;
}
.bh-cookie-accept:hover { background: #A8421F; }
.bh-cookie-decline {
  background: transparent;
  color: rgba(245, 239, 227, 0.7);
  border-color: rgba(245, 239, 227, 0.18);
}
.bh-cookie-decline:hover {
  color: #F5EFE3;
  border-color: rgba(245, 239, 227, 0.4);
}

@media (max-width: 480px) {
  .bh-cookie { left: 8px; right: 8px; bottom: 8px; padding: 14px 16px; }
}
