#cs-search-form {
  display: flex;
  flex-wrap: nowrap;   /* همه در یک خط */
  gap: 15px;
  align-items: center;
  width: 100%;         /* کل عرض کانتینر */
  box-sizing: border-box;
   align-items: flex-end; /* همه آیتم‌ها از پایین تراز بشن */
}

#cs-search-form .cs-field {
  flex: 1;             /* هر فیلد سهم مساوی از عرض */
  min-width: 0;        /* اجازه بده فیلدها کشیده بشن */
  display: flex;
  flex-direction: column;
   
}

#cs-search-form label {
  font-weight: 600;
  margin-bottom: 5px;
}

#cs-search-form select,
#cs-search-form button {
  padding: 8px 10px;
  font-size: 14px;
  width: 100%;         /* پر کردن عرض داخل هر فیلد */
}

#cs-search-form button {
  background-color: #1e3a5f; /* رنگ پس‌زمینه */
  color: #fff;              /* رنگ متن */
  border: none;             /* حذف کادر */
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;       /* گوشه‌های گرد */
}

/* حالت hover */
#cs-search-form button:hover {
  background-color: #16314a; /* رنگ تیره‌تر هنگام هاور */
}

/* موبایل: زیر هم */
@media (max-width: 767px) {
  #cs-search-form {
    flex-direction: column;
    align-items: stretch;
  }
  #cs-search-form .cs-field {
    width: 100%;
  }

  /* فیلد برند افقی */
  #cs-search-form .brand-field {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  #cs-search-form .brand-field label {
    margin: 0;
    white-space: nowrap;
  }
  #cs-search-form .brand-field select {
    flex: 1;
  }

  /* فیلد ماشین هم افقی */
  #cs-search-form .car-field {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  #cs-search-form .car-field label {
    margin: 0;
    white-space: nowrap;
  }
  #cs-search-form .car-field select {
    flex: 1;
  }
}


