:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-e9386e3 *//* پس‌زمینه و تنظیمات صفحه */
.search-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #1c3814, #264d1c, #1c3814); /* سبز تیره */
  color: #fff;
  text-align: center;
  padding: 20px;
}

/
@keyframes fadeInDown {
  from {opacity: 0; transform: translateY(-30px);}
  to {opacity: 1; transform: translateY(0);}
}

/* باکس سرچ */
.search-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  width: 100%;
}

.search-box form {
  display: flex;
  width: 100%;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  background: #fff;
}

.search-box input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
  transition: box-shadow 0.3s;
}

.search-box input:focus {
  box-shadow: inset 0 -3px 0 #264d1c;
}

.search-box button {
  background: #264d1c;
  color: #fff;
  border: none;
  padding: 15px 25px;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.3s, background 0.3s;
}

.search-box button:hover {
  background: #1c3814;
  transform: scale(1.05);
}

/* نتایج سرچ */
#search-results {
  position: absolute;
  top: 60px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 999;
}

#search-results .product-item {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
}

#search-results .product-item:hover {
  background: #f0f0f0;
}/* End custom CSS */