#wcsoc-bar.wcsoc-bar{
  width: 100%;
  color: var(--wcsoc-text, #ffffff);
  font-size: 14px;
  line-height: 1.35;
  z-index: 99999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  /* Default positioning (overridden by [data-position]). */
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
}

/* Estado: abierto (verde) / cerrado (rojo) */
#wcsoc-bar[data-status="open"]{ background: #16a34a; }
#wcsoc-bar[data-status="closed"]{ background: #dc2626; }

/* Posicion segun configuracion */
#wcsoc-bar[data-position="top"]{
  top: 0 !important;
  bottom: auto !important;
}

#wcsoc-bar[data-position="bottom"]{
  bottom: 0 !important;
  top: auto !important;
}

/* Ajuste para la barra de admin de WordPress cuando la barra va arriba */
body.admin-bar #wcsoc-bar[data-position="top"]{
  top: 32px !important;
}
@media (max-width: 782px){
  body.admin-bar #wcsoc-bar[data-position="top"]{ top: 46px !important; }
}

#wcsoc-bar.wcsoc-fixed{
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

#wcsoc-bar .wcsoc-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  position: relative;
}

#wcsoc-bar .wcsoc-message a{
  color: var(--wcsoc-link, #93c5fd);
  text-decoration: underline;
}

#wcsoc-bar .wcsoc-close{
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--wcsoc-text, #ffffff);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 8px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

#wcsoc-bar .wcsoc-close:hover{
  background: rgba(255,255,255,0.12);
}

/* Fin */
