/* RoyalSpain RP · Cookie consent banner (RGPD / Consent Mode v2) */
#rs-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  padding: 16px;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
#rs-cookie-banner.rs-cookie-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
#rs-cookie-banner .rs-cookie-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.97), rgba(20, 18, 14, 0.98));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
}
#rs-cookie-banner p {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
#rs-cookie-banner a {
  color: #d4af37;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#rs-cookie-banner .rs-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#rs-cookie-banner button {
  cursor: pointer;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
#rs-cookie-accept {
  background: linear-gradient(135deg, #d4af37, #b8942a);
  color: #0a0a0a;
}
#rs-cookie-accept:hover { filter: brightness(1.08); }
#rs-cookie-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
#rs-cookie-reject:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
@media (max-width: 600px) {
  #rs-cookie-banner .rs-cookie-actions { width: 100%; }
  #rs-cookie-banner button { flex: 1; text-align: center; }
}
