/* Age gate + cookie banner (lightweight) */
.cp-age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(40, 12, 30, 0.72);
  backdrop-filter: blur(8px);
}
.cp-age-gate__card {
  max-width: 420px;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.cp-age-gate__card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: #2a1224;
}
.cp-age-gate__card p {
  margin: 0 0 18px;
  color: #666;
  line-height: 1.5;
  font-weight: 600;
}
.cp-age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.cp-age-gate__actions button,
.cp-age-gate__actions a {
  border: 0;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cp-age-enter {
  background: #ec195d;
  color: #fff;
}
.cp-age-leave {
  background: #eee;
  color: #444;
}

.cp-cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9990;
  background: #1a1220;
  color: #f5f0f3;
  border-radius: 14px;
  padding: 16px 18px;
  display: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  max-width: 920px;
  margin: 0 auto;
}
.cp-cookie-banner.is-visible { display: block; }
.cp-cookie-banner p {
  margin: 0 0 12px;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 600;
}
.cp-cookie-banner a { color: #ffb3cf; }
.cp-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cp-cookie-banner__actions button {
  border: 0;
  border-radius: 9px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}
.cp-cookie-accept { background: #ec195d; color: #fff; }
.cp-cookie-reject { background: #3a2a38; color: #fff; }
@media (max-width: 640px) {
  .cp-cookie-banner { left: 8px; right: 8px; bottom: 8px; }
}
