/* Live Search Panel */
.ls-panel {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  padding: 12px 12px 6px;
  max-height: 70vh;
  overflow: auto;
}
/* Enforce brand colors - never auto-switch on devices */
.ls-panel, .ls-item { color: #111111 !important; }

.ls-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px 12px;
}

.ls-title {
  font-weight: 700;
  font-size: 16px;
}

.ls-view-all {
  color: var(--brand-orange, #242323);
  font-weight: 700;
  text-decoration: none;
}

.ls-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ls-item {
  display: grid;
  grid-template-columns: 56px 1fr 20px;
  gap: 12px;
  align-items: center;
  background: #f6f6f6;
  border-radius: 10px;
  padding: 12px;
  text-decoration: none;
  color: inherit;
}

.ls-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ls-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ls-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ls-name {
  font-weight: 700;
  font-size: 15px;
}

/* Match product-card title styling exactly (.card-title / .rp-title).
   #fsSearchDropdown (ID) is used here, not just .fs-search-dropdown, because
   a header-wide rule (mu-plugins/axalia-custom.css, ".fs-header
   *:not(...)") forces color:#1f2937 with class-based specificity (0,8,0) —
   an ID selector's (1,0,0) beats that regardless of how many classes it
   chains. */
#fsSearchDropdown .ls-name {
  font-family: 'BPGGuardianCaps', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #242323 !important;
}

.ls-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ls-price-current {
  color: var(--brand-orange, #242323);
  font-weight: 800;
  font-size: 18px;
}

.ls-price-old {
  color: #777;
  text-decoration: line-through;
  font-weight: 600;
}

.ls-chevron {
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ls-empty {
  padding: 24px;
  text-align: center;
  color: #666;
} 

/* === FS Search Dropdown Price Colors + font (match product-card price) === */
#fsSearchDropdown .ls-price-current,
#fsSearchDropdown .ls-price-current .woocommerce-Price-amount,
#fsSearchDropdown .ls-price-current .woocommerce-Price-amount bdi {
  font-family: 'BPGGuardianCaps', sans-serif !important;
  font-weight: 700 !important;
  color: #7f170e !important;
}

#fsSearchDropdown .ls-price-old,
#fsSearchDropdown .ls-price-old .woocommerce-Price-amount,
#fsSearchDropdown .ls-price-old .woocommerce-Price-amount bdi {
  font-family: 'BPGGuardianCaps', sans-serif !important;
  font-weight: 700 !important;
  color: #9a938c !important;
  text-decoration: line-through;
  text-decoration-color: #9a938c !important;
}

/* Currency symbol should match price color */
#fsSearchDropdown .ls-price-current .woocommerce-Price-amount .woocommerce-Price-currencySymbol,
#fsSearchDropdown .ls-price-current bdi .woocommerce-Price-currencySymbol,
#fsSearchDropdown .ls-price-current .amount .woocommerce-Price-currencySymbol {
  color: #7f170e !important;
}

#fsSearchDropdown .ls-price-old .woocommerce-Price-amount .woocommerce-Price-currencySymbol,
#fsSearchDropdown .ls-price-old bdi .woocommerce-Price-currencySymbol,
#fsSearchDropdown .ls-price-old .amount .woocommerce-Price-currencySymbol {
  color: #9a938c !important;
}