.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  /* border: 2px solid royalblue; */
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  text-decoration: none;
  color: black;
  border-bottom: 1px solid #eee;
}

.search-item:hover {
  background: royalblue;
  color: white;
}

.search-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
}
/* --- Modern Store Look --- */
.shop-top-bar {
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.shop-top-bar select, .shop-top-bar input {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
}

.product-item {
  transition: all 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
}

.single-product-wrap {
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s;
}

.single-product-wrap:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.add-actions-link a {
  color: #555;
  transition: color 0.3s;
}

.add-actions-link a:hover {
  color: #ff6600;
}

