#pcm-cookie-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999999;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.pcm-cookie__box{
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 14px;
  padding: 14px;
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content:space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.pcm-cookie__text{
  font-size: 14px;
  line-height: 1.35;
}
.pcm-cookie__text a{ text-decoration: underline; }
.pcm-cookie__btns{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.pcm-cookie__btns button{
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.15);
  background: #f6f6f6;
  cursor:pointer;
}
.pcm-cookie__btns button.is-primary{
  background: #800BC3;
  border-color: #800BC3;
  color: #fff;
}
#pcm-cookie-modal{
  position: fixed; inset:0;
  background: rgba(0,0,0,.35);
  z-index: 999999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.pcm-cookie__modal{
  width: min(560px, 100%);
  background:#fff;
  border-radius: 16px;
  padding: 16px;
}
.pcm-cookie__modal h3{ margin: 0 0 6px; }
.pcm-cookie__muted{ margin: 0 0 10px; opacity: .8; font-size: 13px; }
.pcm-cookie__modal label{
  display:block;
  margin: 10px 0;
}
.pcm-cookie__modalbtns{
  display:flex;
  justify-content:flex-end;
  gap: 8px;
  margin-top: 14px;
}
.pcm-cookie__modalbtns button{
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.15);
  background: #f6f6f6;
  cursor:pointer;
}
.pcm-cookie__modalbtns button.is-primary{
  background: #800BC3;
  border-color: #800BC3;
  color: #fff;
}
/* ===== PCM Switches (force) ===== */
#pcm-cookie-modal .pcm-switch{
  position: relative !important;
  display: inline-block !important;
  width: 46px !important;
  height: 26px !important;
  flex: 0 0 auto !important;
}

#pcm-cookie-modal .pcm-switch input{
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
}

#pcm-cookie-modal .pcm-slider{
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  cursor: pointer !important;
  background: #d7d7d7 !important;
  transition: .2s !important;
  border-radius: 999px !important;
}

#pcm-cookie-modal .pcm-slider:before{
  content: "" !important;
  position: absolute !important;
  height: 20px !important;
  width: 20px !important;
  left: 3px !important;
  top: 3px !important;
  background: #fff !important;
  transition: .2s !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.18) !important;
}

#pcm-cookie-modal .pcm-switch input:checked + .pcm-slider{
  background: #800BC3 !important;
}

#pcm-cookie-modal .pcm-switch input:checked + .pcm-slider:before{
  transform: translateX(20px) !important;
}

/* Layout filas */
#pcm-cookie-modal .pcm-switch-row{
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding: 10px 0 !important;
  border-top: 1px solid rgba(0,0,0,.08) !important;
}
#pcm-cookie-modal .pcm-switch-row:first-of-type{
  border-top: 0 !important;
  padding-top: 0 !important;
}

#pcm-cookie-modal .pcm-switch-title{ font-weight: 700 !important; }
#pcm-cookie-modal .pcm-switch-desc{ font-size: 13px !important; opacity: .8 !important; margin-top: 2px !important; }
/* ===== Switch definitivo (input como toggle) ===== */
#pcm-cookie-modal .pcm-toggle{
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 46px !important;
  height: 26px !important;
  border-radius: 999px !important;
  background: #d7d7d7 !important;
  position: relative !important;
  cursor: pointer !important;
  outline: none !important;
  border: 0 !important;
  transition: .2s !important;
  flex: 0 0 auto !important;
}

/* “bolita” del switch */
#pcm-cookie-modal .pcm-toggle::before{
  content: "" !important;
  position: absolute !important;
  width: 20px !important;
  height: 20px !important;
  top: 3px !important;
  left: 3px !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.18) !important;
  transition: .2s !important;
}

#pcm-cookie-modal .pcm-toggle:checked{
  background: #800BC3 !important;
}

#pcm-cookie-modal .pcm-toggle:checked::before{
  transform: translateX(20px) !important;
}

#pcm-cookie-modal .pcm-toggle:disabled{
  opacity: .55 !important;
  cursor: not-allowed !important;
}

/* Layout filas */
#pcm-cookie-modal .pcm-switch-row{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap: 14px !important;
  padding: 10px 0 !important;
  border-top: 1px solid rgba(0,0,0,.08) !important;
}
#pcm-cookie-modal .pcm-switch-row:first-of-type{
  border-top: 0 !important;
  padding-top: 0 !important;
}
#pcm-cookie-modal .pcm-switch-title{ font-weight: 700 !important; }
#pcm-cookie-modal .pcm-switch-desc{ font-size: 13px !important; opacity: .8 !important; margin-top: 2px !important; }