/* ================================
   PC Galaxy – FiboSearch clean reset
   ================================ */

/* Outer pill look */
.dgwt-wcas-search-wrapp .dgwt-wcas-sf-wrapp {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  background: #101010 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  padding: 0 14px !important;  /* space left & right inside pill */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.85) !important;
}

/* Input text */
.dgwt-wcas-search-input {
  flex: 1 1 auto !important;
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 14px !important;
  padding: 8px 32px 8px 0 !important; /* extra right padding so text doesn't hit icon */
  outline: none !important;
}

/* Placeholder */
.dgwt-wcas-search-input::placeholder {
  color: #aaaaaa !important;
}

/* Focus outline */
.dgwt-wcas-search-wrapp.dgwt-wcas-focused .dgwt-wcas-sf-wrapp {
  border-color: rgba(139, 0, 0, 0.95) !important;
  box-shadow: 0 0 0 1px rgba(139, 0, 0, 0.9) !important;
}

/* Submit button – small icon on the RIGHT */
.dgwt-wcas-search-submit {
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 24px !important;
  height: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: none !important;
}

/* Kill any old pseudo icons */
.dgwt-wcas-search-submit::before,
.dgwt-wcas-search-submit::after {
  content: none !important;
}

/* Use plugin’s own magnifier, just style it */
.dgwt-wcas-search-submit svg,
.dgwt-wcas-search-submit .dgwt-wcas-ico-magnifier {
  width: 16px !important;
  height: 16px !important;
  fill: none !important;
  stroke: #ffffff !important;
  stroke-width: 1.7px !important;
  opacity: 1 !important;
}

/* Hover – very light change */
.dgwt-wcas-search-submit:hover {
  background: #181818 !important;
  border-radius: 999px !important;
}

/* Suggestions dropdown (optional, but keeps dark theme) */
.dgwt-wcas-suggestions-wrapp {
  background: #0b0b0b !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9) !important;
  margin-top: 6px !important;
}

.dgwt-wcas-suggestion {
  padding: 8px 14px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.dgwt-wcas-suggestion:last-child {
  border-bottom: none !important;
}

.dgwt-wcas-suggestion .dgwt-wcas-si-title {
  color: #ffffff !important;
  font-size: 13px !important;
}

.dgwt-wcas-suggestion .dgwt-wcas-si-desc,
.dgwt-wcas-suggestion .dgwt-wcas-si-price {
  color: #b0b0b0 !important;
  font-size: 11px !important;
}

.dgwt-wcas-suggestion:hover {
  background: rgba(139, 0, 0, 0.25) !important;
}
/* === FINAL SEARCH ICON FIX === */

/* Make sure wrapper can position things */
.dgwt-wcas-search-wrapp .dgwt-wcas-sf-wrapp {
  position: relative !important;
}

/* Text: space on the right so it doesn't collide with the icon */
.dgwt-wcas-search-wrapp .dgwt-wcas-search-input {
  padding-left: 14px !important;
  padding-right: 42px !important; /* room for icon on the right */
}

/* Put the button on the RIGHT, centered vertically */
.dgwt-wcas-search-wrapp .dgwt-wcas-search-submit {
  position: absolute !important;
  right: 16px !important;
  left: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;

  width: 22px !important;
  height: 22px !important;
  margin: 0 !important;
  padding: 0 !important;

  background: transparent !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: none !important;
}

/* Kill any leftover pseudo icons */
.dgwt-wcas-search-wrapp .dgwt-wcas-search-submit::before,
.dgwt-wcas-search-wrapp .dgwt-wcas-search-submit::after {
  content: none !important;
}

/* Use plugin's icon, just make it clear white and centered */
.dgwt-wcas-search-wrapp .dgwt-wcas-search-submit svg,
.dgwt-wcas-search-wrapp .dgwt-wcas-search-submit .dgwt-wcas-ico-magnifier {
  width: 16px !important;
  height: 16px !important;
  fill: none !important;
  stroke: #ffffff !important;
  stroke-width: 2px !important;
  opacity: 1 !important;
}