/* =========================
   Search Box – Desktop
========================= */

.search-box-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

/* الصندوق الرئيسي */
.search-box {
  background: #fff;
  border-radius: 22px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* مجموعة الحقول */
.search-box .search-group {
  display: flex;
  flex-direction: column;
}

/* الحقول */
.search-box input,
.search-box select {
  height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid #eee;
  background: #fafafa;
  font-size: 14px;
  outline: none;
  transition: all .2s ease;
}

/* Hover + Focus */
.search-box input:focus,
.search-box select:focus {
  border-color: #ffa559;
  background: #fff;
}

/* زر البحث */
.search-action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-action button {
  height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  background: #ffa559;
  color: #000;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}

.search-action button:hover {
  background: #ff9433;
}

/* Responsive safety (لاحقًا سنفصل Mobile) */
@media (max-width: 1100px) {
  .search-box {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .search-action {
    grid-column: span 2;
    justify-content: flex-end;
  }
}
