/* Barra fija aviso de cookies */
#ps-cookie-consent-bar {
  position: fixed;
  z-index: 99999;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, rgba(45, 42, 50, 0.97) 0%, #1f1d24 100%);
  color: #f3f0f5;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
  font-size: 0.88rem;
  line-height: 1.45;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(228, 93, 134, 0.25);
}
#ps-cookie-consent-bar.is-visible {
  display: flex;
}
#ps-cookie-consent-bar .ps-cc-text {
  flex: 1 1 280px;
  max-width: 720px;
  margin: 0;
}
#ps-cookie-consent-bar .ps-cc-text a {
  color: #f8b4cb;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#ps-cookie-consent-bar .ps-cc-text a:hover {
  color: #fff;
}
#ps-cookie-consent-bar .ps-cc-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
#ps-cookie-consent-bar .ps-cc-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e45d86, #d84a75);
  color: #fff;
  box-shadow: 0 4px 14px rgba(228, 93, 134, 0.35);
}
#ps-cookie-consent-bar .ps-cc-btn:hover {
  filter: brightness(1.05);
}
#ps-cookie-consent-bar .ps-cc-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  text-decoration: none;
  white-space: nowrap;
}
#ps-cookie-consent-bar .ps-cc-link:hover {
  text-decoration: underline;
}
@media (max-width: 520px) {
  #ps-cookie-consent-bar {
    padding: 0.75rem;
    flex-direction: column;
    align-items: stretch;
  }
  #ps-cookie-consent-bar .ps-cc-actions {
    justify-content: stretch;
  }
  #ps-cookie-consent-bar .ps-cc-btn {
    width: 100%;
    text-align: center;
  }
}
