/* cookies.css — banner de consentimiento (escritorio y móvil) */
#cookie-consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 100000; display: none; }
#cookie-consent.open { display: block; }
#cookie-consent .cc-panel {
  max-width: 760px; margin: 0 auto;
  background: #1a1a1a; color: #e9e9e9;
  border-top: 3px solid #FFD400;
  box-shadow: 0 -8px 30px rgba(0,0,0,.55);
  max-height: 82vh; overflow-y: auto;
  padding: 18px 20px 16px;
  font-family: Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.5;
  -webkit-overflow-scrolling: touch;
}
#cookie-consent .cc-intro { margin: 0 0 12px; color: #cfcfcf; }
#cookie-consent .cc-intro a { color: #FFD400; text-decoration: none; border-bottom: 1px solid rgba(255,212,0,.5); }
#cookie-consent .cc-cats { list-style: none; margin: 0; padding: 0; }
#cookie-consent .cc-cat { border-top: 1px solid #333; padding: 9px 0; }
#cookie-consent .cc-cat-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
#cookie-consent .cc-cat-toggle {
  flex: 1 1 auto; display: flex; align-items: center; gap: 9px;
  background: none; border: 0; padding: 4px 0; margin: 0; cursor: pointer;
  font: inherit; color: inherit; text-align: left;
}
#cookie-consent .cc-cat-name { font-weight: bold; color: #fff; font-size: 15px; }
#cookie-consent .cc-chevron {
  flex: 0 0 auto; width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 6px solid #FFD400; transition: transform .2s;
}
#cookie-consent .cc-open .cc-chevron { transform: rotate(180deg); }
#cookie-consent .cc-always { font-size: 12px; color: #8a8a8a; flex: 0 0 auto; }
#cookie-consent .cc-cat-desc { margin: 4px 0 2px 14px; color: #aeaeae; font-size: 13px; }
#cookie-consent .cc-cat-desc[hidden] { display: none; }
#cookie-consent .cc-cat input[type=checkbox] { width: 20px; height: 20px; accent-color: #FFD400; flex: 0 0 auto; cursor: pointer; }
#cookie-consent .cc-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; margin-top: 16px; }
#cookie-consent .cc-btn {
  font-family: inherit; font-size: 14px; padding: 10px 18px; border-radius: 4px;
  cursor: pointer; border: 1px solid #555; background: transparent; color: #fff;
  transition: border-color .2s, background .2s;
}
#cookie-consent .cc-btn:hover { border-color: #FFD400; }
#cookie-consent .cc-btn.cc-accept { background: #FFD400; color: #161616; border-color: #FFD400; font-weight: bold; }
#cookie-consent .cc-btn.cc-accept:hover { background: #ffe14d; }
@media (max-width: 600px) {
  #cookie-consent .cc-panel { max-height: 88vh; padding: 16px 14px; }
  #cookie-consent .cc-actions { justify-content: stretch; }
  #cookie-consent .cc-btn { flex: 1 1 auto; }
}
