/* Panel de consentimiento de cookies */
.cookie-consent{
  position:fixed;
  inset:0;
  z-index:30000;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.52);
  padding:20px;
  overflow-y:auto;
  box-sizing:border-box;
}
.cookie-consent.is-visible{display:flex}
.cookie-card{
  position:relative;
  width:min(760px,100%);
  max-height:calc(100vh - 40px);
  overflow-y:auto;
  background:#fff;
  border-radius:12px;
  box-shadow:0 18px 60px rgba(0,0,0,.35);
  padding:24px;
  color:#333;
  box-sizing:border-box;
}
.cookie-card h2{font-size:21px;margin:0 0 9px;color:#222}
.cookie-card p{font-size:14px;line-height:1.55;margin:0 0 17px}
.cookie-card a{color:#947025;font-weight:700;text-decoration:underline}
.cookie-actions{display:flex;gap:10px;flex-wrap:wrap;position:relative;z-index:1}
.cookie-btn{min-height:43px;padding:0 18px;border-radius:5px;border:1px solid #cfcfcf;background:#fff;color:#333;font-weight:700;cursor:pointer}
.cookie-btn-primary{background:#deb666;border-color:#deb666;color:#fff}
.cookie-btn-primary:hover{background:#c89d49}
.cookie-preferences{display:none;margin:15px 0 18px;border-top:1px solid #eee;padding-top:12px}
.cookie-preferences.is-open{display:block}
.cookie-option{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:10px 0;border-bottom:1px solid #f0f0f0}
.cookie-option strong{display:block}
.cookie-option small{display:block;color:#777;margin-top:2px}
.cookie-switch{width:46px;height:25px;accent-color:#deb666}
.cookie-settings-link{position:fixed;left:12px;bottom:104px;z-index:13000;border:1px solid #ddd;background:#fff;border-radius:999px;padding:7px 12px;font-size:12px;box-shadow:0 3px 12px rgba(0,0,0,.12);cursor:pointer}
@media(max-width:767px){
  .cookie-consent{padding:10px;align-items:center}
  .cookie-card{padding:20px 17px;max-height:calc(100vh - 20px);border-radius:12px}
  .cookie-actions{display:grid;grid-template-columns:1fr}
  .cookie-btn{width:100%}
  .cookie-settings-link{bottom:72px}
}
@media(max-height:620px){
  .cookie-consent{align-items:flex-start;padding-top:10px;padding-bottom:10px}
  .cookie-card{max-height:calc(100vh - 20px)}
}
