/* --- Barra di ricerca --- */
.pscas {
  position: relative;
  display: block;
  max-width: 1200px;
}

.pscas-field {
  position: relative;
  display: flex;
  align-items: center;
}

/* Input: altezza 45, bg #e9e9e9, testo nero */
.pscas-input {
  flex: 1;
  height: 45px !important;
  background: #ffffff !important;
  color: #014E7B87 !important;
  border: 1px solid #014E7B !important; /* bordo “invisibile” */
  border-radius: 10px;
  padding: 0 16px 0 52px !important;     /* spazio per l’icona a sinistra */
  font-size: 15px;
  outline: 0;
  width: 100%;
}

/* Placeholder nero */
.pscas-input::placeholder {
  color: #014E7B87 !important;
  opacity: 1;
}

/* Icona stampante 25x25 dentro l'input (sostituisce la lente) */
.pscas-field::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: no-repeat center / contain;
  /* SVG stampante nero */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9V3h12v6' stroke='%23014E7B87' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Crect x='6' y='14' width='12' height='7' rx='1' ry='1' stroke='%23014E7B87' stroke-width='2' fill='none'/%3E%3Cpath d='M4 13a2 2 0 0 1-2-2v-1a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1a2 2 0 0 1-2 2' stroke='%23014E7B87' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Ccircle cx='17.5' cy='10' r='1' fill='%23014E7B87'/%3E%3C/svg%3E");
}

/* --- Dropdown suggerimenti --- */
.pscas-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e6e6e9;
  border-radius: 12px;
  list-style: none;
  margin: 0;
  padding: .35rem 0;
  z-index: 9999;
  display: none;
  max-height: 360px;
  overflow: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.pscas-list.is-open { display: block; }

/* Ogni item */
.pscas-list li {
  padding: .35rem .55rem;
}

/* Rendi il link il contenitore flessibile orizzontale */
.pscas .pscas-sg-link {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: .4rem !important;
  text-decoration: none;
  color: inherit;
}

/* Mini-thumb 20x20 a sinistra (solo se presente) */
.pscas .pscas-sg-thumb {
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
  border-radius: 4px !important;
  overflow: hidden !important;
}
.pscas .pscas-sg-thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Nome categoria */
.pscas .pscas-sg-name {
  flex: 1 1 auto !important;
  min-width: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* Hover/selected */
.pscas-list li[aria-selected="true"],
.pscas .pscas-sg-link:hover {
  background: #ffffff;
}

/* Se necessario, alza lo z-index del menu sopra overlay del tema */
.pscas .pscas-list { z-index: 99999; }

/* Garantisci cliccabilità anche con temi “pignoli” */
.pscas .pscas-list, .pscas .pscas-list * {
  pointer-events: auto !important;
}

