/* 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, .ls-name { 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, #f6623c);
  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;
}

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

.ls-price-current {
  color: var(--brand-orange, #f6623c);
  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 (force to match shop) === */
.fs-search-dropdown .ls-price-current,
.fs-search-dropdown .ls-price-current .woocommerce-Price-amount,
.fs-search-dropdown .ls-price-current .woocommerce-Price-amount bdi {
  color: var(--brand-orange, #f6623c) !important;
}

.fs-search-dropdown .ls-price-old,
.fs-search-dropdown .ls-price-old .woocommerce-Price-amount,
.fs-search-dropdown .ls-price-old .woocommerce-Price-amount bdi {
  color: #666666 !important;
  text-decoration: line-through;
  text-decoration-color: var(--brand-orange, #f6623c) !important;
} 

/* Currency symbol should match price color */
.fs-search-dropdown .ls-price-current .woocommerce-Price-amount .woocommerce-Price-currencySymbol,
.fs-search-dropdown .ls-price-current bdi .woocommerce-Price-currencySymbol,
.fs-search-dropdown .ls-price-current .amount .woocommerce-Price-currencySymbol {
  color: var(--brand-orange, #f6623c) !important;
}

.fs-search-dropdown .ls-price-old .woocommerce-Price-amount .woocommerce-Price-currencySymbol,
.fs-search-dropdown .ls-price-old bdi .woocommerce-Price-currencySymbol,
.fs-search-dropdown .ls-price-old .amount .woocommerce-Price-currencySymbol {
  color: #666666 !important;
} 